@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:ConsumptionDevice
  a owl:Class ;
  rdfs:subClassOf [
    a owl:Restriction ;
    owl:onProperty ec:compliesWith ;
    owl:allValuesFrom ec:ConsumptionDeviceProfile
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasConsumptionDeviceManufacturer ;
    owl:allValuesFrom ec:Agent
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasIdentifier ;
    owl:allValuesFrom ec:Identifier
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasObjectType ;
    owl:allValuesFrom skos:Concept
  ], [
    a owl:Restriction ;
    owl:onProperty ec:renders ;
    owl:allValuesFrom ec:Essence
  ], [
    a owl:Restriction ;
    owl:onProperty ec:consumptionDeviceBrand ;
    owl:allValuesFrom xsd:string
  ], [
    a owl:Restriction ;
    owl:onProperty ec:consumptionDeviceBrowser ;
    owl:allValuesFrom xsd:string
  ], [
    a owl:Restriction ;
    owl:onProperty ec:consumptionDeviceModel ;
    owl:allValuesFrom xsd:string
  ], [
    a owl:Restriction ;
    owl:onProperty ec:consumptionDeviceOS ;
    owl:allValuesFrom xsd:string
  ], [
    a owl:Restriction ;
    owl:onProperty ec:description ;
    owl:allValuesFrom rdfs:Literal
  ], [
    a owl:Restriction ;
    owl:onProperty ec:name ;
    owl:allValuesFrom rdfs:Literal
  ] ;
  dcterms:description "A device used to consume content."@en ;
  rdfs:label "Consumption Device"@en ;
  skos:definition "a device for using media services"@en ;
  skos:example """- a smartphone
- a smart TV
- a fm radio set
- a beamer fed with a media signal and projecting onto a screen"""@en .

