query-33cbc4d506b293d1efc90a97de6de866

rq turtle/ttl

TODO

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX psv: <http://www.wikidata.org/prop/statement/value/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT distinct ?item  ?itemLabel ?creatorLabel ?dod ?pmaDuration {
    ?item p:P6216 ?copyrightStatement .
    ?copyrightStatement psv:P570 ?copyright
    VALUES ?copyright { wd:Q19652 wd:Q15687061 }  # P6216 main value = public domain

    ?item wdt:P50|wdt:P170|wdt:P655|wdt:P84|wdt:P110|wdt:P287|wdt:P98 ?creator .
    ?creator wdt:P570 ?dod 
    FILTER(YEAR(?dod) > 2019 - ?pmaDuration)            # exclude if date of death < 1919

    ?copyrightStatement pq:P459 ?detmet # determination method 70, 80 or 100 pma
    VALUES ?detmet { wd:Q29870196 wd:Q29940641 wd:Q29940705 }  
    ?detmet wdt:P2047 ?pmaDuration

    MINUS {?copyrightStatement pq:P518 []} .
    SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" }
} 
Order by ?creatorLabel
LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v7("?copyright") v5("?copyrightStatement") v7("?creator") v1("?creatorLabel"):::projected v9("?detmet") v2("?dod"):::projected v4("?item"):::projected v3("?pmaDuration"):::projected a1((" ")) c16(["bd:serviceParam"]):::iri c18(["#91;AUTO_LANGUAGE#93;,en"]):::literal f0[["year-from-dateTime(?dod) > '2019^^xsd:integer' - ?pmaDuration"]] f0 --> v2 f0 --> v3 v4 --"p:P6216"--> v5 v5 --"p:statement/value/P570"--> v7 bind1[/VALUES ?copyright/] bind1-->v7 bind10(["wd:Q19652"]) bind10 --> bind1 bind11(["wd:Q15687061"]) bind11 --> bind1 subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; subgraph union1[" Union "] subgraph union1l[" "] style union1l fill:#abf,stroke-dasharray: 3 3; subgraph union2[" Union "] subgraph union2l[" "] style union2l fill:#abf,stroke-dasharray: 3 3; subgraph union3[" Union "] subgraph union3l[" "] style union3l fill:#abf,stroke-dasharray: 3 3; subgraph union4[" Union "] subgraph union4l[" "] style union4l fill:#abf,stroke-dasharray: 3 3; subgraph union5[" Union "] subgraph union5l[" "] style union5l fill:#abf,stroke-dasharray: 3 3; v4 --"p:direct/P98"--> v7 end subgraph union5r[" "] style union5r fill:#abf,stroke-dasharray: 3 3; v4 --"p:direct/P287"--> v7 end union5r <== or ==> union5l end end subgraph union4r[" "] style union4r fill:#abf,stroke-dasharray: 3 3; v4 --"p:direct/P110"--> v7 end union4r <== or ==> union4l end end subgraph union3r[" "] style union3r fill:#abf,stroke-dasharray: 3 3; v4 --"p:direct/P84"--> v7 end union3r <== or ==> union3l end end subgraph union2r[" "] style union2r fill:#abf,stroke-dasharray: 3 3; v4 --"p:direct/P655"--> v7 end union2r <== or ==> union2l end end subgraph union1r[" "] style union1r fill:#abf,stroke-dasharray: 3 3; v4 --"p:direct/P170"--> v7 end union1r <== or ==> union1l end end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v4 --"p:direct/P50"--> v7 end union0r <== or ==> union0l end v7 --"p:direct/P570"--> v2 v5 --"p:qualifier/P459"--> v9 bind2[/VALUES ?detmet/] bind2-->v9 bind20(["wd:Q29870196"]) bind20 --> bind2 bind21(["wd:Q29940641"]) bind21 --> bind2 bind22(["wd:Q29940705"]) bind22 --> bind2 v9 --"p:direct/P2047"--> v3 subgraph minus3["MINUS"] style minus3 stroke-width:6px,fill:pink,stroke:red; v5 --"p:qualifier/P518"--> a1 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c16 --"wikibase:language"--> c18 end