query-d8c4df616219e7aeeb6501dda5f210fc

rq turtle/ttl

RDF formatter update delay". I did this after discovering that MusicBrainz uses in their embedded JSON-LD the latter format and I could not find any sources or discussion that explain where the former is coming from. This query lists the current MusicBrainz RDF formatters: https://musicbrainz.org/type/$1" to "http://musicbrainz.org/$1/type for some MusicBrainz identifiers from "(P1921)formatter URI for RDF resource Recently I updated the

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
select distinct * where {
  ?prop wdt:P31 / wdt:P279* wd:Q18616576 .
  ?prop rdfs:label ?propLabel .
  optional {?prop wdt:P1921 ?rdfFormat .}
  filter (lang(?propLabel) = "en" && strstarts(?propLabel, "MusicBrainz"))
} order by ?propLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?prop"):::projected v1("?propLabel"):::projected v3("?rdfFormat"):::projected a1((" ")) c5(["wd:Q18616576"]):::iri f0[["?propLabel = 'en'starts-with(?propLabel,'MusicBrainz')"]] f0 --> v1 v2 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c5 v2 --"rdfs:label"--> v1 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P1921".-> v3 end