@prefix this: <http://example.org/nanopub-validator-example/RAr5L5H8mHxwaOK8VnLrSNuSiG7UfflOVhrJoEeGXAstw> .
@prefix sub: <http://example.org/nanopub-validator-example/RAr5L5H8mHxwaOK8VnLrSNuSiG7UfflOVhrJoEeGXAstw#> .
@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/> .
@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:this a ex:testtest .
}
sub:provenance {
  sub:assertion prov:hadPrimarySource <http://dx.doi.org/10.3233/ISU-2010-0613> .
}
sub:pubinfo {
  this: dc:created "2019-01-25T13:47:11+01:00"^^xsd:dateTime ;
    pav:createdBy <http://orcid.org/0000-0002-1267-0234> ;
    a npx:ExampleNanopub .
}