incremental development for NIHVIVO-1275
This commit is contained in:
parent
ac5363a5d6
commit
8760f28b48
6 changed files with 54 additions and 0 deletions
|
@ -0,0 +1,9 @@
|
|||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||
|
||||
CONSTRUCT {
|
||||
?credential ?property ?object .
|
||||
} WHERE {
|
||||
PERSON_URI core:hasCredential ?issuedCredential .
|
||||
?issuedCredential core:issuanceOfCredential ?credential .
|
||||
?credential ?property ?object .
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||
|
||||
CONSTRUCT {
|
||||
?organization ?property ?object .
|
||||
} WHERE {
|
||||
PERSON_URI core:hasCredential ?issuedCredential .
|
||||
?issuedCredential core:issuanceOfCredential ?credential .
|
||||
?credential core:hasGoverningAuthority ?organization .
|
||||
?organization ?property ?object .
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||
|
||||
CONSTRUCT {
|
||||
?issuedCredential ?property ?object .
|
||||
} WHERE {
|
||||
PERSON_URI core:hasCredential ?issuedCredential .
|
||||
?issuedCredential ?property ?object .
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||
|
||||
CONSTRUCT {
|
||||
?date ?property ?object .
|
||||
} WHERE {
|
||||
PERSON_URI core:hasCredential ?issuedCredential .
|
||||
?issuedCredential core:expirationDate ?date .
|
||||
?date ?property ?object .
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||
|
||||
CONSTRUCT {
|
||||
?date ?property ?object .
|
||||
} WHERE {
|
||||
PERSON_URI core:hasCredential ?issuedCredential .
|
||||
?issuedCredential core:dateIssued ?date .
|
||||
?date ?property ?object .
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||
|
||||
CONSTRUCT {
|
||||
?subjectArea ?property ?object .
|
||||
} WHERE {
|
||||
PERSON_URI core:hasCredential ?issuedCredential .
|
||||
?issuedCredential core:hasSubjectArea ?subjectArea .
|
||||
?subjectArea ?property ?object .
|
||||
}
|
Loading…
Add table
Reference in a new issue