@prefix rdf: . @prefix rdfs: . @prefix dct: . @prefix nt: . @prefix npx: . @prefix orcid: . @prefix ns1: . @prefix foaf: . orcid:0000-0002-0319-6542 foaf:name "Dario Bijker", "Dario Bijker"; rdfs:seeAlso , , , ; , ; , , , ; , , , , , , , , , , , , , , , , , , , , , , , , , ; , , , , ; npx:approvesOf , , , ; , ; ; , , ; ; "2025-09-08"; ; npx:disapprovesOf . npx:declaredBy orcid:0000-0002-0319-6542; npx:hasAlgorithm "RSA"; npx:hasKeyLocation ; npx:hasPublicKey "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCfUo0FLu1y2EeueL40lqkVdm9fTJa6WhF6MhyjhKAagbuaWe1wwyk453ot8KAQ3aHtL3B8Ze/aLf+wHrBhS0nz4wS6urc8ksIzlLCoa9KIfa0JuQunBLFptV0U9fTR8kDlPoB+klNrUfzeCXmkdgnnUiiwBoN+j1eN87XMSHKI3wIDAQAB" . npx:declaredBy orcid:0000-0002-0319-6542; npx:hasAlgorithm "RSA"; npx:hasKeyLocation ; npx:hasPublicKey "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCIiwqq877naEMK2agJna9/EXHFrXlXdsCCQPasFVFtrfowBMbaJC1q1CyQ18etGQXKptGJzqWj9GZ1lq6B9xNaKSPH/6ZKOtUcAHx03My3dK0/l1jTg8I6WqhIzA4wNyiQAt2IQ3bDeAD5lF3m/Yuhtx19/DIrjbcCg/8n4rBJewIDAQAB" . npx:declaredBy orcid:0000-0002-0319-6542; npx:hasAlgorithm "RSA"; npx:hasKeyLocation ; npx:hasPublicKey "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCfUo0FLu1y2EeueL40lqkVdm9fTJa6WhF6MhyjhKAagbuaWe1wwyk453ot8KAQ3aHtL3B8Ze/aLf+wHrBhS0nz4wS6urc8ksIzlLCoa9KIfa0JuQunBLFptV0U9fTR8kDlPoB+klNrUfzeCXmkdgnnUiiwBoN+j1eN87XMSHKI3wIDAQAB" . rdfs:label "GO FAIR Foundation" . rdfs:label "Github" . rdfs:label "Leiden University (LACDR)" . rdfs:label "LinkedIn" . a ; npx:qualifies ; , ; ; ; orcid:0000-0002-0319-6542; "2026-09-14"; "2025-09-15" . a , , , ; "2026-04-15T17:30:00.0+01:00"^^; "2026-04-15T15:00:00.0+01:00"^^; rdfs:label "FIP.38.T.3 | FAIR Implementation Profile Training Session 3"; rdfs:seeAlso ; orcid:0000-0001-6899-760X; orcid:0000-0002-0319-6542, orcid:0000-0002-1297-3104; ; "2.5" . a , ; orcid:0000-0002-0319-6542; orcid:0000-0002-0319-6542; . a , ; orcid:0000-0002-0319-6542; orcid:0000-0002-0319-6542; . a , ; orcid:0000-0002-0319-6542; orcid:0000-0002-0319-6542; . a ; dct:creator orcid:0000-0001-5819-7713, orcid:0000-0001-6301-4248, orcid:0000-0002-0319-6542, orcid:0000-0002-5727-4999, orcid:0000-0003-1062-5576, orcid:0000-0003-2195-3997; dct:date "2026-03-26"^^; dct:description "Nanopublications provide a flexible, interoperable mechanism for representing FIPs and FSRs. Transforming the existing FSR metadata schema into a formal FDO Profileis the next essential step. Combined with SHACL and linked data, nanopubs can fully support FAIR Digital Object implementations."; dct:isPartOf ; rdfs:label "FDO Nanopublications for FAIR Supporting Resources"; rdfs:seeAlso ; . a , ; orcid:0000-0002-0319-6542; orcid:0000-0002-0319-6542; . a , ; orcid:0000-0002-0319-6542; orcid:0000-0002-0319-6542; . a ; dct:description "Returns a list of all events related to the Three Point FAIRification Framework (3PFF)"; dct:license ; rdfs:label "Get 3PFF Events"; ; """prefix rdfs: prefix np: prefix npa: prefix npx: prefix xsd: prefix dct: prefix prov: prefix tpff: prefix schema: select (?event as ?Event_ID) (?eventShortName as ?Event_ID__label) (?eventLongName as ?Event_Name) (?eventDate as ?Date) (group_concat(distinct ?eventOrganizer; separator=\" \") as ?Organizers) (group_concat(distinct ?eventFacilitator; separator=\" \") as ?Facilitators) (group_concat(distinct ?eventMoreInfoLink; separator=\" \") as ?More_Info) (?np as ?Source) where { graph npa:graph { ?np npa:hasValidSignatureForPublicKey ?pubkey . ?np dct:created ?npDate . ?np dct:creator ?npCreator . ?np np:hasAssertion ?assertion . ?np npx:introduces ?event . filter not exists { ?npx npx:invalidates ?np ; npa:hasValidSignatureForPublicKey ?pubkey . } } graph ?assertion { ?event a tpff:3PFF-event . ?event rdfs:label ?eventName . # Date Handling: Check for both predicates optional { ?event dct:date ?dateDct . } optional { ?event schema:startDate ?dateSchema . } bind(coalesce(?dateDct, strBefore(str(?dateSchema), \"T\")) as ?eventDate) bind(replace(str(?eventName), ' ?\\\\|.*$', '') as ?eventShortName) bind(replace(str(?eventName), '^([A-Z0-9]{2,3}).*$', '$1') as ?eventSeries) bind(replace(str(?eventName), '^.*\\\\| ?(.*)$', '$1') as ?eventLongName) optional { ?event tpff:has-event-organizer ?eventOrganizer . } optional { ?event tpff:has-event-facilitator ?eventFacilitator . } optional { ?event rdfs:seeAlso ?eventMoreInfoLink . } } } group by ?event ?eventShortName ?eventLongName ?eventDate ?np order by desc(?eventDate)""" . a , , , ; dct:date "2026-02-19"; rdfs:label "MUSICC FIP Workshop day 1"; rdfs:seeAlso ; "16.00 (CET)"; "10.00 (CET)"; orcid:0009-0003-5409-652X; orcid:0000-0002-0319-6542, orcid:0000-0003-2195-3997; ; ; "6" . a ; dct:description "This query returns all user stories."; dct:license ; rdfs:label "Get user stories"; ; """PREFIX rdfs: PREFIX np: PREFIX npa: PREFIX npx: PREFIX xsd: PREFIX dct: PREFIX prov: SELECT ?n1 ?label ?thing ?date where { GRAPH npa:graph { ?n1 npx:introduces ?thing . ?n1 npx:hasNanopubType . ?n1 npa:hasValidSignatureForPublicKey ?pubkey . filter not exists { ?np2 npx:invalidates ?n1 ; npa:hasValidSignatureForPublicKey ?pubkey . } ?n1 dct:created ?date . ?n1 rdfs:label ?label . } }""" . a ; dct:description "This query returns all user stories."; dct:license ; rdfs:label "Get user stories"; ; """PREFIX rdfs: PREFIX np: PREFIX npa: PREFIX npx: PREFIX xsd: PREFIX dct: PREFIX prov: SELECT ?n1 ?label ?thing ?date where { GRAPH npa:graph { ?n1 npx:introduces ?thing . ?n1 npx:hasNanopubType . ?n1 npa:hasValidSignatureForPublicKey ?pubkey . filter not exists { ?np2 npx:invalidates ?n1 ; npa:hasValidSignatureForPublicKey ?pubkey . } ?n1 dct:created ?date . ?n1 rdfs:label ?label . } }""" . a , , , ; dct:date "2025-10-23"; rdfs:label "M4M.44.T.6 | FAIR2Adapt Vocabulary training session 6"; rdfs:seeAlso ; "11:00 (CEST)"; "09:00 (CEST)"; orcid:0000-0002-6396-0848; orcid:0000-0003-0454-7145, orcid:0000-0003-2195-3997; ; ; "2" . a , , , ; dct:date "2025-10-30"; rdfs:label "M4M.44.T.7 | FAIR2Adapt Vocabulary training session 7"; rdfs:seeAlso ; "11:00 (CEST)"; "09:00 (CEST)"; orcid:0000-0003-3744-7781; orcid:0000-0002-1267-0234, orcid:0000-0003-1062-5576, orcid:0000-0003-2195-3997; ; ; ; "2" . a , , , ; dct:date "2025-10-27"; rdfs:label "FIP.35.T.5 | FAIR2Adapt FIP Training Session 5"; rdfs:seeAlso ; "11:00"; "09:00"; orcid:0000-0002-0319-6542; orcid:0000-0002-5727-4999, orcid:0000-0003-1062-5576; ; ; ; "2" . a , , , ; dct:date "2025-10-16"; rdfs:label "M4M.44.T.5 | FAIR2Adapt Vocabulary training session 5"; rdfs:seeAlso ; "11:00 (CEST)"; "09:00 (CEST)"; orcid:0000-0002-5727-4999; orcid:0000-0003-0454-7145, orcid:0000-0003-2195-3997; ; ; ; "2" . npx:qualifies , , , , . dct:identifier rdfs:label "has identifier" . rdfs:comment rdfs:label "has description" . rdfs:label rdfs:label "has label" . rdfs:label "has research domain" . a nt:IntroducedResource, nt:LocalResource, nt:UriPlaceholder; rdfs:label "Case Study" . a nt:RestrictedChoicePlaceholder; nt:possibleValuesFrom ns1:RACXDZHEowTYDAzZvdmD0qIGpXZwY5ghMRBBlt6N8Iu5s . a nt:LiteralPlaceholder; rdfs:label "Lead Institution Name" . a nt:ExternalUriPlaceholder . a nt:LiteralPlaceholder; rdfs:label "Other Partners" . a nt:ExternalUriPlaceholder . a nt:AssertionTemplate, nt:UnlistedTemplate; dct:description "Template for defining a Case study"; rdfs:label "Practice CS template M4M course 1"; nt:hasStatement , , , , . a nt:LiteralPlaceholder . a nt:LiteralPlaceholder . rdf:object ; rdf:predicate rdfs:label; rdf:subject . a nt:GroupedStatement; nt:hasStatement , , . a nt:GroupedStatement, nt:OptionalStatement, nt:RepeatableStatement; nt:hasStatement , , . rdf:object ; rdf:predicate rdfs:comment; rdf:subject . rdf:object ; rdf:predicate rdfs:label; rdf:subject . a nt:OptionalStatement; rdf:object ; rdf:predicate dct:identifier; rdf:subject . rdf:object ; rdf:predicate ; rdf:subject . rdf:object ; rdf:predicate rdfs:label; rdf:subject . a nt:OptionalStatement; rdf:object ; rdf:predicate dct:identifier; rdf:subject . rdf:object ; rdf:predicate ; rdf:subject . a nt:RepeatableStatement; rdf:object ; rdf:predicate ; rdf:subject . rdfs:label "has contact point" . a , , , ; dct:creator ; ; rdfs:comment "Chemical Entities of Biological Interest (ChEBI) is a freely available dictionary of molecular entities focused on ‘small’ chemical compounds."; rdfs:label "ChEBI | Chemical Entities of Biological Interest"; rdfs:seeAlso ; ; . a , , , ; dct:date "2025-02-13"; rdfs:label "FIP.33.T.7 | FAIR Implementation Profile Training 7"; rdfs:seeAlso ; "18:00 CET"; "16:00 CET"; orcid:0000-0002-3462-0967; orcid:0000-0001-8888-635X, orcid:0000-0003-2195-3997; ; "2" .