@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 dcterms: <http://purl.org/dc/terms/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .

ec:AuditJob
  a owl:Class ;
  rdfs:subClassOf ec:ProductionJob, [
    a owl:Restriction ;
    owl:onProperty ec:hasAuditJobRelatedAuditReport ;
    owl:allValuesFrom ec:AuditReport
  ], [
    a owl:Restriction ;
    owl:onProperty ec:usesMeasure ;
    owl:allValuesFrom ec:Measure
  ] ;
  dcterms:description "The assessment of compliance is made against a Measure associated with a Rule via an AuditJob."@en ;
  rdfs:label "Audit Job"@en ;
  skos:definition "assessment of compliance against a Measure"@en ;
  skos:example """- measuring the maximum volume level in the audio track of a video file
- measuring the share of speaker time in a debate of the candidates before an election
- measuring the share of male/females experts across all programmes of a publication service"""@en .

