incremental development for NIHVIVO-1275

This commit is contained in:
stellamit 2011-06-01 18:47:58 +00:00
parent ac5363a5d6
commit 8760f28b48
6 changed files with 54 additions and 0 deletions

View file

@ -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 .
}

View file

@ -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 .
}

View file

@ -0,0 +1,8 @@
PREFIX core: <http://vivoweb.org/ontology/core#>
CONSTRUCT {
?issuedCredential ?property ?object .
} WHERE {
PERSON_URI core:hasCredential ?issuedCredential .
?issuedCredential ?property ?object .
}

View file

@ -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 .
}

View file

@ -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 .
}

View file

@ -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 .
}