dcterms:conformsTo leaf node


URI

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

Label

Dataset - conforms to

Description

This property refers to an established schema to which the described Distribution conforms. - This property refers to an implementing rule, standard, or other specification.

Usage

DOMAINPROPERTYRANGE
dcat:Dataset , dcat:Distribution dcterms:conformsTo dcterms:Standard

Implementation

@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:conformsTo a owl:ObjectProperty ;
    rdfs:label "Dataset - conforms to"@en,
        "Distribution - linked schemas"@en ;
    dcterms:identifier "dct:conformsTo" ;
    vann:usageNote "Optional property. This property refers to an established schema to which the described Distribution conforms."@en,
        "Optional property. This property refers to an implementing rule, standard, or other specification."@en ;
    rdfs:comment "This property refers to an established schema to which the described Distribution conforms."@en,
        "This property refers to an implementing rule, standard, or other specification."@en ;
    rdfs:domain dcat:Dataset,
        dcat:Distribution ;
    rdfs:isDefinedBy <http://dublincore.org/documents/dcmi-terms/#terms-conformsTo> ;
    rdfs:range dcterms:Standard .