https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8/Head https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8 http://www.nanopub.org/nschema#hasAssertion https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8/assertion https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8 http://www.nanopub.org/nschema#hasProvenance https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8/provenance https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8 http://www.nanopub.org/nschema#hasPublicationInfo https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8/pubinfo https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8 http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://www.nanopub.org/nschema#Nanopublication https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8/assertion https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8/get-definitions-of-ontology-ns http://purl.org/dc/terms/description Like 'Get the definitions of an ontology including namespace and descriptions', but restricted to definition nanopublications published by an admin, maintainer, or member of the space that maintains the resource (observers excluded). It returns the definitions of the elements of a given OWL ontology (classes, properties, named individuals, and describing paragraphs) that either match the ontology namespace or declare dct:isPartOf the ontology. The maintaining space and its validated member public-key hashes are resolved server-side from the spaces repo (/repo/spaces). Each element appears once, kept from the latest member-authored definition (by nanopub timestamp, ties broken by nanopub URI). The last_modified_by/last_modified columns give the signer and timestamp of that latest definition; the signer name is resolved from the trust repo (/repo/trust) or left blank. https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8/get-definitions-of-ontology-ns http://purl.org/dc/terms/license http://www.apache.org/licenses/LICENSE-2.0 https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8/get-definitions-of-ontology-ns http://www.w3.org/1999/02/22-rdf-syntax-ns#type https://w3id.org/kpxl/grlc/grlc-query https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8/get-definitions-of-ontology-ns http://www.w3.org/2000/01/rdf-schema#label Get the latest member-authored definitions of an ontology including namespace https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8/get-definitions-of-ontology-ns https://w3id.org/kpxl/grlc/endpoint https://w3id.org/np/l/nanopub-query-1.1/repo/full https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8/get-definitions-of-ontology-ns https://w3id.org/kpxl/grlc/sparql prefix owl: <http://www.w3.org/2002/07/owl#> prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> 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#> prefix schema: <https://schema.org/> prefix gen: <https://w3id.org/kpxl/gen/terms/> prefix foaf: <http://xmlns.com/foaf/0.1/> select ?item (sample(?item_label_) as ?item_label) (sample(?user) as ?last_modified_by) (sample(?lmbl) as ?last_modified_by_label) (sample(?date) as ?last_modified) (sample(?np_) as ?np) ("^" as ?np_label) where { values ?_ontology_multi_iri {} values ?itemType { owl:Class rdf:Property owl:ObjectProperty owl:DatatypeProperty owl:NamedIndividual gen:Paragraph } service <https://w3id.org/np/l/nanopub-query-1.1/repo/spaces> { graph npa:graph { npa:thisRepo npa:hasCurrentSpaceState ?stateG . } graph ?stateG { ?_ontology_multi_iri npa:isMaintainedBy? ?space . ?ri a gen:RoleInstantiation ; npa:forSpace ?space ; npa:forAgent ?agent ; npa:hasRoleType ?rt . filter(?rt in (gen:AdminRole, gen:MaintainerRole, gen:MemberRole)) ?acct a npa:AccountState ; npa:agent ?agent ; npa:pubkey ?pubkey . } } graph npa:graph { ?np_ npx:hasNanopubType ?itemType . ?np_ npa:hasValidSignatureForPublicKeyHash ?pubkey . filter not exists { ?npx npx:invalidates ?np_ ; npa:hasValidSignatureForPublicKeyHash ?pubkey . } ?np_ dct:created ?date . ?np_ npx:introduces ?item . ?np_ np:hasAssertion ?a . optional { ?np_ npx:signedBy ?user . } } graph ?a { { ?item a ?itemType . filter(strstarts(str(?item), ?__ontologyNamespace)) } union { ?item a ?itemType . ?item dct:isPartOf|schema:isPartOf ?_ontology_multi_iri . } optional { ?item rdfs:label|schema:title ?item_label_ . } } filter not exists { service <https://w3id.org/np/l/nanopub-query-1.1/repo/spaces> { graph npa:graph { npa:thisRepo npa:hasCurrentSpaceState ?stateG2 . } graph ?stateG2 { ?_ontology_multi_iri npa:isMaintainedBy? ?space2 . ?ri2 a gen:RoleInstantiation ; npa:forSpace ?space2 ; npa:forAgent ?agent2 ; npa:hasRoleType ?rt2 . filter(?rt2 in (gen:AdminRole, gen:MaintainerRole, gen:MemberRole)) ?acct2 a npa:AccountState ; npa:agent ?agent2 ; npa:pubkey ?pubkey2 . } } graph npa:graph { ?np2 npx:hasNanopubType ?itemType . ?np2 npa:hasValidSignatureForPublicKeyHash ?pubkey2 . filter not exists { ?np2x npx:invalidates ?np2 ; npa:hasValidSignatureForPublicKeyHash ?pubkey2 . } ?np2 dct:created ?date2 . ?np2 npx:introduces ?item . ?np2 np:hasAssertion ?a2 . } graph ?a2 { { ?item a ?itemType . filter(strstarts(str(?item), ?__ontologyNamespace)) } union { ?item a ?itemType . ?item dct:isPartOf|schema:isPartOf ?_ontology_multi_iri . } } filter(?date2 > ?date || (?date2 = ?date && str(?np2) > str(?np_))) } optional { service <https://w3id.org/np/l/nanopub-query-1.1/repo/trust> { graph npa:graph { npa:thisRepo npa:hasCurrentTrustState ?tg . } graph ?tg { ?user foaf:name ?lmbl . } } } } group by ?item order by ?item_label https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8/provenance https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8/assertion http://www.w3.org/ns/prov#wasAttributedTo https://orcid.org/0000-0002-1267-0234 https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8/pubinfo https://orcid.org/0000-0002-1267-0234 http://xmlns.com/foaf/0.1/name Tobias Kuhn https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8 http://purl.org/dc/terms/created 2026-06-26T07:51:37Z https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8 http://purl.org/dc/terms/creator https://orcid.org/0000-0002-1267-0234 https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8 http://purl.org/dc/terms/license https://creativecommons.org/licenses/by/4.0/ https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8 http://purl.org/nanopub/x/embeds https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8/get-definitions-of-ontology-ns https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8 http://www.w3.org/ns/prov#wasDerivedFrom https://w3id.org/np/RA-AB1iDSPzDpv3VvzQBDSWMElDGnYb8F-iva2kYyQYN4 https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8 http://www.w3.org/ns/prov#wasDerivedFrom https://w3id.org/np/RAliUJFYGJF3xnfl1825g-TB4iVvOV8RxFRbB0q0OEEsE https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8 https://w3id.org/np/o/ntemplate/wasCreatedFromProvenanceTemplate https://w3id.org/np/RA7lSq6MuK_TIC6JMSHvLtee3lpLoZDOqLJCLXevnrPoU https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8 https://w3id.org/np/o/ntemplate/wasCreatedFromPubinfoTemplate https://w3id.org/np/RACJ58Gvyn91LqCKIO9zu1eijDQIeEff28iyDrJgjSJF8 https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8 https://w3id.org/np/o/ntemplate/wasCreatedFromPubinfoTemplate https://w3id.org/np/RAoTD7udB2KtUuOuAe74tJi1t3VzK0DyWS7rYVAq1GRvw https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8 https://w3id.org/np/o/ntemplate/wasCreatedFromPubinfoTemplate https://w3id.org/np/RAukAcWHRDlkqxk7H2XNSegc1WnHI569INvNr-xdptDGI https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8 https://w3id.org/np/o/ntemplate/wasCreatedFromTemplate https://w3id.org/np/RAEFAt-QcFK0ZhqfvlsmS10BnzGJA0xwOICZXkO-ai87k https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8/sig http://purl.org/nanopub/x/hasAlgorithm RSA https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8/sig http://purl.org/nanopub/x/hasPublicKey MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCwUtewGCpT5vIfXYE1bmf/Uqu1ojqnWdYxv+ySO80ul8Gu7m8KoyPAwuvaPj0lvPtHrg000qMmkxzKhYknEjq8v7EerxZNYp5B3/3+5ZpuWOYAs78UnQVjbHSmDdmryr4D4VvvNIiUmd0yxci47dTFUj4DvfHnGd6hVe5+goqdcwIDAQAB https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8/sig http://purl.org/nanopub/x/hasSignature EHQ2MuThVKlQTzdqgoZcP5NF+rwJQx3Zvo+ew1CPk0NdzYAubRw3T7gC9IPAYta/1TpaZJlNl1iDjN8q0cYJ0rxiwh95ArYB4IIWhDW/QoAhuPgJt+GPeXdJI5qpHCqao7QmRf9GHsck9nH5dj285fkB3pZ590WM4M7qRmnFWS0= https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8/sig http://purl.org/nanopub/x/hasSignatureTarget https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8 https://w3id.org/np/RA2RYleQ5Qf88nZpRpXE584XdwoPJGG6XeT4LNZBauAF8/sig http://purl.org/nanopub/x/signedBy https://orcid.org/0000-0002-1267-0234