@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 dcterms: <http://purl.org/dc/terms/> .

ec:Contract
  a owl:Class ;
  rdfs:subClassOf [
    a owl:Restriction ;
    owl:onProperty ec:hasContractLink ;
    owl:allValuesFrom ec:Resource
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasContractRelatedCost ;
    owl:allValuesFrom ec:ContractCost
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasContractTemplate ;
    owl:allValuesFrom ec:Contract
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasContractualParty ;
    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:description ;
    owl:allValuesFrom rdfs:Literal
  ], [
    a owl:Restriction ;
    owl:onProperty ec:name ;
    owl:allValuesFrom rdfs:Literal
  ] ;
  dcterms:description "An agreement between parties or a law concerning the rights and duties in the creation or publication of content. More specific contracts for activities like licensing, buying, ordering, etc., can be defined as subclasses."@en ;
  rdfs:label "Contract"@en ;
  skos:definition "an agreement between ec:Agents or a law concerning the rights and duties in the creation or publication of ec:Assets"@en ;
  skos:example """- a contract between a PSM and a production company for the delivery of a series
- a law about copyrights of news articles"""@en .

