@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 reg: <http://purl.org/linked-data/registry#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .

dcterms:format a owl:ObjectProperty ;
    rdfs:label "has format"@en ;
    vann:example """
        :my-dataset a fabio:Dataset ;
            dcterms:format <http://publications.europa.eu/resource/authority/file-type/CSV> .
    """ ;
    rdfs:comment "The file format, physical medium, or dimensions of the resource."@en ;
    rdfs:isDefinedBy dcterms: ;
    rdfs:subPropertyOf owl:topObjectProperty ;
    vs:term_status reg:statusStable ;
    skos:note """
Examples of dimensions include size and duration. 
Recommended best practice is to use a controlled vocabulary such as the list of Internet Media Types.
"""@en .

