@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:ConsumptionLicence
  a owl:Class ;
  rdfs:subClassOf [
    a owl:Restriction ;
    owl:onProperty ec:coversConsumptionDevice ;
    owl:allValuesFrom ec:ConsumptionDevice
  ], [
    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:hasConsumptionLicenceLink ;
    owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
    owl:onClass ec:Contract
  ], [
    a owl:Restriction ;
    owl:onProperty ec:description ;
    owl:allValuesFrom rdfs:Literal
  ], [
    a owl:Restriction ;
    owl:onProperty ec:name ;
    owl:allValuesFrom rdfs:Literal
  ], [
    a owl:Restriction ;
    owl:onProperty ec:consumptionLicenceText ;
    owl:maxCardinality "1"^^xsd:nonNegativeInteger
  ] ;
  dcterms:description "A permit attributed to a consumer defines the terms of content consumption within a media service. E.g., the licence is verified by a mechanism often located in the device, referred to as DRM (Digital Rights Management). Age-restricted content can be consumed only after the consumer verifies their age."@en ;
  rdfs:label "Consumption licence"@en ;
  skos:definition "a permit attributed to a ec:Consumer that defines the terms of use for a ec:PublicationService or a ec:PublicationEvent of an ec:EditorialObject"@en ;
  skos:example """- a subscription to unlimited streaming from spotify, encompassing 3 devices
- a 3 month test subscription to a VoD service
- the entitlement to consume free-to-air broadcast services as the resident of a country"""@en .

