https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ/Head https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ http://www.nanopub.org/nschema#hasAssertion https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ/assertion https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ http://www.nanopub.org/nschema#hasProvenance https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ/provenance https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ http://www.nanopub.org/nschema#hasPublicationInfo https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ/pubinfo https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://www.nanopub.org/nschema#Nanopublication https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ/assertion https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ/get-maintained-resource-info http://purl.org/dc/terms/description Returns basic key-value facts about a given maintained resource (its description, type, namespace, the space that maintains it, and the currently active declaration nanopub that links the resource to that space), taken from its latest non-invalidated declaration nanopub. Only the most recent valid declaration is considered, so outdated declarations by other signing keys are ignored. Each property and value is rendered as a link to its defining IRI where applicable, and the type can carry multiple values. The namespace is shown as its full URL, trimmed in the middle with an ellipsis beyond 80 characters. Both columns use the '_noheader' convention so the redundant header row is dropped. https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ/get-maintained-resource-info http://purl.org/dc/terms/license http://www.apache.org/licenses/LICENSE-2.0 https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ/get-maintained-resource-info http://www.w3.org/1999/02/22-rdf-syntax-ns#type https://w3id.org/kpxl/grlc/grlc-query https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ/get-maintained-resource-info http://www.w3.org/2000/01/rdf-schema#label Get maintained resource info https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ/get-maintained-resource-info https://w3id.org/kpxl/grlc/endpoint https://w3id.org/np/l/nanopub-query-1.1/repo/full https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ/get-maintained-resource-info https://w3id.org/kpxl/grlc/sparql prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> 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 gen: <https://w3id.org/kpxl/gen/terms/> select distinct ?Property_noheader ?Property_label ?Value_noheader ?Value_label where { values ?_resource_multi_iri {} { select ?_resource_multi_iri (max(?cDate) as ?latestDate) where { values ?_resource_multi_iri {} graph npa:graph { ?cnp npx:hasNanopubType gen:MaintainedResource . ?cnp npa:hasValidSignatureForPublicKeyHash ?cPubkey . filter not exists { ?cnpx npx:invalidates ?cnp ; npa:hasValidSignatureForPublicKeyHash ?cPubkey . } ?cnp npx:introduces ?_resource_multi_iri . ?cnp dct:created ?cDate . } } group by ?_resource_multi_iri } graph npa:graph { ?np npx:hasNanopubType gen:MaintainedResource . ?np npa:hasValidSignatureForPublicKeyHash ?pubkey . filter not exists { ?npx npx:invalidates ?np ; npa:hasValidSignatureForPublicKeyHash ?pubkey . } ?np npx:introduces ?_resource_multi_iri . ?np dct:created ?latestDate . ?np np:hasAssertion ?a . } graph ?a { ?_resource_multi_iri a gen:MaintainedResource . } optional { graph ?a { ?_resource_multi_iri dct:description ?descVal } } optional { graph ?a { ?_resource_multi_iri a ?typeIri . filter(?typeIri != gen:MaintainedResource) } } optional { graph ?a { ?_resource_multi_iri gen:hasNamespace ?nsVal } } optional { graph ?a { ?_resource_multi_iri gen:isMaintainedBy ?spaceVal } } bind(strlen(str(?nsVal)) as ?nsLen) bind(if(?nsLen > 80, concat(substr(str(?nsVal), 1, 38), '...', substr(str(?nsVal), ?nsLen - 37)), str(?nsVal)) as ?nsDisp) bind(concat('<span>', ?nsDisp, '</span>') as ?nsAnchor) values (?key ?Property_noheader ?Property_label) { ('Description' dct:description 'Description:') ('Type' rdf:type 'Type:') ('Namespace' gen:hasNamespace 'Namespace:') ('Maintained by' gen:isMaintainedBy 'Maintained by:') ('Declaration' npa:viaNanopub 'Declaration:') } bind(if(?key='Type', ?typeIri, if(?key='Namespace', ?nsAnchor, if(?key='Description', str(?descVal), if(?key='Maintained by', ?spaceVal, ?np)))) as ?Value_noheader) filter(bound(?Value_noheader)) bind(if(?key='Type', replace(str(?typeIri), '^.*[/#]', ''), '') as ?Value_label) } order by (if(?key='Description', 1, if(?key='Type', 2, if(?key='Namespace', 3, if(?key='Maintained by', 4, 5))))) https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ/provenance https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ/assertion http://www.w3.org/ns/prov#wasAttributedTo https://orcid.org/0000-0002-1267-0234 https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ/pubinfo https://orcid.org/0000-0002-1267-0234 http://xmlns.com/foaf/0.1/name Tobias Kuhn https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ http://purl.org/dc/terms/created 2026-07-13T09:24:52Z https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ http://purl.org/dc/terms/creator https://orcid.org/0000-0002-1267-0234 https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ http://purl.org/dc/terms/license https://creativecommons.org/licenses/by/4.0/ https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ http://purl.org/nanopub/x/embeds https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ/get-maintained-resource-info https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ http://purl.org/nanopub/x/supersedes https://w3id.org/np/RAIwEI2XZ4OotMRpeBLKsYzXdbhRAZuWyuHsbDvF9-NJg https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ http://www.w3.org/2000/01/rdf-schema#label Get maintained resource info https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ https://w3id.org/np/o/ntemplate/wasCreatedFromProvenanceTemplate https://w3id.org/np/RA7lSq6MuK_TIC6JMSHvLtee3lpLoZDOqLJCLXevnrPoU https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ https://w3id.org/np/o/ntemplate/wasCreatedFromPubinfoTemplate https://w3id.org/np/RA0J4vUn_dekg-U1kK3AOEt02p9mT2WO03uGxLDec1jLw https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ https://w3id.org/np/o/ntemplate/wasCreatedFromPubinfoTemplate https://w3id.org/np/RAoTD7udB2KtUuOuAe74tJi1t3VzK0DyWS7rYVAq1GRvw https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ https://w3id.org/np/o/ntemplate/wasCreatedFromPubinfoTemplate https://w3id.org/np/RAukAcWHRDlkqxk7H2XNSegc1WnHI569INvNr-xdptDGI https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ https://w3id.org/np/o/ntemplate/wasCreatedFromTemplate https://w3id.org/np/RAEFAt-QcFK0ZhqfvlsmS10BnzGJA0xwOICZXkO-ai87k https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ/sig http://purl.org/nanopub/x/hasAlgorithm RSA https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ/sig http://purl.org/nanopub/x/hasPublicKey MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCwUtewGCpT5vIfXYE1bmf/Uqu1ojqnWdYxv+ySO80ul8Gu7m8KoyPAwuvaPj0lvPtHrg000qMmkxzKhYknEjq8v7EerxZNYp5B3/3+5ZpuWOYAs78UnQVjbHSmDdmryr4D4VvvNIiUmd0yxci47dTFUj4DvfHnGd6hVe5+goqdcwIDAQAB https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ/sig http://purl.org/nanopub/x/hasSignature X2KDP2t+aRNA96DmYy6xNNuOSpk8X5qcBSh3F9k6gN9lOhMsX/XXGakkbIBBlQnYAwZPiUWe+fKyHeBM+LA3Wxj6HDs8+4IGfDeXOzRfC4DVszsPl8fY5CpvEScamB+qpiARoA95KTurqQqFAEC/Tv1ZwMyxxl2tiwFKR8DE04g= https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ/sig http://purl.org/nanopub/x/hasSignatureTarget https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ https://w3id.org/np/RA483vMdEfY_T7mK0TD9_8vdAW6GABhNGpAoaICgsjdSQ/sig http://purl.org/nanopub/x/signedBy https://orcid.org/0000-0002-1267-0234