OpenCitations CCC SPARQL endpoint

22
 
1
PREFIX cito: <http://purl.org/spar/cito/>
2
PREFIX dcterms: <http://purl.org/dc/terms/>
3
PREFIX datacite: <http://purl.org/spar/datacite/>
4
PREFIX literal: <http://www.essepuntato.it/2010/06/literalreification/>
5
PREFIX biro: <http://purl.org/spar/biro/>
6
PREFIX frbr: <http://purl.org/vocab/frbr/core#>
7
PREFIX c4o: <http://purl.org/spar/c4o/>
8
SELECT ?cited ?cited_ref ?title ?url WHERE {
9
    <https://w3id.org/oc/ccc/br/070444> cito:cites ?cited .
10
    OPTIONAL { 
11
        <https://w3id.org/oc/ccc/br/070444> frbr:part ?ref .
12
        ?ref biro:references ?cited ;
13
            c4o:hasContent ?cited_ref 
14
    }
15
    OPTIONAL { ?cited dcterms:title ?title }
16
    OPTIONAL {
17
        ?cited datacite:hasIdentifier [
18
            datacite:usesIdentifierScheme datacite:url ;
19
            literal:hasLiteralValue ?url
20
        ]
21
    }
22
}