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