@prefix dcterms: .
@prefix this: .
@prefix sub: .
@prefix np: .
@prefix nt: .
@prefix npx: .
@prefix xsd: .
@prefix rdfs: .
@prefix orcid: .
@prefix prov: .
@prefix foaf: .
sub:Head {
this: np:hasAssertion sub:assertion;
np:hasProvenance sub:provenance;
np:hasPublicationInfo sub:pubinfo;
a np:Nanopublication .
}
sub:assertion {
sub:fip-community-domains dcterms:description "This query returns the domains of all FIP communities.";
dcterms:license ;
a ;
rdfs:label "Get FIP community domains";
;
"""prefix rdfs:
prefix np:
prefix npa:
prefix npx:
prefix xsd:
prefix dct:
prefix fip:
select ?domain ?domainlabel (count(distinct ?np) as ?count) where {
graph npa:graph {
?np npa:hasValidSignatureForPublicKey ?pubkey ;
npx:hasNanopubType fip:FAIR-Implementation-Community ;
np:hasAssertion ?a .
?np dct:created ?date . filter(str(?date) > \"2022\")
filter not exists { ?np npx:hasNanopubType npx:ExampleNanopub . }
filter not exists { ?npx npx:invalidates ?np ; npa:hasValidSignatureForPublicKey ?pubkey . }
}
graph ?a {
?community a fip:FAIR-Implementation-Community ;
rdfs:label ?label ;
rdfs:comment ?comment ;
fip:has-research-domain ?domain .
}
graph {
?domain rdfs:label ?domainlabel .
}
}
group by ?domain ?domainlabel
order by desc(?count)""" .
}
sub:provenance {
sub:assertion prov:wasAttributedTo orcid:0000-0002-1267-0234 .
}
sub:pubinfo {
orcid:0000-0002-1267-0234 foaf:name "Tobias Kuhn" .
this: dcterms:created "2025-11-07T07:43:28.910Z"^^xsd:dateTime;
dcterms:creator orcid:0000-0002-1267-0234;
dcterms:license ;
npx:embeds sub:fip-community-domains;
npx:wasCreatedAt ;
nt:wasCreatedFromProvenanceTemplate ;
nt:wasCreatedFromPubinfoTemplate ,
;
nt:wasCreatedFromTemplate .
sub:sig npx:hasAlgorithm "RSA";
npx:hasPublicKey "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQD4Wj537OijfOWVtsHMznuXKISqBhtGDQZfdO6pbb4hg9EHMcUFGTLbWaPrP783PHv8HMAAPjvEkHLaOHMIknqhaIa5236lfBO3r+ljVdYBElBcLvROmwG+ZGtmPNZf7lMhI15xf5TfoaSa84AFRd5J2EXekK6PhaFQhRm1IpSYtwIDAQAB";
npx:hasSignature "1ablEItIyNz5tiflM5rtlmLUx4eZ8Q16IpxSTfQQbw/EaAwrEAhNZC8t2riIx1P/qVb4F9NjgOLqzWCii/cxAlwm09cv33Xg7kp6Alut7DIdqcFosPKispBNRFHkFN7lVVQvzdOA/w3pNz4ny2eEJmeUploG+l1nubU2GALF4Nk=";
npx:hasSignatureTarget this:;
npx:signedBy orcid:0000-0002-1267-0234 .
}