dcterms:identifier leaf node


URI

http://purl.org/dc/terms/identifier

Label

Distribution - identifier

Description

This property contains the main identifier for the Distribution, e.g. a UUID or other unique identifier in the context of the Catalogue. - This property contains the main identifier for the Dataset, e.g. a UUID or other unique identifier in the context of the Catalogue. - This property contains the main identifier for the WorkflowExecution, e.g. a UUID or other unique identifier in the context of the Catalogue. - This property contains the main identifier for the TaskExecution, e.g. a UUID or other unique identifier in the context of the Catalogue.

Usage

DOMAINPROPERTYRANGE
klms:WorkflowExecution , dcat:Distribution , klms:TaskExecution , dcat:Dataset dcterms:identifier rdfs:Literal

Implementation

@prefix : <http://stelar-project.eu/klms#> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vann: <http://purl.org/vocab/vann/> .

dcterms:identifier a owl:DatatypeProperty ;
    rdfs:label "Dataset - identifier"@en,
        "Distribution - identifier"@en,
        "TaskExecution - identifier"@en,
        "WorkflowExecution - identifier"@en ;
    dcterms:acrualPeriodicity <http://dublincore.org/documents/dcmi-terms/#terms-identifier> ;
    dcterms:identifier "dct:identifier" ;
    vann:usageNote "Optional property. This property contains the main identifier for the Dataset, e.g. a UUID or other unique identifier in the context of the Catalogue."@en,
        "Optional property. This property contains the main identifier for the Distribution of a Dataset, e.g. a UUID or other unique identifier in the context of the Catalogue."@en,
        "Optional property. This property contains the main identifier for the TaskExecution, e.g. a UUID or other unique identifier in the context of the Catalogue."@en,
        "Optional property. This property contains the main identifier for the WorkflowExecution, e.g. a UUID or other unique identifier in the context of the Catalogue."@en ;
    rdfs:comment "This property contains the main identifier for the Dataset, e.g. a UUID or other unique identifier in the context of the Catalogue."@en,
        "This property contains the main identifier for the Distribution, e.g. a UUID or other unique identifier in the context of the Catalogue."@en,
        "This property contains the main identifier for the TaskExecution, e.g. a UUID or other unique identifier in the context of the Catalogue."@en,
        "This property contains the main identifier for the WorkflowExecution, e.g. a UUID or other unique identifier in the context of the Catalogue."@en ;
    rdfs:domain :TaskExecution,
        :WorkflowExecution,
        dcat:Dataset,
        dcat:Distribution ;
    rdfs:range rdfs:Literal .