@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 time: <http://www.w3.org/2006/time#> .
@prefix dcterms: <http://purl.org/dc/terms/> .

ec:Rights
  a owl:Class ;
  rdfs:subClassOf [
    a owl:Restriction ;
    owl:onProperty ec:applyTo ;
    owl:allValuesFrom ec:Asset
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasContact ;
    owl:allValuesFrom ec:Contact
  ], [
    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:hasRightsHolder ;
    owl:allValuesFrom ec:Agent
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasRightsTargetService ;
    owl:allValuesFrom ec:PublicationService
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasRightsTerritoryExcludes ;
    owl:allValuesFrom ec:CountryCode
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasRightsTerritoryIncludes ;
    owl:allValuesFrom ec:CountryCode
  ], [
    a owl:Restriction ;
    owl:onProperty ec:originatesFrom ;
    owl:allValuesFrom ec:Contract
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasDuration ;
    owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
    owl:onClass ec:TimelinePoint
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasEndDateTime ;
    owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
    owl:onClass time:Instant
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasStartDateTime ;
    owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
    owl:onClass time:Instant
  ], [
    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:publishingEventsLeft ;
    owl:allValuesFrom xsd:integer
  ], [
    a owl:Restriction ;
    owl:onProperty ec:rightsExpression ;
    owl:allValuesFrom rdfs:Literal
  ], [
    a owl:Restriction ;
    owl:onProperty ec:rightsLink ;
    owl:allValuesFrom xsd:anyURI
  ], [
    a owl:Restriction ;
    owl:onProperty ec:rightsUsageRestrictions ;
    owl:allValuesFrom rdfs:Literal
  ] ;
  dcterms:description "The intellectual property or other contractual (e.g. publication) Rights associated with an Asset, a Contract, or a PublicationEvent. Rights originate from a Contract. Rights are associated with EditorialObjects, MediaResource or Essences through the definition of an Asset. Rights have associated RightsHolders."@en ;
  rdfs:label "Rights"@en .

