@prefix this: <http://example.org/nanopub-validator-example/RAUA0aqlh_wMJRu-iu5zKk0AM3NveGXZntxqi6zw1Hy7E> .
@prefix sub: <http://example.org/nanopub-validator-example/RAUA0aqlh_wMJRu-iu5zKk0AM3NveGXZntxqi6zw1Hy7E#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dc: <http://purl.org/dc/terms/> .
@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/> .
sub:Head {
  this: np:hasAssertion sub:assertion ;
    np:hasProvenance sub:provenance ;
    np:hasPublicationInfo sub:pubinfo ;
    a np:Nanopublication .
}
sub:assertion {
  this: dc:description "This is just an example" .
}
sub:provenance {
  sub:assertion prov:hadPrimarySource <http://orcid.org/0000-0002-1267-0234> .
}
sub:pubinfo {
  this: dc:created "2019-05-02T11:55:11+01:00"^^xsd:dateTime ;
    pav:createdBy <http://orcid.org/0000-0002-1267-0234> ;
    a npx:ExampleNanopub .
}