https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU/Head
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU
http://www.nanopub.org/nschema#hasAssertion
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU/assertion
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU
http://www.nanopub.org/nschema#hasProvenance
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU/provenance
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU
http://www.nanopub.org/nschema#hasPublicationInfo
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU/pubinfo
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU
http://www.w3.org/1999/02/22-rdf-syntax-ns#type
http://www.nanopub.org/nschema#Nanopublication
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU/assertion
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU/get-evidence-items-of-kind
http://purl.org/dc/terms/description
Returns every evidence item of one given kind reported by the ZonMw projects, one row per item, with the project it belongs to and the study that generated it. It is the drill-down behind the 'Evidence and Arguments' overview of a space: that view gives one row per evidence kind with a count of items and projects, and this one lists the items behind a single count. The kind is taken from the resource the view is shown on, so following an evidence kind from the overview opens exactly its own items. An evidence item is a resource carrying the given type that was generated by an investigation (OBI_0000066) which declares itself part of a project. Only nanopublications signed by a current admin, maintainer or member of a ZonMw space are listed, and invalidated, superseded and example nanopublications are skipped, so the item counts here agree with the counts shown in the overview. The member public keys are collected in a single federated sub-select that shares no variables with the rest of the query, so the federation runs once rather than once per result row. Scope is deliberately fixed to projects under w3id.org/spaces/zonmw: a part-level view receives only the resource it is shown on and not the space the reader came from, so the scope cannot be inferred and is stated instead.
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU/get-evidence-items-of-kind
http://purl.org/dc/terms/license
http://www.apache.org/licenses/LICENSE-2.0
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU/get-evidence-items-of-kind
http://www.w3.org/1999/02/22-rdf-syntax-ns#type
https://w3id.org/kpxl/grlc/grlc-query
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU/get-evidence-items-of-kind
http://www.w3.org/2000/01/rdf-schema#label
Get the evidence items of a given kind across the ZonMw projects
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU/get-evidence-items-of-kind
https://w3id.org/kpxl/grlc/endpoint
https://w3id.org/np/l/nanopub-query-1.1/repo/full
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU/get-evidence-items-of-kind
https://w3id.org/kpxl/grlc/sparql
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/>
prefix prov: <http://www.w3.org/ns/prov#>
prefix dct: <http://purl.org/dc/terms/>
prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>
select ?evidence ?evidence_label ?project ?project_label ?study ?study_label ?np ("^" as ?np_label)
where {
values ?_evidence_type_multi_iri {}
{
select (group_concat(?mpk; separator=" ") as ?memberPubkeys) where {
service <https://w3id.org/np/l/nanopub-query-1.1/repo/spaces> {
select ?mpk where {
graph npa:graph { <http://purl.org/nanopub/admin/thisRepo> npa:hasCurrentSpaceState ?stateG . }
graph ?stateG {
?ri a gen:RoleInstantiation ; npa:forSpace ?sp ; npa:forAgent ?agent ; npa:hasRoleType ?roleType .
filter(?roleType in (gen:AdminRole, gen:MaintainerRole, gen:MemberRole))
?acct a npa:AccountState ; npa:agent ?agent ; npa:pubkey ?mpk .
}
filter(strstarts(str(?sp), "https://w3id.org/spaces/zonmw"))
}
}
}
}
graph npa:graph {
?np np:hasAssertion ?a ; npa:hasValidSignatureForPublicKeyHash ?evPk .
filter not exists { ?evInv npx:invalidates ?np ; npa:hasValidSignatureForPublicKeyHash ?evPk }
filter not exists { ?evSup npx:supersedes ?np }
filter not exists { ?np npx:hasNanopubType npx:ExampleNanopub }
}
filter(contains(?memberPubkeys, ?evPk))
graph ?a { ?evidence a ?_evidence_type_multi_iri ; prov:wasGeneratedBy ?study . }
optional { graph ?a { ?evidence rdfs:label ?evLabel } }
graph npa:graph {
?studyNp np:hasAssertion ?studyA ; npa:hasValidSignatureForPublicKeyHash ?stPk .
filter not exists { ?stInv npx:invalidates ?studyNp ; npa:hasValidSignatureForPublicKeyHash ?stPk }
filter not exists { ?stSup npx:supersedes ?studyNp }
}
filter(contains(?memberPubkeys, ?stPk))
graph ?studyA { ?study dct:isPartOf ?project . }
filter(strstarts(str(?project), "https://w3id.org/spaces/zonmw/"))
optional { graph ?studyA { ?study rdfs:label ?stLabel } }
bind(coalesce(?evLabel, "") as ?evidence_label)
bind(coalesce(?stLabel, "") as ?study_label)
bind(replace(str(?project), "^.*/", "") as ?project_label)
}
order by ?project_label ?evidence_label
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU/provenance
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU/assertion
http://www.w3.org/ns/prov#wasAttributedTo
https://orcid.org/0000-0002-1267-0234
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU/pubinfo
https://orcid.org/0000-0002-1267-0234
http://xmlns.com/foaf/0.1/name
Tobias Kuhn
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU
http://purl.org/dc/terms/created
2026-09-08T09:57:53Z
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU
http://purl.org/dc/terms/creator
https://orcid.org/0000-0002-1267-0234
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU
http://purl.org/dc/terms/license
https://creativecommons.org/licenses/by/4.0/
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU
http://purl.org/nanopub/x/embeds
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU/get-evidence-items-of-kind
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU
http://www.w3.org/2000/01/rdf-schema#label
Get the evidence items of a given kind across the ZonMw projects
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU
http://www.w3.org/ns/prov#wasDerivedFrom
https://w3id.org/np/RA3Bibj-SEbTRHYyqv60HmhPJspHO8AI9hUWtXBKIBtSY
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU
https://w3id.org/np/o/ntemplate/wasCreatedFromProvenanceTemplate
https://w3id.org/np/RA7lSq6MuK_TIC6JMSHvLtee3lpLoZDOqLJCLXevnrPoU
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU
https://w3id.org/np/o/ntemplate/wasCreatedFromPubinfoTemplate
https://w3id.org/np/RACJ58Gvyn91LqCKIO9zu1eijDQIeEff28iyDrJgjSJF8
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU
https://w3id.org/np/o/ntemplate/wasCreatedFromPubinfoTemplate
https://w3id.org/np/RARW4MsFkHuwjycNElvEVtuMjpf4yWDL10-0C5l2MqqRQ
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU
https://w3id.org/np/o/ntemplate/wasCreatedFromPubinfoTemplate
https://w3id.org/np/RAukAcWHRDlkqxk7H2XNSegc1WnHI569INvNr-xdptDGI
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU
https://w3id.org/np/o/ntemplate/wasCreatedFromTemplate
https://w3id.org/np/RAEFAt-QcFK0ZhqfvlsmS10BnzGJA0xwOICZXkO-ai87k
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU/sig
http://purl.org/nanopub/x/hasAlgorithm
RSA
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU/sig
http://purl.org/nanopub/x/hasPublicKey
MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCwUtewGCpT5vIfXYE1bmf/Uqu1ojqnWdYxv+ySO80ul8Gu7m8KoyPAwuvaPj0lvPtHrg000qMmkxzKhYknEjq8v7EerxZNYp5B3/3+5ZpuWOYAs78UnQVjbHSmDdmryr4D4VvvNIiUmd0yxci47dTFUj4DvfHnGd6hVe5+goqdcwIDAQAB
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU/sig
http://purl.org/nanopub/x/hasSignature
jgxmKopmxO/rvh0sGXQbdWrRH+Jk+/0DQEmmcpoqOqdkDpovevYUoYsCc6YnxtXKNdYiRk86ES3PdjDytfL2cVQrEOwceAUATIquNM/DAG8upnNIbVg1xSNZ15Cs5l6Bnw/CkZfh60TLbFTPs0tXoGRq9GHlFGJFAsrirADbc/8=
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU/sig
http://purl.org/nanopub/x/hasSignatureTarget
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU
https://w3id.org/np/RAH013qvkokfCL8wbhevFdpcaC0oYY4UvuLIczfaQD6cU/sig
http://purl.org/nanopub/x/signedBy
https://orcid.org/0000-0002-1267-0234