2011-06-02 20:51:58 +00:00
|
|
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
|
|
|
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
|
2011-06-03 14:29:17 +00:00
|
|
|
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
2011-06-02 20:51:58 +00:00
|
|
|
|
|
|
|
CONSTRUCT {
|
|
|
|
?date ?property ?object .
|
|
|
|
?precision ?property2 ?object2 .
|
|
|
|
} WHERE {
|
2013-11-06 15:51:33 -05:00
|
|
|
PERSON_URI core:relatedBy ?authorship .
|
|
|
|
?authorship a core:Authorship .
|
|
|
|
?authorship core:relates ?patent .
|
2011-06-02 20:51:58 +00:00
|
|
|
?patent rdf:type bibo:Patent .
|
|
|
|
?patent core:dateIssued ?date .
|
|
|
|
?date ?property ?object .
|
|
|
|
?date core:dateTimePrecision ?precision .
|
|
|
|
?precision ?property2 ?object2 .
|
|
|
|
}
|