@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 xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .

ec:Essence
  a owl:Class ;
  rdfs:subClassOf ec:MediaResource, [
    a owl:Restriction ;
    owl:onProperty ec:hasRelatedPublicationEvent ;
    owl:allValuesFrom ec:PublicationEvent
  ], [
    a owl:Restriction ;
    owl:onProperty ec:isComposedOf ;
    owl:allValuesFrom ec:MediaResource
  ], [
    a owl:Restriction ;
    owl:onProperty ec:readyForPublication ;
    owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
    owl:onDataRange xsd:boolean
  ] ;
  dcterms:description "The actual physical representation of one or more MediaResource edited for consumption. The Essence is a physical representation of a MediaResource in a particular Format destined for play-out or publishing. \"Essence is a subclass of a MediaResource and inherits the MediaResource properties. Essence can be available in a form of a simple file or complex packages (e.g. as delivered by cameras of different brands)."@en ;
  rdfs:label "Essence"@en ;
  skos:definition "a MediaResource in the form of a simple file or a complex file package for play-out or publishing"@en ;
  skos:example """- a mxf file
- a file package delivered by a camera of a specific brand"""@en .

