You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here a string literal is used but I doubt that it is allowed by dublin core (although the vocpub profile allows it).
Instead with dct:provenance labels should be of dct:ProvenanceStatement (if I understand correctly), like so:
@prefix dct: <http://purl.org/dc/terms/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix nmah: <http://example.org/nmah/> .
@prefix ex: <http://example.org/> .
ex:digital_image
a dct:Image ;
dct:provenance [
a dct:ProvenanceStatement ;
dct:source nmah:original_photograph ;
dct:created "2022-01-15T00:00:00Z"^^xsd:dateTime ;
dct:modified "2022-02-01T00:00:00Z"^^xsd:dateTime ;
dct:description "Image was processed and metadata was added by Jane Smith, Curator of Photography at the National Museum of American History."@en
] .
nmah:original_photograph
a dct:PhysicalObject ;
dct:title "Original Photograph held in the collection of the National Museum of American History, Smithsonian Institution."@en .
Definition: A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation.
Comment: The statement may include a description of any changes successive custodians made to the resource.
Definition: Any changes in ownership and custody of a resource since its creation that are significant for its authenticity, integrity, and interpretation.
The text was updated successfully, but these errors were encountered:
actor can be a GitHub name, an ORCID-number or an ORCID-url. The space separates the actor from the note (spaces are forbidden in GitHub names and in URLs). New provenance "records" should be appended at the end.
@nmoust This is not a real fix to this issue but it makes the provenance field more usable now.
New versions of the vocpub profile (starting with 3.1) solve this issue by using skos:historyNote to store the provenance note as literal. Here we use a pre-3.0-version of the vocpub profile for all voc4cat-tool releases <0.8.0.
This issue is inherited from vocexcel.
An example from VocExcel that I believe is not correct (from eg-valid.ttl).
Here a string literal is used but I doubt that it is allowed by dublin core (although the vocpub profile allows it).
Instead with
dct:provenance
labels should be ofdct:ProvenanceStatement
(if I understand correctly), like so:What is specified exactly in dublin core?
dct:provenance:
dct:ProvenanceStatement:
The text was updated successfully, but these errors were encountered: