incremental development for NIHVIVO-1275
This commit is contained in:
parent
073657b63e
commit
a2f4ff0636
6 changed files with 56 additions and 0 deletions
|
@ -0,0 +1,8 @@
|
||||||
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?educationalTraining ?property ?object .
|
||||||
|
} WHERE {
|
||||||
|
PERSON_URI core:educationalTraining ?educationalTraining .
|
||||||
|
?educationalTraining ?property ?object .
|
||||||
|
}
|
|
@ -0,0 +1,9 @@
|
||||||
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?degree ?property ?object .
|
||||||
|
} WHERE {
|
||||||
|
PERSON_URI core:educationalTraining ?educationalTraining .
|
||||||
|
?educationalTraining core:degreeEarned ?degree .
|
||||||
|
?degree ?property ?object .
|
||||||
|
}
|
|
@ -0,0 +1,10 @@
|
||||||
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?date ?property ?object .
|
||||||
|
} WHERE {
|
||||||
|
PERSON_URI core:educationalTraining ?educationalTraining .
|
||||||
|
?educationalTraining core:dateTimeInterval ?dateTimeInterval .
|
||||||
|
?dateTimeInterval core:end ?date .
|
||||||
|
?date ?property ?object .
|
||||||
|
}
|
|
@ -0,0 +1,10 @@
|
||||||
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?geographicLocation ?property ?object .
|
||||||
|
} WHERE {
|
||||||
|
PERSON_URI core:educationalTraining ?educationalTraining .
|
||||||
|
?educationalTraining core:trainingAtOrganization ?organization .
|
||||||
|
?organization core:hasGeographicLocation ?geographicLocation .
|
||||||
|
?geographicLocation ?property ?object .
|
||||||
|
}
|
|
@ -0,0 +1,9 @@
|
||||||
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?organization ?property ?object .
|
||||||
|
} WHERE {
|
||||||
|
PERSON_URI core:educationalTraining ?educationalTraining .
|
||||||
|
?educationalTraining core:trainingAtOrganization ?organization .
|
||||||
|
?organization ?property ?object .
|
||||||
|
}
|
|
@ -0,0 +1,10 @@
|
||||||
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?date ?property ?object .
|
||||||
|
} WHERE {
|
||||||
|
PERSON_URI core:educationalTraining ?educationalTraining .
|
||||||
|
?educationalTraining core:dateTimeInterval ?dateTimeInterval .
|
||||||
|
?dateTimeInterval core:start ?date .
|
||||||
|
?date ?property ?object .
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue