query-3eab141d3a58cd6b8850af6014913382

rq turtle/ttl

Propertiescopyright license (P275)instance of (P31)

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?license ?licenseLabel ?instanceOfLabel
WHERE {
  ?s wdt:P275 ?license .
  ?license rdfs:label ?licenseLabel ;
           wdt:P31 ?instanceOf .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?instanceOf") v2("?license"):::projected v3("?licenseLabel"):::projected v1("?s") c5(["bd:serviceParam"]):::iri c7(["en"]):::literal v1 --"wdt:P275"--> v2 v2 --"rdfs:label"--> v3 v2 --"wdt:P31"--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end