[ { "@id": "https://w3id.org/np/RAi81a_uid_QjSg-P_Vjbg77zZHmAJJ-4rtz0yu2YRaX4/Head", "@graph": [ { "@id": "https://w3id.org/np/RAi81a_uid_QjSg-P_Vjbg77zZHmAJJ-4rtz0yu2YRaX4", "http://www.nanopub.org/nschema#hasAssertion": [ { "@id": "https://w3id.org/np/RAi81a_uid_QjSg-P_Vjbg77zZHmAJJ-4rtz0yu2YRaX4/assertion" } ], "http://www.nanopub.org/nschema#hasProvenance": [ { "@id": "https://w3id.org/np/RAi81a_uid_QjSg-P_Vjbg77zZHmAJJ-4rtz0yu2YRaX4/provenance" } ], "http://www.nanopub.org/nschema#hasPublicationInfo": [ { "@id": "https://w3id.org/np/RAi81a_uid_QjSg-P_Vjbg77zZHmAJJ-4rtz0yu2YRaX4/pubinfo" } ], "@type": [ "http://www.nanopub.org/nschema#Nanopublication" ] } ] }, { "@id": "https://w3id.org/np/RAi81a_uid_QjSg-P_Vjbg77zZHmAJJ-4rtz0yu2YRaX4/provenance", "@graph": [ { "@id": "https://w3id.org/np/RAi81a_uid_QjSg-P_Vjbg77zZHmAJJ-4rtz0yu2YRaX4/assertion", "http://www.w3.org/ns/prov#wasAttributedTo": [ { "@id": "https://orcid.org/0000-0002-1267-0234" } ] } ] }, { "@id": "https://w3id.org/np/RAi81a_uid_QjSg-P_Vjbg77zZHmAJJ-4rtz0yu2YRaX4/assertion", "@graph": [ { "@id": "https://w3id.org/np/RAi81a_uid_QjSg-P_Vjbg77zZHmAJJ-4rtz0yu2YRaX4/get-template-kind-version-history", "http://purl.org/dc/terms/description": [ { "@value": "Returns the version history of a space-governed definition kind (e.g. a template kind or view kind) given as the resource, for display on its maintained-resource page. Each row is a non-invalidated nanopub whose embedded instance declares dct:isVersionOf the given kind, showing its creation date, an 'Open as form' link that opens the version's embedded template in the /publish form (labelled with the version's title), the change note attached to that version's publication info (skos:changeNote, truncated to its first line and at most 50 characters), and its author (signer, with the name resolved from the governing space's trust state where available; the agent-to-name map is materialized once in a self-contained sub-select sharing no variables with the outer query and matched by string containment, instead of a per-row federated lookup, so the number of federated calls does not grow with the number of versions). The row marked '✓ current' is the current governed winner of the (kind, space) pair -- the newest non-invalidated version signed by a current member+ of the governing space, with the kind validated as maintained by that space (mirroring the get-latest-governed-version resolver and the get-assertion-templates dedup). Governed winners are materialized once in a self-contained sub-select sharing no variables with the outer query, then matched by string containment. The override_target column carries the nanopub URI only for the current row (empty otherwise), so a per-row override action is offered only on the current version. Rows are ordered newest first." } ], "http://purl.org/dc/terms/license": [ { "@id": "http://www.apache.org/licenses/LICENSE-2.0" } ], "@type": [ "https://w3id.org/kpxl/grlc/grlc-query" ], "http://www.w3.org/2000/01/rdf-schema#label": [ { "@value": "Get template kind version history" } ], "https://w3id.org/kpxl/grlc/endpoint": [ { "@id": "https://w3id.org/np/l/nanopub-query-1.1/repo/full" } ], "https://w3id.org/kpxl/grlc/sparql": [ { "@value": "prefix rdfs: \nprefix dct: \nprefix np: \nprefix npa: \nprefix npx: \nprefix gen: \nprefix foaf: \nprefix skos: \n\nselect ?Date ?Open_as_form ?Change_note ?Author ?Author_label ?Status_noheader ?override_target ?np ?np_label where {\n values ?_resource_multi_iri {}\n {\n select (group_concat(?w1; separator=\"|\") as ?winners) where {\n {\n select ?gKind ?gSpace (max(concat(str(?gDate), \">\", str(?gNp))) as ?maxW) where {\n graph npa:graph {\n ?gNp npa:hasValidSignatureForPublicKeyHash ?gPubkeyhash ;\n dct:created ?gDate ; npx:embeds ?gVersion ; np:hasAssertion ?gA .\n filter not exists { ?gInv npx:invalidates ?gNp ; npa:hasValidSignatureForPublicKeyHash ?gPubkeyhash . }\n }\n graph ?gA { ?gVersion dct:isVersionOf ?gKind ; gen:governedBy ?gSpace . }\n service {\n graph npa:graph { npa:hasCurrentSpaceState ?stateG . }\n graph ?stateG {\n ?gKind npa:isMaintainedBy ?gSpace ; npa:hasGoverningSpaceRef ?gRef .\n ?gRi a gen:RoleInstantiation ; npa:forSpace ?gSpace ; npa:forSpaceRef ?gRef ;\n npa:hasRoleType ?gTier ; npa:forAgent ?gAgent .\n filter(?gTier = gen:AdminRole || ?gTier = gen:MaintainerRole || ?gTier = gen:MemberRole)\n ?gAcct a npa:AccountState ; npa:agent ?gAgent ; npa:pubkey ?gPubkeyhash .\n }\n }\n } group by ?gKind ?gSpace\n }\n bind(concat(str(?gKind), \">\", str(?gSpace), \">\", ?maxW) as ?w1)\n }\n }\n {\n select (group_concat(?nEntry; separator=\"|\") as ?names) where {\n {\n select ?nAgent (min(?nNameRaw) as ?nName) where {\n service {\n graph npa:graph { npa:hasCurrentSpaceState ?nStateG . }\n graph ?nStateG { ?nAgent foaf:name ?nNameRaw . }\n }\n } group by ?nAgent\n }\n bind(concat(str(?nAgent), \">\", ?nName) as ?nEntry)\n }\n }\n graph npa:graph {\n ?np npa:hasValidSignatureForPublicKeyHash ?pubkeyhash ;\n npx:embeds ?version ; dct:created ?Date ; np:hasAssertion ?a ; np:hasPublicationInfo ?pi .\n filter not exists { ?inv npx:invalidates ?np ; npa:hasValidSignatureForPublicKeyHash ?pubkeyhash . }\n optional { ?np npx:signedBy ?Author . }\n }\n graph ?a { ?version dct:isVersionOf ?_resource_multi_iri . }\n optional { graph ?a { ?version rdfs:label ?titleVal } }\n optional { graph ?a { ?version gen:governedBy ?space } }\n optional { graph ?pi { ?np skos:changeNote ?noteRaw } }\n bind(replace(coalesce(?noteRaw, \"\"), \"\\r\", \"\") as ?noteNoCr)\n bind(if(contains(?noteNoCr, \"\\n\"), strbefore(?noteNoCr, \"\\n\"), ?noteNoCr) as ?firstLine)\n bind(substr(?firstLine, 1, 50) as ?Change_note)\n bind(concat('', coalesce(?titleVal, str(?version)), '') as ?Open_as_form)\n bind(concat(\"|\", coalesce(?winners, \"\"), \"|\") as ?wlist)\n bind(if(bound(?space) && contains(?wlist, concat(\"|\", str(?_resource_multi_iri), \">\", str(?space), \">\", str(?Date), \">\", str(?np), \"|\")), \"✓ current\", \"\") as ?Status_noheader)\n bind(if(?Status_noheader != \"\", str(?np), \"\") as ?override_target)\n bind(coalesce(str(?Author), \"\") as ?authorStr)\n bind(concat(\"|\", coalesce(?names, \"\"), \"|\") as ?nlist)\n bind(strbefore(strafter(?nlist, concat(\"|\", ?authorStr, \">\")), \"|\") as ?nameRaw)\n bind(if(?nameRaw != \"\", ?nameRaw, ?authorStr) as ?Author_label)\n bind(\"^\" as ?np_label)\n}\norder by desc(?Date)" } ] } ] }, { "@id": "https://w3id.org/np/RAi81a_uid_QjSg-P_Vjbg77zZHmAJJ-4rtz0yu2YRaX4/pubinfo", "@graph": [ { "@id": "https://orcid.org/0000-0002-1267-0234", "http://xmlns.com/foaf/0.1/name": [ { "@value": "Tobias Kuhn" } ] }, { "@id": "https://w3id.org/np/RAi81a_uid_QjSg-P_Vjbg77zZHmAJJ-4rtz0yu2YRaX4", "http://purl.org/dc/terms/created": [ { "@value": "2026-08-17T16:17:56Z", "@type": "http://www.w3.org/2001/XMLSchema#dateTime" } ], "http://purl.org/dc/terms/creator": [ { "@id": "https://orcid.org/0000-0002-1267-0234" } ], "http://purl.org/dc/terms/license": [ { "@id": "https://creativecommons.org/licenses/by/4.0/" } ], "http://purl.org/nanopub/x/embeds": [ { "@id": "https://w3id.org/np/RAi81a_uid_QjSg-P_Vjbg77zZHmAJJ-4rtz0yu2YRaX4/get-template-kind-version-history" } ], "http://purl.org/nanopub/x/supersedes": [ { "@id": "https://w3id.org/np/RAJ8b3MCLjSRZDPfrEGvutagGVjO7JT-6hPIi7eXXCxxw" } ], "http://www.w3.org/2000/01/rdf-schema#label": [ { "@value": "Get template kind version history" } ], "https://w3id.org/np/o/ntemplate/wasCreatedFromProvenanceTemplate": [ { "@id": "https://w3id.org/np/RA7lSq6MuK_TIC6JMSHvLtee3lpLoZDOqLJCLXevnrPoU" } ], "https://w3id.org/np/o/ntemplate/wasCreatedFromPubinfoTemplate": [ { "@id": "https://w3id.org/np/RA0J4vUn_dekg-U1kK3AOEt02p9mT2WO03uGxLDec1jLw" }, { "@id": "https://w3id.org/np/RAukAcWHRDlkqxk7H2XNSegc1WnHI569INvNr-xdptDGI" } ], "https://w3id.org/np/o/ntemplate/wasCreatedFromTemplate": [ { "@id": "https://w3id.org/np/RAEFAt-QcFK0ZhqfvlsmS10BnzGJA0xwOICZXkO-ai87k" } ] }, { "@id": "https://w3id.org/np/RAi81a_uid_QjSg-P_Vjbg77zZHmAJJ-4rtz0yu2YRaX4/sig", "http://purl.org/nanopub/x/hasAlgorithm": [ { "@value": "RSA" } ], "http://purl.org/nanopub/x/hasPublicKey": [ { "@value": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCwUtewGCpT5vIfXYE1bmf/Uqu1ojqnWdYxv+ySO80ul8Gu7m8KoyPAwuvaPj0lvPtHrg000qMmkxzKhYknEjq8v7EerxZNYp5B3/3+5ZpuWOYAs78UnQVjbHSmDdmryr4D4VvvNIiUmd0yxci47dTFUj4DvfHnGd6hVe5+goqdcwIDAQAB" } ], "http://purl.org/nanopub/x/hasSignature": [ { "@value": "rjBeaNpFcmk1RBYsUHdTOvs1YppP9wx8KGJH2yoMC1qPGLIlw8QUuK9rTesGICpo3aAeYZkB0BYXuofRUCyNK1DNO3eAhaI0q5ZWwU123OH+ke2PR/kpB3g0M6chBkljXjNEyMEHbyKFuCef1jutye1aJ2syLtQgDPoT1mRbwcE=" } ], "http://purl.org/nanopub/x/hasSignatureTarget": [ { "@id": "https://w3id.org/np/RAi81a_uid_QjSg-P_Vjbg77zZHmAJJ-4rtz0yu2YRaX4" } ], "http://purl.org/nanopub/x/signedBy": [ { "@id": "https://orcid.org/0000-0002-1267-0234" } ] } ] } ]