incremental development for NIHVIVO-1275
This commit is contained in:
parent
2208ffd6c0
commit
cd164beb1d
8 changed files with 61 additions and 6 deletions
8
productMods/WEB-INF/rich-export/address/address.sparql
Normal file
8
productMods/WEB-INF/rich-export/address/address.sparql
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?address ?property ?object .
|
||||||
|
} WHERE {
|
||||||
|
PERSON_URI core:mailingAddress ?address .
|
||||||
|
?address ?property ?object .
|
||||||
|
}
|
|
@ -0,0 +1,9 @@
|
||||||
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?geographicLocation ?property ?object .
|
||||||
|
} WHERE {
|
||||||
|
PERSON_URI core:mailingAddress ?address .
|
||||||
|
?address core:hasGeographicLocation ?geographicLocation .
|
||||||
|
?geographicLocation ?property ?object .
|
||||||
|
}
|
9
productMods/WEB-INF/rich-export/award/award.sparql
Normal file
9
productMods/WEB-INF/rich-export/award/award.sparql
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?award ?property ?object .
|
||||||
|
} WHERE {
|
||||||
|
PERSON_URI core:awardOrHonor ?awardReceipt .
|
||||||
|
?awardReceipt core:receiptOf ?award .
|
||||||
|
?award ?property ?object .
|
||||||
|
}
|
|
@ -0,0 +1,9 @@
|
||||||
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?organization ?property ?object .
|
||||||
|
} WHERE {
|
||||||
|
PERSON_URI core:awardOrHonor ?awardReceipt .
|
||||||
|
?awardReceipt core:awardConferredBy ?organization .
|
||||||
|
?organization ?property ?object .
|
||||||
|
}
|
|
@ -0,0 +1,10 @@
|
||||||
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?organization ?property ?object .
|
||||||
|
} WHERE {
|
||||||
|
PERSON_URI core:awardOrHonor ?awardReceipt .
|
||||||
|
?awardReceipt core:receiptOf ?award .
|
||||||
|
?award core:sponsoredBy ?organization .
|
||||||
|
?organization ?property ?object .
|
||||||
|
}
|
|
@ -1,9 +1,9 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?org ?orgProp ?orgObj .
|
?organization ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:personInPosition ?position .
|
PERSON_URI core:personInPosition ?position .
|
||||||
?position core:positionInOrganization ?org .
|
?position core:positionInOrganization ?organization .
|
||||||
?org ?orgProp ?orgObj .
|
?organization ?property ?object .
|
||||||
}
|
}
|
|
@ -0,0 +1,10 @@
|
||||||
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?publicationVenue ?property ?object .
|
||||||
|
} WHERE {
|
||||||
|
PERSON_URI core:authorInAuthorship ?authorship .
|
||||||
|
?authorship core:linkedInformationResource ?publication .
|
||||||
|
?publication core:hasPublicationVenue ?publicationVenue .
|
||||||
|
?publicationVenue ?property ?object .
|
||||||
|
}
|
|
@ -1,9 +1,9 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?infoResource ?infoResourceProp ?infoResourceValue .
|
?publication ?property ?object .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
PERSON_URI core:authorInAuthorship ?authorship .
|
PERSON_URI core:authorInAuthorship ?authorship .
|
||||||
?authorship core:linkedInformationResource ?infoResource .
|
?authorship core:linkedInformationResource ?publication .
|
||||||
?infoResource ?infoResourceProp ?infoResourceValue .
|
?publication ?property ?object .
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue