SPARQLエンドポイントリスト

SPARQLエンドポイントリスト #



クエリ例 #

ジャパンサーチ: 「手塚治虫」の著作を取得する #

https://jpsearch.go.jp/rdf/sparql/

 1PREFIX owl: <http://www.w3.org/2002/07/owl#>
 2PREFIX rdfs:   <http://www.w3.org/2000/01/rdf-schema#>
 3PREFIX schema: <http://schema.org/>
 4PREFIX jps: <https://jpsearch.go.jp/term/property#>
 5
 6SELECT ?s ?label ?datePublished ?providerLabel
 7WHERE {
 8  ?s schema:creator/owl:sameAs*
 9       <http://id.ndl.go.jp/auth/entity/00083890> ;
10       #<https://mediaarts-db.bunka.go.jp/id/C48012> ;
11       #<http://ja.dbpedia.org/resource/手塚治虫> ;
12     rdfs:label ?label ;
13     schema:datePublished ?datePublished ;
14     jps:sourceInfo [
15        schema:provider/rdfs:label ?providerLabel ;
16     ] .
17}
▶ 実行する

ジャパンサーチ: パブリックドメイン(CC0)な作品の画像を取得する #

https://jpsearch.go.jp/rdf/sparql/

 1PREFIX owl: <http://www.w3.org/2002/07/owl#>
 2PREFIX rdfs:   <http://www.w3.org/2000/01/rdf-schema#>
 3PREFIX schema: <http://schema.org/>
 4PREFIX jps: <https://jpsearch.go.jp/term/property#>
 5
 6SELECT ?class ?label ?creatorLabel ?media WHERE {
 7  ?s a ?class ;
 8     schema:creator/rdfs:label ?creatorLabel ; 
 9     rdfs:label ?label ;
10     jps:accessInfo [
11       schema:license <http://creativecommons.org/publicdomain/zero/1.0/> ;
12       schema:associatedMedia ?media ;
13     ] .
14}
▶ 実行する

LuciaDB: レギオンとその所属リリィの数を集計する #

https://luciadb.assaultlily.com/sparql/query

 1PREFIX lilyrdf: <https://luciadb.assaultlily.com/rdf/RDFs/detail/>
 2PREFIX lily: <https://luciadb.assaultlily.com/rdf/IRIs/lily_schema.ttl#>
 3PREFIX schema: <http://schema.org/>
 4
 5SELECT
 6    ?s ?name (COUNT(DISTINCT ?member) AS ?members)
 7WHERE {
 8  ?s a lily:Legion ;
 9     schema:name ?name ;
10     schema:member ?member .
11  FILTER (LANG(?name) = "ja")
12}
13GROUP BY ?s ?name
▶ 実行する


クリエイティブ・コモンズ・ライセンス By Shohei TOYOTA
この作品はクリエイティブ・コモンズ 表示 - 継承 4.0 国際ライセンスの下に提供されています。