@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:OnStagePosition
  a owl:Class ;
  rdfs:subClassOf [
    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:hasRelatedStage ;
    owl:allValuesFrom ec:Stage
  ], [
    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:onStagePositionCoordinateX ;
    owl:allValuesFrom xsd:float
  ], [
    a owl:Restriction ;
    owl:onProperty ec:onStagePositionCoordinateY ;
    owl:allValuesFrom xsd:float
  ], [
    a owl:Restriction ;
    owl:onProperty ec:onStagePositionCoordinateZ ;
    owl:allValuesFrom xsd:float
  ], [
    a owl:Restriction ;
    owl:onProperty ec:onStagePositionCoordinatesReferencePoint ;
    owl:allValuesFrom rdfs:Literal
  ] ;
  dcterms:description "To define the Position of a ProductionDevice or Agent on Stage."@en ;
  rdfs:label "On Stage Position"@en .

