利用例 |
以下のSPARQLをGETメソッドにて発行する。
SELECT DISTINCT ?s ?label { ?s <http://www.w3.org/2000/01/rdf-schema#label> ?label. } LIMIT 2
リクエスト:
GET /data/sparql?query=SELECT%20DISTINCT%20%3Fs%20%3Flabel%20%7B%20%3Fs%20%3Chttp%3A%2F%2Fwww.w3.org%2F2000%2F01%2Frdf-schema%23label%3E%20%3Flabel.%20%7D%20LIMIT%202 HTTP/1.1
Host: sparql.opendata.cc
Accept: application/sparql-results+json
レスポンス:
{
"head": {
"vars": [ "s" , "label" ]
} ,
"results": {
"bindings": [
{
"s": { "type": "uri" , "value": "http://example.com/sample_data/1" } ,
"label": { "type": "literal" , "value": "サンプルデータ1" }
} ,
{
"s": { "type": "uri" , "value": "http://example.com/sample_data/2" } ,
"label": { "type": "literal" , "value": "サンプルデータ2" }
}
]
}
}
|