@prefix ec: <http://www.ebu.ch/metadata/ontologies/ebucoreplus#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .

ec:Format
  a owl:Class ;
  rdfs:subClassOf skos:Concept, [
    a owl:Restriction ;
    owl:onProperty ec:hasFormatId ;
    owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
    owl:onClass ec:Identifier
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasFormatVersionId ;
    owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
    owl:onClass ec:Identifier
  ] ;
  dcterms:description "An entry from the classification of types of formats, that can also be more specific like audio / video / image / document / data and container formats. A format can be globally associated with a resource but more specific formats can also be distinctly associated with a more specific resource."@en ;
  rdfs:label "Format"@en ;
  skos:definition "a skos:Concept classifying the technical format of a ec:Resource"@en .

