@prefix this: <http://example.org/nanopub-validator-example/RAUpJFPNz5BnXlWgORqyr33x8jfi_Q5QhdzVVwxrDCEt8> .
@prefix sub: <http://example.org/nanopub-validator-example/RAUpJFPNz5BnXlWgORqyr33x8jfi_Q5QhdzVVwxrDCEt8#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix pav: <http://purl.org/pav/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix npx: <http://purl.org/nanopub/x/> .
@prefix ex: <http://example.org/> .
sub:Head {
  this: np:hasAssertion sub:assertion ;
    np:hasProvenance sub:provenance ;
    np:hasPublicationInfo sub:pubinfo ;
    a np:Nanopublication .
}
sub:assertion {
  ex:The-Personal-Health-Train ex:enables ex:the-reuse-of-distributed-healthcare-data .
}
sub:provenance {
  sub:assertion prov:hadPrimarySource <http://dx.doi.org/10.1162/dint_a_00032> ;
    prov:wasAttributedTo <https://orcid.org/0000-0001-7611-3501> .
}
sub:pubinfo {
  this: dcterms:created "2021-03-07T18:05:11+01:00"^^xsd:dateTime ;
    dcterms:rights <https://creativecommons.org/licenses/by/4.0/> ;
    pav:createdBy <https://orcid.org/0000-0002-8549-3945> ;
    a npx:ExampleNanopub .
}