dcterms:mediaType leaf node


URI

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

Label

Distribution - media type

Description

This property refers to the media type of the Distribution if this is defined in IANA.

Usage

DOMAINPROPERTYRANGE
dcat:Distribution dcterms:mediaType dcterms:MediaType

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:mediaType a owl:ObjectProperty ;
    rdfs:label "Distribution - media type"@en ;
    dcterms:identifier "dcat:mediaType" ;
    vann:usageNote "Optional property. Subproperty of dct:format. This property refers to the media type of the Distribution if this is defined in IANA."@en ;
    rdfs:comment "This property refers to the media type of the Distribution if this is defined in IANA."@en ;
    rdfs:domain dcat:Distribution ;
    rdfs:isDefinedBy <http://dublincore.org/documents/dcmi-terms/#terms-mediaType> ;
    rdfs:range dcterms:MediaType .