. . . . "Returns the details of a presentation or poster, laid out for reading rather than as a raw property dump: authors (and speakers) are resolved to names and joined into a single row, and the start and end date/time are combined into one 'When' value - a plain date and time range when both fall on the same day, both dates spelled out when they do not. Legacy predicates (dct:date, dct:creator, and the http://schema.org/ forms) are recognised alongside the current ones, and any predicate not recognised is still listed, so nothing in the assertion is hidden. Known properties are shown first. The rdf:type row is omitted for a plain presentation, whose type the panel's own title already gives, and kept for anything else such as a poster. Where a talk records a schema:position - its place in the running order of a session whose talks all share the session's start and end - that is shown as an Order row directly after When, with the highest position in the same slot as the total, so a session whose first talk is not yet published still reads correctly. A final row links to the nanopublication that defines the presentation, labelled with the first ten characters of its trusty URI." . . . "Get presentation details" . . "prefix rdfs: \nprefix rdf: \nprefix dct: \nprefix np: \nprefix npa: \nprefix npx: \nprefix wd: \nprefix schema: \nprefix pav: \nprefix foaf: \nprefix gen: \n\nselect ?property ?property_label ?value ?value_label where {\n bind(?_resourceNp_iri as ?np)\n graph npa:graph {\n ?np npa:hasValidSignatureForPublicKeyHash ?pubkey .\n filter not exists { ?npx npx:invalidates ?np ; npa:hasValidSignatureForPublicKeyHash ?pubkey . }\n ?np np:hasAssertion ?a .\n ?np npx:introduces ?_resource_iri .\n }\n {\n graph ?a { ?_resource_iri rdf:type ?value }\n filter(?value != wd:Q604733)\n bind(0 as ?sort) bind(rdf:type as ?property) bind(\"Type\" as ?property_label)\n bind(if(?value = gen:PosterPresentation, \"Poster presentation\", \"\") as ?value_label)\n } union {\n graph ?a { ?_resource_iri rdfs:label ?value }\n bind(10 as ?sort) bind(rdfs:label as ?property) bind(\"Title\" as ?property_label)\n } union {\n select ?sort ?property ?property_label\n (group_concat(distinct ?who ; separator=\", \") as ?value)\n where {\n graph npa:graph { ?_resourceNp_iri np:hasAssertion ?spa ; np:hasPublicationInfo ?sppi . }\n graph ?spa { ?_resource_iri wd:P823 ?person }\n optional { graph ?sppi { ?person foaf:name ?pname } }\n optional { graph ?spa { ?person rdfs:label ?plabel } }\n bind(coalesce(?pname, ?plabel, str(?person)) as ?who)\n bind(20 as ?sort) bind(wd:P823 as ?property) bind(\"Speaker\" as ?property_label)\n } group by ?sort ?property ?property_label\n } union {\n select ?sort ?property ?property_label\n (group_concat(distinct ?who ; separator=\", \") as ?value)\n where {\n graph npa:graph { ?_resourceNp_iri np:hasAssertion ?aua ; np:hasPublicationInfo ?aupi . }\n values ?authorPred { pav:authoredBy dct:creator }\n graph ?aua { ?_resource_iri ?authorPred ?person }\n optional { graph ?aupi { ?person foaf:name ?pname } }\n optional { graph ?aua { ?person rdfs:label ?plabel } }\n bind(coalesce(?pname, ?plabel, str(?person)) as ?who)\n bind(30 as ?sort) bind(pav:authoredBy as ?property) bind(\"Authors\" as ?property_label)\n } group by ?sort ?property ?property_label\n } union {\n values ?startPred { schema:startDate dct:date }\n graph ?a { ?_resource_iri ?startPred ?s }\n optional {\n values ?endPred { schema:endDate }\n graph ?a { ?_resource_iri ?endPred ?e }\n }\n bind(40 as ?sort) bind(?startPred as ?property) bind(\"When\" as ?property_label)\n bind(\"January February March April May June July August SeptemberOctober November December \" as ?mtab)\n bind(replace(substr(?mtab, (month(?s) - 1) * 9 + 1, 9), \" +$\", \"\") as ?smon)\n bind(concat(str(day(?s)), \" \", ?smon, \" \", str(year(?s))) as ?sdate)\n bind(if(contains(str(?s), \"T\"), substr(str(?s), 12, 5), \"\") as ?stime)\n bind(if(?stime = \"\", ?sdate, concat(?sdate, \", \", ?stime)) as ?sfull)\n bind(if(bound(?e), replace(substr(?mtab, (month(?e) - 1) * 9 + 1, 9), \" +$\", \"\"), \"\") as ?emon)\n bind(if(bound(?e), concat(str(day(?e)), \" \", ?emon, \" \", str(year(?e))), \"\") as ?edate)\n bind(if(bound(?e), if(contains(str(?e), \"T\"), substr(str(?e), 12, 5), \"\"), \"\") as ?etime)\n bind(if(bound(?e), if(?etime = \"\", ?edate, concat(?edate, \", \", ?etime)), \"\") as ?efull)\n bind(if(!bound(?e), ?sfull,\n if(?sfull = ?efull, ?sfull,\n if(?sdate = ?edate,\n if(?stime = \"\" || ?etime = \"\", ?sdate, concat(?sdate, \", \", ?stime, \"–\", ?etime)),\n concat(?sfull, \" – \", ?efull)))) as ?value)\n } union {\n graph ?a { ?_resource_iri schema:position ?posv }\n {\n select (max(?sibpos) as ?nslot) where {\n graph npa:graph { ?_resourceNp_iri np:hasAssertion ?sa . }\n graph ?sa { ?_resource_iri dct:isPartOf ?sev .\n values ?sStartPred { schema:startDate }\n values ?sLocPred { schema:location }\n ?_resource_iri ?sStartPred ?sst ; ?sLocPred ?sloc . }\n graph npa:graph { ?snp np:hasAssertion ?sa2 ; npx:introduces ?sib .\n filter not exists { ?snewer npx:supersedes ?snp . } }\n graph ?sa2 { ?sib dct:isPartOf ?sev ; ?sStartPred ?sst ; ?sLocPred ?sloc ;\n schema:position ?sibpos . }\n }\n }\n bind(45 as ?sort) bind(schema:position as ?property) bind(\"Order\" as ?property_label)\n bind(if(?posv = 1, \"1st\", if(?posv = 2, \"2nd\", if(?posv = 3, \"3rd\",\n concat(str(?posv), \"th\")))) as ?ord)\n bind(if(?nslot > 1, concat(?ord, \" of \", str(?nslot), \" talks in this session\"),\n concat(?ord, \" talk of its session\")) as ?value)\n } union {\n values ?locPred { schema:location }\n graph ?a { ?_resource_iri ?locPred ?value }\n bind(50 as ?sort) bind(?locPred as ?property) bind(\"Room\" as ?property_label)\n optional { graph ?a { ?value rdfs:label ?value_label } }\n } union {\n graph ?a { ?_resource_iri dct:isPartOf ?value }\n bind(60 as ?sort) bind(dct:isPartOf as ?property) bind(\"Part of\" as ?property_label)\n optional { graph ?a { ?value rdfs:label ?value_label } }\n } union {\n graph ?a { ?_resource_iri dct:description ?value }\n bind(70 as ?sort) bind(dct:description as ?property) bind(\"Description\" as ?property_label)\n } union {\n values ?aboutPred { schema:about }\n graph ?a { ?_resource_iri ?aboutPred ?value }\n bind(80 as ?sort) bind(?aboutPred as ?property) bind(\"Topic\" as ?property_label)\n optional { graph ?a { ?value rdfs:label ?value_label } }\n } union {\n graph ?a { ?_resource_iri rdfs:seeAlso ?value }\n bind(90 as ?sort) bind(rdfs:seeAlso as ?property) bind(\"Link\" as ?property_label)\n } union {\n bind(1000 as ?sort) bind( as ?property)\n bind(\"Defined in\" as ?property_label)\n bind(?_resourceNp_iri as ?value)\n bind(substr(replace(str(?_resourceNp_iri), \"^.*/np/\", \"\"), 1, 10) as ?value_label)\n } union {\n graph ?a { ?_resource_iri ?pred ?value }\n filter(?pred not in (rdf:type, rdfs:label, rdfs:seeAlso, wd:P823, pav:authoredBy, dct:creator,\n dct:date, dct:isPartOf, dct:description,\n schema:startDate, schema:endDate, schema:location, schema:about, schema:position,\n , ,\n , ))\n bind(990 as ?sort) bind(?pred as ?property) bind(str(?pred) as ?property_label)\n optional { graph ?a { ?value rdfs:label ?value_label } }\n }\n}\norder by ?sort ?property ?value" . . "Tobias Kuhn" . "2026-09-07T09:44:15Z"^^ . . . . . "Get presentation details" . . . . . . . "RSA" . "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCwUtewGCpT5vIfXYE1bmf/Uqu1ojqnWdYxv+ySO80ul8Gu7m8KoyPAwuvaPj0lvPtHrg000qMmkxzKhYknEjq8v7EerxZNYp5B3/3+5ZpuWOYAs78UnQVjbHSmDdmryr4D4VvvNIiUmd0yxci47dTFUj4DvfHnGd6hVe5+goqdcwIDAQAB" . "B3ZiEGnZVyhUIhenfcC0LHT1htVG7FkM580UjAeYZL8IXbIAXRZfqgGxpA9ZriwUUPWBtbwH2QoDr+PEGFsHCUFdhbQE+eEJFaXp/Pn8MIjIK0/cf9G26hZsxyoNeClymScu2vw6qe1zeIfeKPgMoM84bJXkvqHG20Z9gB/6o/8=" . . .