Merge branch 'maint-rel-1.6' into develop
This commit is contained in:
commit
7af3580e87
55 changed files with 305 additions and 157 deletions
|
@ -1,8 +1,12 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
PREFIX vcard: <http://www.w3.org/2006/vcard/ns#>
|
||||||
|
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?address ?property ?object .
|
?address ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:mailingAddress ?address .
|
PERSON_URI obo:ARG_2000028 ?vcard .
|
||||||
|
?vcard vcard:hasAddress ?address .
|
||||||
?address ?property ?object .
|
?address ?property ?object .
|
||||||
}
|
}
|
|
@ -1,9 +1,12 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
PREFIX vcard: <http://www.w3.org/2006/vcard/ns#>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?geographicLocation ?property ?object .
|
?geographicLocation ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:mailingAddress ?address .
|
PERSON_URI obo:ARG_2000028 ?vcard .
|
||||||
?address core:hasGeographicLocation ?geographicLocation .
|
?vcard vcard:hasAddress ?address .
|
||||||
|
?address obo:RO_0001025 ?geographicLocation .
|
||||||
?geographicLocation ?property ?object .
|
?geographicLocation ?property ?object .
|
||||||
}
|
}
|
|
@ -1,9 +1,16 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?person ?property ?object .
|
?advisee ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:advisorIn ?advisingRelationship .
|
PERSON_URI core:relatedBy ?advisingRelationship .
|
||||||
?advisingRelationship core:advisee ?person .
|
?advisingRelationship a core:AdvisingRelationship .
|
||||||
?person ?property ?object .
|
?advisingRelationship core:relates ?advisee .
|
||||||
|
?advisee a foaf:Person .
|
||||||
|
?advisee obo:RO_0000053 ?adviseeRole .
|
||||||
|
?adviseeRole a core:AdviseeRole .
|
||||||
|
?adviseeRole core:relatedBy ?advisingRelationship .
|
||||||
|
?advisee ?property ?object .
|
||||||
}
|
}
|
|
@ -1,11 +1,21 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?degree ?property ?object
|
?degree ?property ?object
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:advisorIn ?advisingRelationship .
|
PERSON_URI core:relatedBy ?advisingRelationship .
|
||||||
?advisingRelationship core:advisee ?advisee .
|
?advisingRelationship a core:AdvisingRelationship .
|
||||||
?advisee core:educationalTraining ?educationalTraining .
|
?advisingRelationship core:relates ?advisee .
|
||||||
?educationalTraining core:degreeEarned ?degree .
|
?advisee a foaf:Person .
|
||||||
|
?advisee obo:RO_0000053 ?adviseeRole .
|
||||||
|
?adviseeRole a core:AdviseeRole .
|
||||||
|
?adviseeRole core:relatedBy ?advisingRelationship .
|
||||||
|
?advisee core:relates ?educationalTraining .
|
||||||
|
?educationalTraining a core:EducationalProcess .
|
||||||
|
?educationalTraining obo:RO_0002234 ?awardedDegree .
|
||||||
|
?awardedDegree core:relates ?degree .
|
||||||
|
?degree a core:AcademicDegree .
|
||||||
?degree ?property ?object
|
?degree ?property ?object
|
||||||
}
|
}
|
|
@ -1,11 +1,19 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?dateTimeValue ?property ?object .
|
?dateTimeValue ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:advisorIn ?advisingRelationship .
|
PERSON_URI core:relatedBy ?advisingRelationship .
|
||||||
?advisingRelationship core:advisee ?advisee .
|
?advisingRelationship a core:AdvisingRelationship .
|
||||||
?advisee core:educationalTraining ?educationalTraining .
|
?advisingRelationship core:relates ?advisee .
|
||||||
|
?advisee a foaf:Person .
|
||||||
|
?advisee obo:RO_0000053 ?adviseeRole .
|
||||||
|
?adviseeRole a core:AdviseeRole .
|
||||||
|
?adviseeRole core:relatedBy ?advisingRelationship .
|
||||||
|
?advisee core:relates ?educationalTraining .
|
||||||
|
?educationalTraining a core:EducationalProcess .
|
||||||
?educationalTraining core:dateTimeInterval ?dateTimeInterval .
|
?educationalTraining core:dateTimeInterval ?dateTimeInterval .
|
||||||
?dateTimeInterval core:end ?dateTimeValue .
|
?dateTimeInterval core:end ?dateTimeValue .
|
||||||
?dateTimeValue ?property ?object .
|
?dateTimeValue ?property ?object .
|
||||||
|
|
|
@ -1,12 +1,21 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?educationalInstitution rdfs:label ?label
|
?educationalInstitution rdfs:label ?label
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:advisorIn ?advisingRelationship .
|
PERSON_URI core:relatedBy ?advisingRelationship .
|
||||||
?advisingRelationship core:advisee ?advisee .
|
?advisingRelationship a core:AdvisingRelationship .
|
||||||
?advisee core:educationalTraining ?educationalTraining .
|
?advisingRelationship core:relates ?advisee .
|
||||||
?educationalTraining core:trainingAtOrganization ?educationalInstitution .
|
?advisee a foaf:Person .
|
||||||
|
?advisee obo:RO_0000053 ?adviseeRole .
|
||||||
|
?adviseeRole a core:AdviseeRole .
|
||||||
|
?adviseeRole core:relatedBy ?advisingRelationship .
|
||||||
|
?advisee core:relates ?educationalTraining .
|
||||||
|
?educationalTraining a core:EducationalProcess .
|
||||||
|
?educationalTraining obo:RO_0000057 ?educationalInstitution .
|
||||||
|
?educationalInstitution a foaf:Organization .
|
||||||
?educationalInstitution rdfs:label ?label
|
?educationalInstitution rdfs:label ?label
|
||||||
}
|
}
|
|
@ -1,9 +1,11 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?degree ?property ?object .
|
?degree ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:advisorIn ?advisingRelationship .
|
PERSON_URI core:relatedBy ?advisingRelationship .
|
||||||
|
?advisingRelationship a core:AdvisingRelationship .
|
||||||
?advisingRelationship core:degreeCandidacy ?degree .
|
?advisingRelationship core:degreeCandidacy ?degree .
|
||||||
?degree ?property ?object .
|
?degree ?property ?object .
|
||||||
}
|
}
|
|
@ -3,7 +3,8 @@ PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?educationalTraining ?property ?object .
|
?educationalTraining ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:advisorIn ?advisingRelationship .
|
PERSON_URI core:relatedBy ?advisingRelationship .
|
||||||
|
?advisingRelationship a core:AdvisingRelationship .
|
||||||
?advisingRelationship core:advisingContributionTo ?educationalTraining .
|
?advisingRelationship core:advisingContributionTo ?educationalTraining .
|
||||||
?educationalTraining ?property ?object .
|
?educationalTraining ?property ?object .
|
||||||
}
|
}
|
|
@ -1,10 +1,18 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?educationalTraining ?property ?object .
|
?educationalTraining ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:advisorIn ?advisingRelationship .
|
PERSON_URI core:relatedBy ?advisingRelationship .
|
||||||
?advisingRelationship core:advisee ?advisee .
|
?advisingRelationship a core:AdvisingRelationship .
|
||||||
?advisee core:educationalTraining ?educationalTraining .
|
?advisingRelationship core:relates ?advisee .
|
||||||
|
?advisee a foaf:Person .
|
||||||
|
?advisee obo:RO_0000053 ?adviseeRole .
|
||||||
|
?adviseeRole a core:AdviseeRole .
|
||||||
|
?adviseeRole core:relatedBy ?advisingRelationship .
|
||||||
|
?advisee core:relates ?educationalTraining .
|
||||||
|
?educationalTraining a core:EducationalProcess .
|
||||||
?educationalTraining ?property ?object .
|
?educationalTraining ?property ?object .
|
||||||
}
|
}
|
|
@ -3,7 +3,9 @@ PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?award ?property ?object .
|
?award ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:awardOrHonor ?awardReceipt .
|
PERSON_URI core:relatedBy ?awardReceipt .
|
||||||
?awardReceipt core:receiptOf ?award .
|
?awardReceipt a core:AwardReceipt .
|
||||||
|
?awardReceipt core:relates ?award .
|
||||||
|
?award a core:Award .
|
||||||
?award ?property ?object .
|
?award ?property ?object .
|
||||||
}
|
}
|
|
@ -1,9 +1,12 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?organization ?property ?object .
|
?organization ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:awardOrHonor ?awardReceipt .
|
PERSON_URI core:relatedBy ?awardReceipt .
|
||||||
?awardReceipt core:awardConferredBy ?organization .
|
?awardReceipt a core:AwardReceipt .
|
||||||
|
?awardReceipt core:assignedBy ?organization .
|
||||||
|
?organization a foaf:Organization .
|
||||||
?organization ?property ?object .
|
?organization ?property ?object .
|
||||||
}
|
}
|
|
@ -1,10 +1,13 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?organization ?property ?object .
|
?organization ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:awardOrHonor ?awardReceipt .
|
PERSON_URI core:relatedBy ?awardReceipt .
|
||||||
?awardReceipt core:receiptOf ?award .
|
?awardReceipt a core:AwardReceipt .
|
||||||
|
?awardReceipt core:relates ?award .
|
||||||
|
?award a core:Award .
|
||||||
?award core:sponsoredBy ?organization .
|
?award core:sponsoredBy ?organization .
|
||||||
?organization ?property ?object .
|
?organization ?property ?object .
|
||||||
}
|
}
|
|
@ -3,7 +3,9 @@ PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?credential ?property ?object .
|
?credential ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:hasCredential ?issuedCredential .
|
PERSON_URI core:relatedBy ?issuedCredential .
|
||||||
?issuedCredential core:issuanceOfCredential ?credential .
|
?issuedCredential a core:IssuedCredential .
|
||||||
|
?issuedCredential core:relates ?credential .
|
||||||
|
?credential a core:Credential .
|
||||||
?credential ?property ?object .
|
?credential ?property ?object .
|
||||||
}
|
}
|
|
@ -3,8 +3,10 @@ PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?organization ?property ?object .
|
?organization ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:hasCredential ?issuedCredential .
|
PERSON_URI core:relatedBy ?issuedCredential .
|
||||||
?issuedCredential core:issuanceOfCredential ?credential .
|
?issuedCredential a core:IssuedCredential .
|
||||||
|
?issuedCredential core:relates ?credential .
|
||||||
|
?credential a core:Credential .
|
||||||
?credential core:hasGoverningAuthority ?organization .
|
?credential core:hasGoverningAuthority ?organization .
|
||||||
?organization ?property ?object .
|
?organization ?property ?object .
|
||||||
}
|
}
|
|
@ -3,6 +3,7 @@ PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?issuedCredential ?property ?object .
|
?issuedCredential ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:hasCredential ?issuedCredential .
|
PERSON_URI core:relatedBy ?issuedCredential .
|
||||||
|
?issuedCredential a core:IssuedCredential .
|
||||||
?issuedCredential ?property ?object .
|
?issuedCredential ?property ?object .
|
||||||
}
|
}
|
|
@ -4,7 +4,8 @@ CONSTRUCT {
|
||||||
?date ?property ?object .
|
?date ?property ?object .
|
||||||
?precision ?property2 ?object2 .
|
?precision ?property2 ?object2 .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:hasCredential ?issuedCredential .
|
PERSON_URI core:relatedBy ?issuedCredential .
|
||||||
|
?issuedCredential a core:IssuedCredential .
|
||||||
?issuedCredential core:expirationDate ?date .
|
?issuedCredential core:expirationDate ?date .
|
||||||
?date ?property ?object .
|
?date ?property ?object .
|
||||||
?date core:dateTimePrecision ?precision .
|
?date core:dateTimePrecision ?precision .
|
||||||
|
|
|
@ -4,7 +4,8 @@ CONSTRUCT {
|
||||||
?date ?property ?object .
|
?date ?property ?object .
|
||||||
?precision ?property2 ?object2 .
|
?precision ?property2 ?object2 .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:hasCredential ?issuedCredential .
|
PERSON_URI core:relatedBy ?issuedCredential .
|
||||||
|
?issuedCredential a core:IssuedCredential .
|
||||||
?issuedCredential core:dateIssued ?date .
|
?issuedCredential core:dateIssued ?date .
|
||||||
?date ?property ?object .
|
?date ?property ?object .
|
||||||
?date core:dateTimePrecision ?precision .
|
?date core:dateTimePrecision ?precision .
|
||||||
|
|
|
@ -3,7 +3,8 @@ PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subjectArea ?property ?object .
|
?subjectArea ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:hasCredential ?issuedCredential .
|
PERSON_URI core:relatedBy ?issuedCredential .
|
||||||
|
?issuedCredential a core:IssuedCredential .
|
||||||
?issuedCredential core:hasSubjectArea ?subjectArea .
|
?issuedCredential core:hasSubjectArea ?subjectArea .
|
||||||
?subjectArea ?property ?object .
|
?subjectArea ?property ?object .
|
||||||
}
|
}
|
|
@ -1,8 +1,10 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?educationalTraining ?property ?object .
|
?educationalTraining ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:educationalTraining ?educationalTraining .
|
PERSON_URI obo:RO_0000056 ?educationalTraining .
|
||||||
|
?educationalTraining a core:EducationalProcess .
|
||||||
?educationalTraining ?property ?object .
|
?educationalTraining ?property ?object .
|
||||||
}
|
}
|
|
@ -1,9 +1,14 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?degree ?property ?object .
|
?degree ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:educationalTraining ?educationalTraining .
|
PERSON_URI obo:RO_0000056 ?educationalTraining .
|
||||||
?educationalTraining core:degreeEarned ?degree .
|
?educationalTraining a core:EducationalProcess .
|
||||||
|
?educationalTraining obo:RO_0002234 ?awardedDegree .
|
||||||
|
?awardedDegree a core:AwardedDegree .
|
||||||
|
?awardedDegree core:relates ?degree .
|
||||||
|
?degree a core:AcademicDegree .
|
||||||
?degree ?property ?object .
|
?degree ?property ?object .
|
||||||
}
|
}
|
|
@ -1,10 +1,12 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?dateTimeInterval core:end ?date .
|
?dateTimeInterval core:end ?date .
|
||||||
?date ?property ?object .
|
?date ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:educationalTraining ?educationalTraining .
|
PERSON_URI obo:RO_0000056 ?educationalTraining .
|
||||||
|
?educationalTraining a core:EducationalProcess .
|
||||||
?educationalTraining core:dateTimeInterval ?dateTimeInterval .
|
?educationalTraining core:dateTimeInterval ?dateTimeInterval .
|
||||||
?dateTimeInterval core:end ?date .
|
?dateTimeInterval core:end ?date .
|
||||||
?date ?property ?object .
|
?date ?property ?object .
|
||||||
|
|
|
@ -1,10 +1,15 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?geographicLocation ?property ?object .
|
?geographicLocation ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:educationalTraining ?educationalTraining .
|
PERSON_URI obo:RO_0000056 ?educationalTraining .
|
||||||
?educationalTraining core:trainingAtOrganization ?organization .
|
?educationalTraining a core:EducationalProcess .
|
||||||
?organization core:hasGeographicLocation ?geographicLocation .
|
?educationalTraining obo:RO_0000057 ?organization .
|
||||||
|
?organization a foaf:Organization .
|
||||||
|
?organization obo:RO_0001025 ?geographicLocation .
|
||||||
|
?geographicLocation a core:GeographicLocation .
|
||||||
?geographicLocation ?property ?object .
|
?geographicLocation ?property ?object .
|
||||||
}
|
}
|
|
@ -1,9 +1,13 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?organization ?property ?object .
|
?organization ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:educationalTraining ?educationalTraining .
|
PERSON_URI obo:RO_0000056 ?educationalTraining .
|
||||||
?educationalTraining core:trainingAtOrganization ?organization .
|
?educationalTraining a core:EducationalProcess .
|
||||||
|
?educationalTraining obo:RO_0000057 ?organization .
|
||||||
|
?organization a foaf:Organization .
|
||||||
?organization ?property ?object .
|
?organization ?property ?object .
|
||||||
}
|
}
|
|
@ -1,9 +1,11 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?date ?property ?object .
|
?date ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:educationalTraining ?educationalTraining .
|
PERSON_URI obo:RO_0000056 ?educationalTraining .
|
||||||
|
?educationalTraining a core:EducationalProcess .
|
||||||
?educationalTraining core:dateTimeInterval ?dateTimeInterval .
|
?educationalTraining core:dateTimeInterval ?dateTimeInterval .
|
||||||
?dateTimeInterval core:start ?date .
|
?dateTimeInterval core:start ?date .
|
||||||
?date ?property ?object .
|
?date ?property ?object .
|
||||||
|
|
|
@ -1,20 +1,23 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?investigatorRole core:roleContributesTo ?grant .
|
|
||||||
?grant core:grantAwardedBy ?awardingOrganization .
|
|
||||||
?awardingOrganization rdfs:label ?label
|
?awardingOrganization rdfs:label ?label
|
||||||
} WHERE {
|
} WHERE {
|
||||||
{
|
{
|
||||||
{PERSON_URI core:hasPrincipalInvestigatorRole ?investigatorRole }
|
{PERSON_URI core:relatedBy ?investigatorRole .
|
||||||
|
?investigatorRole a core:PrincipalInvestigatorRole
|
||||||
|
}
|
||||||
union
|
union
|
||||||
{PERSON_URI core:hasCo-PrincipalInvestigatorRole ?investigatorRole }
|
{PERSON_URI core:relatedBy ?investigatorRole .
|
||||||
|
?investigatorRole a core:CoPrincipalInvestigatorRole
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
?investigatorRole core:roleContributesTo ?grant .
|
?investigatorRole core:relatedBy ?grant .
|
||||||
?grant a core:Grant .
|
?grant a core:Grant .
|
||||||
?grant core:grantAwardedBy ?awardingOrganization .
|
?grant core:assignedBy ?awardingOrganization .
|
||||||
|
?awardingOrganization a foaf:Organization .
|
||||||
?awardingOrganization rdfs:label ?label
|
?awardingOrganization rdfs:label ?label
|
||||||
}
|
}
|
|
@ -3,15 +3,19 @@ PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?grant ?property ?object .
|
?grant ?property ?object .
|
||||||
?investigatorRole core:roleContributesTo ?grant .
|
?investigatorRole core:relatedBy ?grant .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
{
|
{
|
||||||
{PERSON_URI core:hasPrincipalInvestigatorRole ?investigatorRole }
|
{ PERSON_URI core:relatedBy ?investigatorRole .
|
||||||
|
?investigatorRole a core:PrincipalInvestigatorRole
|
||||||
|
}
|
||||||
union
|
union
|
||||||
{PERSON_URI core:hasCo-PrincipalInvestigatorRole ?investigatorRole }
|
{ PERSON_URI core:relatedBy ?investigatorRole .
|
||||||
|
?investigatorRole a core:CoPrincipalInvestigatorRole
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
?investigatorRole core:roleContributesTo ?grant .
|
?investigatorRole core:relatedBy ?grant .
|
||||||
?grant a core:Grant .
|
?grant a core:Grant .
|
||||||
?grant ?property ?object
|
?grant ?property ?object
|
||||||
}
|
}
|
|
@ -1,15 +1,11 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?endeavor ?property ?object .
|
?endeavor ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:hasMemberRole ?memberRole .
|
PERSON_URI obo:RO_0000053 ?memberRole .
|
||||||
|
?memberRole a core:MemberRole .
|
||||||
{
|
?memberRole core:roleContributesTo ?endeavor .
|
||||||
{?memberRole core:roleRealizedIn ?endeavor }
|
|
||||||
union
|
|
||||||
{?memberRole core:roleContributesTo ?endeavor }
|
|
||||||
}
|
|
||||||
|
|
||||||
?endeavor ?property ?object .
|
?endeavor ?property ?object .
|
||||||
}
|
}
|
|
@ -1,15 +1,11 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?endeavor ?property ?object .
|
?endeavor ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:hasOutreachProviderRole ?outreachRole .
|
PERSON_URI obo:RO_0000053 ?outreachRole .
|
||||||
|
?outreachRole a core:OutreachProviderRole .
|
||||||
{
|
?outreachRole core:roleContributesTo ?endeavor .
|
||||||
{ ?memberRole core:roleRealizedIn ?endeavor }
|
|
||||||
union
|
|
||||||
{ ?memberRole core:roleContributesTo ?endeavor }
|
|
||||||
}
|
|
||||||
|
|
||||||
?endeavor ?property ?object .
|
?endeavor ?property ?object .
|
||||||
}
|
}
|
|
@ -5,8 +5,9 @@ PREFIX bibo: <http://purl.org/ontology/bibo/>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?assignee ?property ?object .
|
?assignee ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:authorInAuthorship ?authorship .
|
PERSON_URI core:relatedBy ?authorship .
|
||||||
?authorship core:linkedInformationResource ?patent .
|
?authorship a core:Authorship .
|
||||||
|
?authorship core:relates ?patent .
|
||||||
?patent rdf:type bibo:Patent .
|
?patent rdf:type bibo:Patent .
|
||||||
?patent core:assignee ?assignee .
|
?patent core:assignee ?assignee .
|
||||||
?assignee ?property ?object .
|
?assignee ?property ?object .
|
||||||
|
|
|
@ -1,13 +1,16 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
|
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
|
||||||
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?person ?property ?object .
|
?person ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:authorInAuthorship ?authorship .
|
PERSON_URI core:relatedBy ?authorship .
|
||||||
?authorship core:linkedInformationResource ?patent .
|
?authorship a core:Authorship .
|
||||||
|
?authorship core:relates ?patent .
|
||||||
?patent rdf:type bibo:Patent .
|
?patent rdf:type bibo:Patent .
|
||||||
?authorship core:linkedAuthor ?person .
|
?authorship core:relates ?person .
|
||||||
|
?person a foaf:Person .
|
||||||
?person ?property ?object .
|
?person ?property ?object .
|
||||||
}
|
}
|
|
@ -5,8 +5,9 @@ PREFIX bibo: <http://purl.org/ontology/bibo/>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?patent ?property ?object .
|
?patent ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:authorInAuthorship ?authorship .
|
PERSON_URI core:relatedBy ?authorship .
|
||||||
?authorship core:linkedInformationResource ?patent .
|
?authorship a core:Authorship .
|
||||||
|
?authorship core:relates ?patent .
|
||||||
?patent rdf:type bibo:Patent .
|
?patent rdf:type bibo:Patent .
|
||||||
?patent ?property ?object .
|
?patent ?property ?object .
|
||||||
}
|
}
|
|
@ -6,8 +6,9 @@ CONSTRUCT {
|
||||||
?date ?property ?object .
|
?date ?property ?object .
|
||||||
?precision ?property2 ?object2 .
|
?precision ?property2 ?object2 .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:authorInAuthorship ?authorship .
|
PERSON_URI core:relatedBy ?authorship .
|
||||||
?authorship core:linkedInformationResource ?patent .
|
?authorship a core:Authorship .
|
||||||
|
?authorship core:relates ?patent .
|
||||||
?patent rdf:type bibo:Patent .
|
?patent rdf:type bibo:Patent .
|
||||||
?patent core:dateFiled ?date .
|
?patent core:dateFiled ?date .
|
||||||
?date ?property ?object .
|
?date ?property ?object .
|
||||||
|
|
|
@ -6,8 +6,9 @@ CONSTRUCT {
|
||||||
?date ?property ?object .
|
?date ?property ?object .
|
||||||
?precision ?property2 ?object2 .
|
?precision ?property2 ?object2 .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:authorInAuthorship ?authorship .
|
PERSON_URI core:relatedBy ?authorship .
|
||||||
?authorship core:linkedInformationResource ?patent .
|
?authorship a core:Authorship .
|
||||||
|
?authorship core:relates ?patent .
|
||||||
?patent rdf:type bibo:Patent .
|
?patent rdf:type bibo:Patent .
|
||||||
?patent core:dateIssued ?date .
|
?patent core:dateIssued ?date .
|
||||||
?date ?property ?object .
|
?date ?property ?object .
|
||||||
|
|
|
@ -1,12 +1,16 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?organization core:hasGeographicLocation ?geographicLocation .
|
?organization core:hasGeographicLocation ?geographicLocation .
|
||||||
?geographicLocation rdfs:label ?label .
|
?geographicLocation rdfs:label ?label .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:personInPosition ?position .
|
PERSON_URI core:relatedBy ?position .
|
||||||
?position core:positionInOrganization ?organization .
|
?position a core:Position .
|
||||||
?organization core:hasGeographicLocation ?geographicLocation .
|
?position core:relates ?organization .
|
||||||
|
?organization a foaf:Organization .
|
||||||
|
?organization obo:RO_0001025 ?geographicLocation .
|
||||||
?geographicLocation rdfs:label ?label .
|
?geographicLocation rdfs:label ?label .
|
||||||
}
|
}
|
|
@ -1,11 +1,14 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?position core:positionInOrganization ?organization .
|
?position core:positionInOrganization ?organization .
|
||||||
?organization rdfs:label ?label .
|
?organization rdfs:label ?label .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:personInPosition ?position .
|
PERSON_URI core:relatedBy ?position .
|
||||||
?position core:positionInOrganization ?organization .
|
?position a core:Position .
|
||||||
|
?position core:relates ?organization .
|
||||||
|
?organization a foaf:Organization .
|
||||||
?organization rdfs:label ?label .
|
?organization rdfs:label ?label .
|
||||||
}
|
}
|
|
@ -1,12 +1,16 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?organization core:hasSubOrganization ?subOrganization .
|
?organization core:hasSubOrganization ?subOrganization .
|
||||||
?subOrganization rdfs:label ?label .
|
?subOrganization rdfs:label ?label .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:personInPosition ?position .
|
PERSON_URI core:relatedBy ?position .
|
||||||
?position core:positionInOrganization ?organization .
|
?position a core:Position .
|
||||||
?organization core:hasSubOrganization ?subOrganization .
|
?position core:relates ?organization .
|
||||||
|
?organization a foaf:Organization .
|
||||||
|
?organization obo:BFO_0000050 ?subOrganization .
|
||||||
?subOrganization rdfs:label ?label .
|
?subOrganization rdfs:label ?label .
|
||||||
}
|
}
|
|
@ -3,8 +3,10 @@ PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?superOrganization ?property ?object .
|
?superOrganization ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:personInPosition ?position .
|
PERSON_URI core:relatedBy ?position .
|
||||||
?position core:positionInOrganization ?organization .
|
?position a core:Position .
|
||||||
?organization core:subOrganizationWithin ?superOrganization .
|
?position core:relates ?organization .
|
||||||
|
?organization a foaf:Organization .
|
||||||
|
?organization obo:BFO_0000051 ?superOrganization .
|
||||||
?superOrganization ?property ?object .
|
?superOrganization ?property ?object .
|
||||||
}
|
}
|
|
@ -1,16 +1,14 @@
|
||||||
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?location rdfs:label ?locationName .
|
?location rdfs:label ?locationName .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI vivo:hasPresenterRole ?presenterRole .
|
PERSON_URI obo:RO_0000053 ?presenterRole .
|
||||||
|
?presenterRole a core:PresenterRole .
|
||||||
{?presenterRole vivo:roleRealizedIn ?presentation}
|
?presenterRole obo:BFO_0000054 ?presentation .
|
||||||
union
|
?presentation obo:BFO_0000050 ?containingEvent .
|
||||||
{?presenterRole vivo:roleIn ?presentation}
|
?containingEvent obo:RO_0001025 ?location .
|
||||||
|
|
||||||
?presentation vivo:eventWithin ?containingEvent .
|
|
||||||
?containingEvent vivo:hasGeographicLocation ?location .
|
|
||||||
?location rdfs:label ?locationName .
|
?location rdfs:label ?locationName .
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,12 +4,9 @@ PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?containingEvent rdfs:label ?containingEventName
|
?containingEvent rdfs:label ?containingEventName
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI vivo:hasPresenterRole ?presenterRole .
|
PERSON_URI obo:RO_0000053 ?presenterRole .
|
||||||
|
?presenterRole a core:PresenterRole .
|
||||||
{?presenterRole vivo:roleRealizedIn ?presentation}
|
?presenterRole obo:BFO_0000054 ?presentation .
|
||||||
union
|
?presentation obo:BFO_0000050 ?containingEvent .
|
||||||
{?presenterRole vivo:roleIn ?presentation}
|
|
||||||
|
|
||||||
?presentation vivo:eventWithin ?containingEvent .
|
|
||||||
?containingEvent rdfs:label ?containingEventName
|
?containingEvent rdfs:label ?containingEventName
|
||||||
}
|
}
|
|
@ -5,13 +5,9 @@ CONSTRUCT {
|
||||||
?presentation rdfs:label ?presentationTitle .
|
?presentation rdfs:label ?presentationTitle .
|
||||||
?presenterRole rdfs:label ?roleLabel .
|
?presenterRole rdfs:label ?roleLabel .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI vivo:hasPresenterRole ?presenterRole .
|
PERSON_URI obo:RO_0000053 ?presenterRole .
|
||||||
|
?presenterRole a core:PresenterRole .
|
||||||
optional {?presenterRole rdfs:label ?roleLabel}
|
?presenterRole rdfs:label ?roleLAbel .
|
||||||
|
?presenterRole obo:BFO_0000054 ?presentation .
|
||||||
{?presenterRole vivo:roleRealizedIn ?presentation}
|
|
||||||
union
|
|
||||||
{?presenterRole vivo:roleIn ?presentation}
|
|
||||||
|
|
||||||
?presentation rdfs:label ?presentationTitle .
|
?presentation rdfs:label ?presentationTitle .
|
||||||
}
|
}
|
|
@ -1,10 +1,13 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?publicationVenue ?property ?object .
|
?publicationVenue ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:authorInAuthorship ?authorship .
|
PERSON_URI core:relatedBy ?authorship .
|
||||||
?authorship core:linkedInformationResource ?publication .
|
?authorship a core:Authorship .
|
||||||
|
?authorship core:relates ?publication .
|
||||||
|
?publication a obo:IAO_0000030 .
|
||||||
?publication core:hasPublicationVenue ?publicationVenue .
|
?publication core:hasPublicationVenue ?publicationVenue .
|
||||||
?publicationVenue ?property ?object .
|
?publicationVenue ?property ?object .
|
||||||
}
|
}
|
|
@ -1,13 +1,19 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?coAuthorship ?property1 ?object1 .
|
?coAuthorship ?property1 ?object1 .
|
||||||
?person ?property2 ?object2 .
|
?person ?property2 ?object2 .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:authorInAuthorship ?authorship .
|
PERSON_URI core:relatedBy ?authorship .
|
||||||
?authorship core:linkedInformationResource ?publication .
|
?authorship a core:Authorship .
|
||||||
?publication core:informationResourceInAuthorship ?coAuthorship .
|
?authorship core:relates ?publication .
|
||||||
|
?publication a obo:IAO_0000030 .
|
||||||
|
?publication core:relatedBy ?coAuthorship .
|
||||||
|
?coAuthorship a core:Authorship .
|
||||||
?coAuthorship ?property1 ?object1 .
|
?coAuthorship ?property1 ?object1 .
|
||||||
?coAuthorship core:linkedAuthor ?person .
|
?coAuthorship core:relates ?person .
|
||||||
|
?person a foaf:Person .
|
||||||
?person ?property2 ?object2 .
|
?person ?property2 ?object2 .
|
||||||
}
|
}
|
|
@ -1,11 +1,15 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?event ?property ?object .
|
?event ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:authorInAuthorship ?authorship .
|
PERSON_URI core:relatedBy ?authorship .
|
||||||
?authorship core:linkedInformationResource ?publication .
|
?authorship a core:Authorship .
|
||||||
|
?authorship core:relates ?publication .
|
||||||
|
?publication a obo:IAO_0000030 .
|
||||||
?publication bibo:presentedAt ?event .
|
?publication bibo:presentedAt ?event .
|
||||||
?event ?property ?object .
|
?event ?property ?object .
|
||||||
}
|
}
|
|
@ -1,12 +1,15 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>PREFIX bibo: <http://purl.org/ontology/bibo/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?endDate ?property ?object .
|
?endDate ?property ?object .
|
||||||
?precision ?property2 ?object2 .
|
?precision ?property2 ?object2 .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:authorInAuthorship ?authorship .
|
PERSON_URI core:relatedBy ?authorship .
|
||||||
?authorship core:linkedInformationResource ?publication .
|
?authorship a core:Authorship .
|
||||||
|
?authorship core:relates ?publication .
|
||||||
|
?publication a obo:IAO_0000030 .
|
||||||
?publication bibo:presentedAt ?event .
|
?publication bibo:presentedAt ?event .
|
||||||
?event ?property ?object .
|
?event ?property ?object .
|
||||||
?event core:dateTimeInterval ?dateTimeInterval .
|
?event core:dateTimeInterval ?dateTimeInterval .
|
||||||
|
|
|
@ -1,13 +1,16 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?location rdfs:label ?locationName .
|
?location rdfs:label ?locationName .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:authorInAuthorship ?authorship .
|
PERSON_URI core:relatedBy ?authorship .
|
||||||
?authorship core:linkedInformationResource ?publication .
|
?authorship a core:Authorship .
|
||||||
|
?authorship core:relates ?publication .
|
||||||
|
?publication a obo:IAO_0000030 .
|
||||||
?publication bibo:presentedAt ?event .
|
?publication bibo:presentedAt ?event .
|
||||||
?event core:hasGeographicLocation ?location .
|
?event obo:RO_0001025 ?location .
|
||||||
?location rdfs:label ?locationName .
|
?location rdfs:label ?locationName .
|
||||||
}
|
}
|
|
@ -1,12 +1,15 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?startDate ?property ?object .
|
?startDate ?property ?object .
|
||||||
?precision ?property2 ?object2 .
|
?precision ?property2 ?object2 .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:authorInAuthorship ?authorship .
|
PERSON_URI core:relatedBy ?authorship .
|
||||||
?authorship core:linkedInformationResource ?publication .
|
?authorship a core:Authorship .
|
||||||
|
?authorship core:relates ?publication .
|
||||||
|
?publication a obo:IAO_0000030 .
|
||||||
?publication bibo:presentedAt ?event .
|
?publication bibo:presentedAt ?event .
|
||||||
?event ?property ?object .
|
?event ?property ?object .
|
||||||
?event core:dateTimeInterval ?dateTimeInterval .
|
?event core:dateTimeInterval ?dateTimeInterval .
|
||||||
|
|
|
@ -1,9 +1,12 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?publication ?property ?object .
|
?publication ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:authorInAuthorship ?authorship .
|
PERSON_URI core:relatedBy ?authorship .
|
||||||
?authorship core:linkedInformationResource ?publication .
|
?authorship a core:Authorship .
|
||||||
|
?authorship core:relates ?publication .
|
||||||
|
?publication a obo:IAO_0000030 .
|
||||||
?publication ?property ?object .
|
?publication ?property ?object .
|
||||||
}
|
}
|
|
@ -1,11 +1,14 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?date ?property ?object .
|
?date ?property ?object .
|
||||||
?precision ?property2 ?object2 .
|
?precision ?property2 ?object2 .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:authorInAuthorship ?authorship .
|
PERSON_URI core:relatedBy ?authorship .
|
||||||
?authorship core:linkedInformationResource ?publication .
|
?authorship a core:Authorship .
|
||||||
|
?authorship core:relates ?publication .
|
||||||
|
?publication a obo:IAO_0000030 .
|
||||||
?publication ?dateTimeValue ?date .
|
?publication ?dateTimeValue ?date .
|
||||||
?date ?property ?object .
|
?date ?property ?object .
|
||||||
?date core:dateTimePrecision ?precision .
|
?date core:dateTimePrecision ?precision .
|
||||||
|
|
|
@ -1,10 +1,13 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?informationResource ?property ?object .
|
?informationResource ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:authorInAuthorship ?authorship .
|
PERSON_URI core:relatedBy ?authorship .
|
||||||
?authorship core:linkedInformationResource ?publication .
|
?authorship a core:Authorship .
|
||||||
?publication core:partOf ?informationResource .
|
?authorship core:relates ?publication .
|
||||||
|
?publication a obo:IAO_0000030 .
|
||||||
|
?publication obo:BFO_0000050 ?informationResource .
|
||||||
?informationResource ?property ?object .
|
?informationResource ?property ?object .
|
||||||
}
|
}
|
|
@ -1,11 +1,14 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?informationResource ?property ?object .
|
?informationResource ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:authorInAuthorship ?authorship .
|
PERSON_URI core:relatedBy ?authorship .
|
||||||
?authorship core:linkedInformationResource ?publication .
|
?authorship a core:Authorship .
|
||||||
|
?authorship core:relates ?publication .
|
||||||
|
?publication a obo:IAO_0000030 .
|
||||||
?publication bibo:reproducedIn ?informationResource .
|
?publication bibo:reproducedIn ?informationResource .
|
||||||
?informationResource ?property ?object .
|
?informationResource ?property ?object .
|
||||||
}
|
}
|
|
@ -1,11 +1,14 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?publicationStatus ?property ?object .
|
?publicationStatus ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:authorInAuthorship ?authorship .
|
PERSON_URI core:relatedBy ?authorship .
|
||||||
?authorship core:linkedInformationResource ?publication .
|
?authorship a core:Authorship .
|
||||||
|
?authorship core:relates ?publication .
|
||||||
|
?publication a obo:IAO_0000030 .
|
||||||
?publication bibo:status ?publicationStatus .
|
?publication bibo:status ?publicationStatus .
|
||||||
?publicationStatus ?property ?object .
|
?publicationStatus ?property ?object .
|
||||||
}
|
}
|
|
@ -1,10 +1,15 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
PREFIX vcard: <http://www.w3.org/2006/vcard/ns#>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?urllink ?property ?object .
|
?urllink ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:authorInAuthorship ?authorship .
|
PERSON_URI core:relatedBy ?authorship .
|
||||||
?authorship core:linkedInformationResource ?publication .
|
?authorship a core:Authorship .
|
||||||
?publication core:webpage ?urllink .
|
?authorship core:relates ?publication .
|
||||||
|
?publication a obo:IAO_0000030 .
|
||||||
|
?publication obo:ARG_2000028 ?vcard .
|
||||||
|
?vcard vcard:hasURL ?urllink .
|
||||||
?urllink ?property ?object .
|
?urllink ?property ?object .
|
||||||
}
|
}
|
|
@ -1,10 +1,13 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?publisher ?property ?object .
|
?publisher ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:authorInAuthorship ?authorship .
|
PERSON_URI core:relatedBy ?authorship .
|
||||||
?authorship core:linkedInformationResource ?publication .
|
?authorship a core:Authorship .
|
||||||
|
?authorship core:relates ?publication .
|
||||||
|
?publication a obo:IAO_0000030 .
|
||||||
?publication core:hasPublicationVenue ?publicationVenue .
|
?publication core:hasPublicationVenue ?publicationVenue .
|
||||||
?publicationVenue core:publisher ?publisher .
|
?publicationVenue core:publisher ?publisher .
|
||||||
?publisher ?property ?object .
|
?publisher ?property ?object .
|
||||||
|
|
|
@ -1,10 +1,13 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?publisher ?property ?object .
|
?publisher ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:authorInAuthorship ?authorship .
|
PERSON_URI core:relatedBy ?authorship .
|
||||||
?authorship core:linkedInformationResource ?publication .
|
?authorship a core:Authorship .
|
||||||
|
?authorship core:relates ?publication .
|
||||||
|
?publication a obo:IAO_0000030 .
|
||||||
?publication core:publisher ?publisher .
|
?publication core:publisher ?publisher .
|
||||||
?publisher ?property ?object .
|
?publisher ?property ?object .
|
||||||
}
|
}
|
|
@ -1,9 +1,11 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?course ?property ?object .
|
?course ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:hasTeacherRole ?teacherRole .
|
PERSON_URI obo:RO_0000053 ?teacherRole .
|
||||||
?teacherRole core:roleRealizedIn ?course .
|
?teacherRole a core:TeacherRole .
|
||||||
|
?teacherRole obo:BFO_0000054 ?course .
|
||||||
?course ?property ?object .
|
?course ?property ?object .
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue