Skip to content

Instantly share code, notes, and snippets.

Created January 18, 2013 16:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/4565822 to your computer and use it in GitHub Desktop.
Save anonymous/4565822 to your computer and use it in GitHub Desktop.
{
"@context": {
"sd": "http://www.w3.org/ns/sparql-service-description#",
"prov": "http://www.w3.org/ns/prov#",
"format": "http://www.w3.org/ns/formats/",
"ProvenanceQueryService": "prov:ProvenanceQueryService",
"direct": "prov:DirectQueryService",
"service": "prov:describesService",
"uritemplate": "prov:provenanceUriTemplate",
"sparql": "sd:Service",
"endpoint": {
"@id": "sd:endpoint",
"@type": "@id"
},
"supportedLanguage": {
"@id": "sd:supportedLanguage",
"@type": "@id"
},
"resultFormat": {
"@id": "sd:resultFormat",
"@type": "@id"
}
},
"@id": "http://example.com/service",
"service": [
{ "@id": "http://example.com/service#direct",
"@type": "direct",
"uritemplate": "?target={+uri}"
} ,
{ "@id": "http://example.com/service#sparql",
"@type": "sparql",
"endpoint": "http://example.com/service/sparql/",
"supportedLanguage": "sd:SPARQL11Query",
"resultFormat": ["format:RDF_XML", "format:Turtle", "format:SPARQL_Results_XML", "format:SPARQL_Results_JSON", "format:SPARQL_Results_CSV", "format:SPARQL_Results_TSV" ]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment