@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix : <https://w3id.org/eepsa/exn4eepsa#> .
@prefix terms: <http://purl.org/dc/terms/> .
@prefix ns: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix bibo: <http://purl.org/ontology/bibo/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix ns1: <http://creativecommons.org/ns#> .

ns1:license
    a owl:AnnotationProperty .

terms:contributor
    a owl:AnnotationProperty .

terms:created
    a owl:AnnotationProperty .

terms:creator
    a owl:AnnotationProperty .

terms:description
    a owl:AnnotationProperty .

terms:issued
    a owl:AnnotationProperty .

terms:modified
    a owl:AnnotationProperty .

terms:title
    a owl:AnnotationProperty .

bibo:status
    a owl:AnnotationProperty .

vann:preferredNamespacePrefix
    a owl:AnnotationProperty .

vann:preferredNamespaceUri
    a owl:AnnotationProperty .

<http://purl.org/vocommons/voaf#Vocabulary>
    a owl:Class .

ns:term_status
    a owl:AnnotationProperty .

<https://w3id.org/eep#Execution>
    a owl:Class .

<https://w3id.org/eepsa/exn4eepsa>
    ns1:license <https://creativecommons.org/licenses/by-nc/4.0/> ;
    terms:contributor """Izaskun Fernandez <mailto:izaskun.fernandez@tekniker.es>
Aitor Arnaiz <mailto:aitor.arnaiz@tekniker.es>"""^^xsd:string ;
    terms:created "2018-08-21"^^xsd:string ;
    terms:creator """Iker Esnaola-Gonzalez <mailto:iker.esnaola@tekniker.es>
Jesús Bermúdez <mailto:jesus.bermudez@ehu.eus>"""^^xsd:string ;
    terms:description "This ontology module describes the Execution terminology under the eep:Execution class for the EEPSA Ontology."@en ;
    terms:issued "2019-01-21"^^xsd:string ;
    terms:modified "2021-01-18"^^xsd:string ;
    terms:title "Execution ontology module for the EEPSA Ontology"^^xsd:string ;
    bibo:status "Work in Progress"@en ;
    vann:preferredNamespacePrefix "exn4eepsa"@en ;
    vann:preferredNamespaceUri <https://w3id.org/eepsa/exn4eepsa> ;
    a owl:Ontology ;
    owl:versionInfo 1.4 .

:Actuation
    a owl:Class ;
    rdfs:comment "An execution made by an actuator implementing an actuating procedure."@en ;
    rdfs:isDefinedBy <https://w3id.org/eepsa/exn4eepsa> ;
    rdfs:label "Actuation"@en ;
    rdfs:subClassOf <https://w3id.org/eep#Execution> ;
    ns:term_status "stable"^^xsd:string .

:CollectionOfExecutions
    a owl:Class ;
    rdfs:comment "A collection of executions"@en ;
    rdfs:isDefinedBy <https://w3id.org/eepsa/exn4eepsa> ;
    rdfs:label "Collection of Executions"@en ;
    ns:term_status "stable"^^xsd:string .

:Forecast
    a owl:Class ;
    rdfs:comment "An observation estimated by a predictive model implementing a predictive procedure."@en ;
    rdfs:isDefinedBy <https://w3id.org/eepsa/exn4eepsa> ;
    rdfs:label "Forecast"@en ;
    rdfs:subClassOf :Observation ;
    ns:term_status "stable"^^xsd:string .

:Imputation
    a owl:Class ;
    rdfs:comment "An observation estimated by an imputation method implementing an imputation procedure."@en ;
    rdfs:isDefinedBy <https://w3id.org/eepsa/exn4eepsa> ;
    rdfs:label "Imputation"@en ;
    rdfs:subClassOf :Observation ;
    ns:term_status "stable"^^xsd:string .

:MissingValue
    a owl:Class ;
    rdfs:comment "An empty or null event for attributes where a value should have been recorded"@en ;
    rdfs:isDefinedBy <https://w3id.org/eepsa/exn4eepsa> ;
    rdfs:label "Missing Value"@en ;
    rdfs:subClassOf <https://w3id.org/eep#Execution> ;
    ns:term_status "stable"^^xsd:string .

:Observation
    a owl:Class ;
    rdfs:comment "An execution made by an executor to estimate or calculate a quality of a feature of interest"@en ;
    rdfs:isDefinedBy <https://w3id.org/eepsa/exn4eepsa> ;
    rdfs:label "Observation"@en ;
    rdfs:subClassOf <https://w3id.org/eep#Execution> ;
    ns:term_status "stable"^^xsd:string .

:Outlier
    a owl:Class ;
    rdfs:comment "An observation that stands out amongst other observations and does not conform to the expected behaviour"@en ;
    rdfs:isDefinedBy <https://w3id.org/eepsa/exn4eepsa> ;
    rdfs:label "Outlier"@en ;
    rdfs:subClassOf :Observation ;
    ns:term_status "stable"^^xsd:string .

:hasMember
    a owl:ObjectProperty ;
    rdfs:comment "Relation that links a collection of executions to an execution belonging to that collection."@en ;
    rdfs:domain :CollectionOfExecutions ;
    rdfs:isDefinedBy <https://w3id.org/eepsa/exn4eepsa> ;
    rdfs:label "has member"@en ;
    rdfs:range <https://w3id.org/eep#Execution> ;
    owl:inverseOf :isMemberOf ;
    ns:term_status "stable"^^xsd:string .

:isMemberOf
    a owl:ObjectProperty ;
    rdfs:comment "Relation that links an execution to the collection of executions it belongs to."@en ;
    rdfs:domain <https://w3id.org/eep#Execution> ;
    rdfs:isDefinedBy <https://w3id.org/eepsa/exn4eepsa> ;
    rdfs:label "is member of"@en ;
    rdfs:range :CollectionOfExecutions ;
    ns:term_status "stable"^^xsd:string .

