@prefix on: <https://test.uncefact.org/vocabulary/object-nature/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <https://schema.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix ts: <https://test.uncefact.org/vocabulary/term-status/> .
@prefix unece: <https://test.uncefact.org/vocabulary/> .
@prefix unece-mod: <https://test.uncefact.org/vocabulary/module/> .

unece:geoLocation a owl:ObjectProperty ;
    rdfs:label "geo location"@en ;
    rdfs:isDefinedBy unece-mod:production ;
    skos:definition "The geographic coordinate of the sensor reading."@en ;
    schema:domainIncludes unece:SensorData ;
    schema:rangeIncludes unece:Coordinate ;
    unece:termStatus ts:proposed .

unece:measuredValue a owl:ObjectProperty ;
    rdfs:label "measured value"@en ;
    rdfs:isDefinedBy unece-mod:conformity ;
    skos:definition "The measured value of a performance or sensor reading."@en ;
    schema:domainIncludes unece:Performance,
        unece:SensorData ;
    schema:rangeIncludes unece:Measure ;
    unece:termStatus ts:proposed .

unece:metric a owl:ObjectProperty ;
    rdfs:label "metric"@en ;
    rdfs:isDefinedBy unece-mod:conformity ;
    skos:definition "The performance metric the value is reported against; a code from the performance-metrics taxonomy."@en ;
    schema:domainIncludes unece:Performance,
        unece:SensorData ;
    schema:rangeIncludes <https://test.uncefact.org/vocabulary/performance-metrics/> ;
    unece:termStatus ts:proposed .

unece:rawData a owl:ObjectProperty ;
    rdfs:label "raw data"@en ;
    rdfs:isDefinedBy unece-mod:production ;
    skos:definition "A link to the raw sensor data."@en ;
    schema:domainIncludes unece:SensorData ;
    schema:rangeIncludes unece:Link ;
    unece:termStatus ts:proposed .

unece:sensor a owl:ObjectProperty ;
    rdfs:label "sensor"@en ;
    rdfs:isDefinedBy unece-mod:production ;
    skos:definition "The product/device acting as the sensor."@en ;
    schema:domainIncludes unece:SensorData ;
    schema:rangeIncludes unece:Product ;
    unece:termStatus ts:proposed .

unece:SensorData a owl:Class ;
    rdfs:label "Sensor Data"@en ;
    rdfs:isDefinedBy unece-mod:production ;
    skos:definition "A sensor data recording associated with a lifecycle event."@en ;
    unece:objectNature on:value ;
    unece:termStatus ts:proposed .

