Status: 
| part | subject | predicate | object | published by | date | |
|---|---|---|---|---|---|---|
|
Assertion
|
|
|||||
|
Assertion
|
Get the properties of an ontology
|
|
||||
|
Assertion
|
|
|||||
|
PublicationInfo
|
Get the properties of an ontology - This query returns all properties that specify to be part of a given ontology.
|
|
||||
|
Assertion
|
This query returns all properties that specify to be part of a given ontology.
|
|
||||
|
Assertion
|
|
|||||
|
Assertion
|
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
prefix owl: <http://www.w3.org/2002/07/owl#>
prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>
prefix dct: <http://purl.org/dc/terms/>
prefix np: <http://www.nanopub.org/nschema#>
prefix npa: <http://purl.org/nanopub/admin/>
prefix npx: <http://purl.org/nanopub/x/>
prefix skos: <http://www.w3.org/2004/02/skos/core#>
select ?property ?property_label ?domain ?range (?definition as ?description) ?np where {
values ?_ontology_multi_iri {}
graph npa:graph {
?np npx:hasNanopubType rdf:Property .
?np npa:hasValidSignatureForPublicKeyHash ?pubkey .
filter not exists { ?npx npx:invalidates ?np ; npa:hasValidSignatureForPublicKeyHash ?pubkey . }
?np dct:created ?date .
?np npx:introduces ?property .
?np np:hasAssertion ?a .
}
graph ?a {
?property dct:partOf ?_ontology_multi_iri .
optional { ?property skos:definition ?definition . }
optional { ?property rdfs:label ?property_label . }
optional { ?property rdfs:domain ?domain . }
optional { ?property rdfs:range ?range . }
}
}
order by ?property_label
|
|
||||
|
PublicationInfo
|
|
|||||
|
Assertion
|
|