. . . . "Key-value Info table for a biochementity (a chemical entity defined as a subclass of BioChemEntity). Finds the entity's latest defining nanopub ('partid', signed by an owning-resource member pubkey 'pubkey', not invalidated) and shows every field the biochementity template allows: the name (and its Dutch nl-be variant), alternative names, type, superclasses, metabolite/isomer relations, chemical roles, external identifiers, group labels, context-specific aliases, comment, the vocabulary it is part of, and the defining nanopub. Each property is one row with a single value cell: literal values render as text, IRI values render as links labelled by the companion column (linked entities defined on the network show their label). Multi-valued properties are collected into one cell; rows for optional fields are omitted when absent." . . . "Get biochementity info" . . "prefix rdf: \nprefix rdfs: \nprefix dct: \nprefix schema: \nprefix skos: \nprefix owl: \nprefix obo: \nprefix pehterms: \nprefix np: \nprefix npa: \nprefix npx: \n\nselect ?Property_noheader ?Property_label\n (group_concat(replace(str(?val), '[\\r\\n]+', ' '); separator='\\n') as ?Value_multi_val_noheader)\n (group_concat(replace(str(?vallabel), '[\\r\\n]+', ' '); separator='\\n') as ?Value_label_multi)\nwhere {\n {\n select ?ord ?Property_noheader ?Property_label ?val (min(?vallabelRaw) as ?vallabel) where {\n {\n select ?dnp ?da where {\n values ?__pubkey_multi {}\n graph npa:graph {\n ?dnp npa:hasValidSignatureForPublicKeyHash ?__pubkey_multi ;\n (npx:introduces|npx:describes|npx:embeds) ?_partid_iri ;\n dct:created ?ddate ;\n np:hasAssertion ?da .\n filter not exists { ?inv npx:invalidates ?dnp ; npa:hasValidSignatureForPublicKeyHash ?__pubkey_multi . }\n }\n } order by desc(?ddate) limit 1\n }\n {\n graph ?da { ?_partid_iri rdfs:label ?v . filter(lang(?v) = '') }\n bind(1 as ?ord) bind(rdfs:label as ?Property_noheader) bind('Name:' as ?Property_label)\n bind(str(?v) as ?val) bind('' as ?vallabelRaw)\n } union {\n graph ?da { ?_partid_iri rdfs:label ?v . filter(lang(?v) = 'nl-be') }\n bind(2 as ?ord) bind(rdfs:label as ?Property_noheader) bind('Name (Dutch):' as ?Property_label)\n bind(str(?v) as ?val) bind('' as ?vallabelRaw)\n } union {\n graph ?da { ?_partid_iri schema:alternateName ?v }\n bind(3 as ?ord) bind(schema:alternateName as ?Property_noheader) bind('Alternative names:' as ?Property_label)\n bind(if(lang(?v) = 'nl-be', concat(str(?v), ' (nl)'), str(?v)) as ?val) bind('' as ?vallabelRaw)\n } union {\n graph ?da { ?_partid_iri rdf:type ?iri }\n bind(4 as ?ord) bind(rdf:type as ?Property_noheader) bind('Type:' as ?Property_label)\n bind(str(?iri) as ?val) bind(replace(str(?iri), '^.*[/#]', '') as ?vallabelRaw)\n } union {\n graph ?da { ?_partid_iri rdfs:subClassOf ?iri }\n optional { graph npa:graph { ?vnp npx:introduces ?iri ; np:hasAssertion ?vaa . } graph ?vaa { ?iri rdfs:label ?vlab . filter(lang(?vlab) = '') } }\n bind(5 as ?ord) bind(rdfs:subClassOf as ?Property_noheader) bind('Subclass of:' as ?Property_label)\n bind(str(?iri) as ?val) bind(coalesce(?vlab, replace(str(?iri), '^.*[/#]', '')) as ?vallabelRaw)\n } union {\n graph ?da { ?_partid_iri pehterms:isMetaboliteOf ?iri }\n optional { graph npa:graph { ?vnp npx:introduces ?iri ; np:hasAssertion ?vaa . } graph ?vaa { ?iri rdfs:label ?vlab . filter(lang(?vlab) = '') } }\n bind(6 as ?ord) bind(pehterms:isMetaboliteOf as ?Property_noheader) bind('Is metabolite of:' as ?Property_label)\n bind(str(?iri) as ?val) bind(coalesce(?vlab, replace(str(?iri), '^.*[/#]', '')) as ?vallabelRaw)\n } union {\n graph ?da { ?_partid_iri pehterms:isIsomerOf ?iri }\n optional { graph npa:graph { ?vnp npx:introduces ?iri ; np:hasAssertion ?vaa . } graph ?vaa { ?iri rdfs:label ?vlab . filter(lang(?vlab) = '') } }\n bind(7 as ?ord) bind(pehterms:isIsomerOf as ?Property_noheader) bind('Is isomer of:' as ?Property_label)\n bind(str(?iri) as ?val) bind(coalesce(?vlab, replace(str(?iri), '^.*[/#]', '')) as ?vallabelRaw)\n } union {\n graph ?da { ?_partid_iri obo:RO_0000087 ?iri }\n bind(8 as ?ord) bind(obo:RO_0000087 as ?Property_noheader) bind('Has role:' as ?Property_label)\n bind(str(?iri) as ?val) bind(replace(str(?iri), '^.*[/#]', '') as ?vallabelRaw)\n } union {\n graph ?da { ?_partid_iri skos:exactMatch ?iri }\n bind(9 as ?ord) bind(skos:exactMatch as ?Property_noheader) bind('External identifiers:' as ?Property_label)\n bind(str(?iri) as ?val) bind(replace(str(?iri), '^.*/', '') as ?vallabelRaw)\n } union {\n graph ?da { ?_partid_iri pehterms:hasGroupLabel ?v }\n bind(10 as ?ord) bind(pehterms:hasGroupLabel as ?Property_noheader) bind('Group labels:' as ?Property_label)\n bind(str(?v) as ?val) bind('' as ?vallabelRaw)\n } union {\n graph ?da { ?_partid_iri pehterms:hasContextAlias ?ca . }\n optional { graph ?da { ?ca schema:alternateName ?caName } }\n optional { graph ?da { ?ca schema:identifier ?caType } }\n optional { graph ?da { ?ca pehterms:hasContext ?caCtx } }\n bind(11 as ?ord) bind(pehterms:hasContextAlias as ?Property_noheader) bind('Context aliases:' as ?Property_label)\n bind(concat(coalesce(str(?caName), '?'), coalesce(concat(' (', str(?caType), ')'), ''), coalesce(concat(' @ ', replace(str(?caCtx), '^.*/', '')), '')) as ?val) bind('' as ?vallabelRaw)\n } union {\n graph ?da { ?_partid_iri schema:comment ?v }\n bind(12 as ?ord) bind(schema:comment as ?Property_noheader) bind('Comment:' as ?Property_label)\n bind(str(?v) as ?val) bind('' as ?vallabelRaw)\n } union {\n graph ?da { ?_partid_iri dct:isPartOf ?iri }\n optional { graph npa:graph { ?vnp npx:introduces ?iri ; np:hasAssertion ?vaa . } graph ?vaa { ?iri rdfs:label ?vlab . filter(lang(?vlab) = '') } }\n bind(13 as ?ord) bind(dct:isPartOf as ?Property_noheader) bind('Part of:' as ?Property_label)\n bind(str(?iri) as ?val) bind(coalesce(?vlab, replace(str(?iri), '^.*[/#]', '')) as ?vallabelRaw)\n }\n } group by ?ord ?Property_noheader ?Property_label ?val\n }\n union\n {\n {\n select ?dnp where {\n values ?__pubkey_multi {}\n graph npa:graph {\n ?dnp npa:hasValidSignatureForPublicKeyHash ?__pubkey_multi ;\n (npx:introduces|npx:describes|npx:embeds) ?_partid_iri ;\n dct:created ?ddate .\n filter not exists { ?inv npx:invalidates ?dnp ; npa:hasValidSignatureForPublicKeyHash ?__pubkey_multi . }\n }\n } order by desc(?ddate) limit 1\n }\n bind(14 as ?ord) bind(npa:viaNanopub as ?Property_noheader) bind('Defined in:' as ?Property_label)\n bind(str(?dnp) as ?val) bind(substr(replace(str(?dnp), '^.*/np/', ''), 1, 10) as ?vallabel)\n }\n}\ngroup by ?ord ?Property_noheader ?Property_label\norder by ?ord" . . "Tobias Kuhn" . "2026-08-12T08:49:27Z"^^ . . . . . "Get biochementity info" . . . . "RSA" . "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCwUtewGCpT5vIfXYE1bmf/Uqu1ojqnWdYxv+ySO80ul8Gu7m8KoyPAwuvaPj0lvPtHrg000qMmkxzKhYknEjq8v7EerxZNYp5B3/3+5ZpuWOYAs78UnQVjbHSmDdmryr4D4VvvNIiUmd0yxci47dTFUj4DvfHnGd6hVe5+goqdcwIDAQAB" . "GZa/zE0wngTj7AcxLnWAY4rxHuIx0MoESs8qk7PyZjR2DxSwL8CeoS4L37MHUOa4FWKTjpQlrhf7NA7T8SH2lCcqtxWU+iHsXlnHNKWcnmNY1/JbSSSsUh2cZ2fV5n5quWfgfWz7PGwZ1fv2cU1Xms3oBnZyLaYlVsTRFGVimDg=" . . .