Skip to content
Snippets Groups Projects
Commit 0e9d3fee authored by Maxime Lefrançois's avatar Maxime Lefrançois
Browse files

simplified examples

parent 9dd47db7
No related branches found
No related tags found
No related merge requests found
......@@ -23,618 +23,3 @@
owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
time:hasBeginning a owl:ObjectProperty .
time:hasEnd a owl:ObjectProperty .
#################################################################
# Object Properties
#################################################################
### https://saref.etsi.org/saref4inma/creates
s4inma:creates owl:inverseOf s4inma:isCreatedIn ;
rdfs:comment "A relation between a production process (e.g., Batch) that creates one or more tangible objects (e.g., Items)"^^xsd:string .
### https://saref.etsi.org/saref4inma/isCreatedIn
#################################################################
# Data properties
#################################################################
### https://saref.etsi.org/saref4inma/hasCertificate
s4inma:hasCertificate rdfs:range xsd:string .
#################################################################
# Classes
#################################################################
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#CuttingFunction
ex:CuttingFunction rdf:type owl:Class ;
rdfs:subClassOf s4inma:ProductionEquipmentFunction ,
saref:ActuatingFunction .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#FormingFunction
ex:FormingFunction rdf:type owl:Class ;
rdfs:subClassOf s4inma:ProductionEquipmentFunction ,
saref:ActuatingFunction ;
rdfs:comment "Example of actuating function used in SAREF4INMA. More functions can be defined if needed. It is also possible to link here function code lists from existing standards."^^xsd:string .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#JoiningFunction
ex:JoiningFunction rdf:type owl:Class ;
rdfs:subClassOf s4inma:ProductionEquipmentFunction ,
saref:ActuatingFunction .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#LaserCuttingMachine
ex:LaserCuttingMachine rdf:type owl:Class ;
rdfs:subClassOf s4inma:ProductionEquipment .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#MillingMachine
ex:MillingMachine rdf:type owl:Class ;
rdfs:subClassOf s4inma:ProductionEquipment .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#MouldingMachine
ex:MouldingMachine rdf:type owl:Class ;
rdfs:subClassOf s4inma:ProductionEquipment .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#Plastic
ex:Plastic rdf:type owl:Class ;
rdfs:subClassOf s4inma:MaterialCategory .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#Screw
ex:Screw rdf:type owl:Class ;
rdfs:subClassOf s4inma:MaterialCategory .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#StampingMachine
ex:StampingMachine rdf:type owl:Class ;
rdfs:subClassOf s4inma:ProductionEquipment .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#SteelSheet
ex:SteelSheet rdf:type owl:Class ;
rdfs:subClassOf s4inma:MaterialCategory .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#WeldingMachine
ex:WeldingMachine rdf:type owl:Class ;
rdfs:subClassOf s4inma:ProductionEquipment .
### http://www.w3.org/2006/time#Instant
time:Instant rdf:type owl:Class .
### https://w3id.org/def/saref4bldg#PhysicalObject
s4bldg:PhysicalObject rdf:type owl:Class .
### https://saref.etsi.org/saref4inma/ActualMeasurement
s4inma:ActualMeasurement owl:disjointWith s4inma:ExpectedMeasurement ;
rdfs:comment "Describes whether the measurement is actually measured during the production process. Disjoint with ExpectedMeasurement."^^xsd:string .
### https://saref.etsi.org/saref4inma/Area
s4inma:Area rdf:type owl:Class .
### https://saref.etsi.org/saref4inma/Batch
s4inma:Batch rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty s4inma:hasIdentifier ;
owl:someValuesFrom s4inma:ID
] ,
[ rdf:type owl:Restriction ;
owl:onProperty s4inma:hasIDValue ;
owl:someValuesFrom xsd:string
] .
### https://saref.etsi.org/saref4inma/ExpectedMeasurement
s4inma:ExpectedMeasurement rdfs:comment "Describes whether the measurement is expected (i.e., planned before the production process). Disjoint with ActualMeasurement."^^xsd:string .
### https://saref.etsi.org/saref4inma/Factory
s4inma:Factory rdf:type owl:Class .
### https://saref.etsi.org/saref4inma/GTIN14ID
s4inma:GTIN14ID rdf:type owl:Class .
### https://saref.etsi.org/saref4inma/GTIN8ID
s4inma:GTIN8ID rdf:type owl:Class .
### https://saref.etsi.org/saref4inma/Item
s4inma:Item rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty s4inma:hasIdentifier ;
owl:allValuesFrom s4inma:ID
] ,
[ rdf:type owl:Restriction ;
owl:onProperty s4inma:hasIDValue ;
owl:allValuesFrom xsd:string
] .
### https://saref.etsi.org/saref4inma/ItemBatch
s4inma:ItemBatch rdf:type owl:Class .
### https://saref.etsi.org/saref4inma/ItemCategory
s4inma:ItemCategory rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty s4inma:hasIDValue ;
owl:someValuesFrom xsd:string
] .
### https://saref.etsi.org/saref4inma/MaterialBatch
s4inma:MaterialBatch rdf:type owl:Class .
### https://saref.etsi.org/saref4inma/MaterialCategory
s4inma:MaterialCategory rdf:type owl:Class .
### https://saref.etsi.org/saref4inma/Measurement
s4inma:Measurement rdf:type owl:Class .
### https://saref.etsi.org/saref4inma/ProductionEquipment
s4inma:ProductionEquipment rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty s4inma:hasIDValue ;
owl:someValuesFrom xsd:string
] .
### https://saref.etsi.org/saref4inma/ProductionEquipmentCategory
s4inma:ProductionEquipmentCategory rdf:type owl:Class .
### https://saref.etsi.org/saref4inma/Site
s4inma:Site rdf:type owl:Class .
### https://saref.etsi.org/saref4inma/WorkCenter
s4inma:WorkCenter rdf:type owl:Class .
### https://w3id.org/saref#ActuatingFunction
saref:ActuatingFunction rdf:type owl:Class .
### https://w3id.org/saref#Device
saref:Device rdf:type owl:Class ;
rdfs:subClassOf s4bldg:PhysicalObject ;
rdfs:label "Device"^^xsd:string .
### https://w3id.org/saref#Temperature
saref:Temperature rdf:type owl:Class .
### https://w3id.org/saref#TemperatureSensor
saref:TemperatureSensor rdf:type owl:Class .
#################################################################
# Individuals
#################################################################
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#ABS_Plastic_Role_8mm_MaterialBatch742
ex:ABS_Plastic_Role_8mm_MaterialBatch742 rdf:type owl:NamedIndividual ,
s4inma:MaterialBatch ;
s4inma:hasCertificate "ABS High-precision quality max tolerance of 0.1mm" ;
s4inma:belongsToCategory ex:ABS_Plastic_Role_8mm_MaterialCategory ;
s4inma:hasIdentifier ex:nr71324352 .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#ABS_Plastic_Role_8mm_MaterialCategory
ex:ABS_Plastic_Role_8mm_MaterialCategory rdf:type owl:NamedIndividual ,
ex:Plastic .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#BIC_Site_A
ex:BIC_Site_A rdf:type owl:NamedIndividual ,
s4inma:Site ;
s4bldg:hasSpace ex:BIC_Site_A_Area_18 ,
ex:BIC_Site_A_Area_19 .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#BIC_Site_A_Area_18
ex:BIC_Site_A_Area_18 rdf:type owl:NamedIndividual ,
s4inma:Area ;
s4bldg:contains ex:Cutting_and_Milling_WorkCenter .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#BIC_Site_A_Area_19
ex:BIC_Site_A_Area_19 rdf:type owl:NamedIndividual ,
s4inma:Area ;
s4bldg:contains ex:Welding_WorkCenter .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#BIC_Site_B
ex:BIC_Site_B rdf:type owl:NamedIndividual ,
s4inma:Site .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#CuttingFunction
ex:CuttingFunction rdf:type owl:NamedIndividual .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#Cutting_and_Milling_WorkCenter
ex:Cutting_and_Milling_WorkCenter rdf:type owl:NamedIndividual ,
s4inma:WorkCenter .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#Eindhoven_BIC
ex:Eindhoven_BIC rdf:type owl:NamedIndividual ,
s4inma:Factory ;
s4bldg:hasSpace ex:BIC_Site_A ,
ex:BIC_Site_B .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#End_Time_Batch392
ex:End_Time_Batch392 rdf:type owl:NamedIndividual ,
time:Instant .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#JIDFUHWEUF323
ex:JIDFUHWEUF323 rdf:type owl:NamedIndividual ,
s4inma:GTIN14ID .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#JSDFHKLSDF982374
ex:JSDFHKLSDF982374 rdf:type owl:NamedIndividual ,
s4inma:GTIN14ID .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#JoiningFunction
ex:JoiningFunction rdf:type owl:NamedIndividual .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#Laser_Cutting_Machine_1
ex:Laser_Cutting_Machine_1 rdf:type owl:NamedIndividual ,
ex:LaserCuttingMachine ;
s4bldg:isContainedIn ex:Welding_WorkCenter ;
s4inma:belongsToCategory ex:Lazor_Series_8030_ProdEquipCategory ;
saref:hasFunction ex:CuttingFunction .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#Lazor_Series_8030_ProdEquipCategory
ex:Lazor_Series_8030_ProdEquipCategory rdf:type owl:NamedIndividual ,
s4inma:ProductionEquipmentCategory ;
s4inma:isCategoryOf ex:Laser_Cutting_Machine_1 .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#PhilBrau_S40-S50_Generic_Body_ItemBatch3290
ex:PhilBrau_S40-S50_Generic_Body_ItemBatch3290 rdf:type owl:NamedIndividual ,
s4inma:ItemBatch ;
s4inma:consistsOfBatch ex:ABS_Plastic_Role_8mm_MaterialBatch742 ,
ex:Torx_screws_D2mm_L8mm_MaterialBatch323 ;
s4inma:hasIdentifier ex:nr55689876777421 .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#PhilBrau_S40_Premium_Gold_Shaver_ItemBatch392
ex:PhilBrau_S40_Premium_Gold_Shaver_ItemBatch392 rdf:type owl:NamedIndividual ,
s4inma:ItemBatch ;
s4inma:creates ex:Shaver10023 ;
time:hasBeginning ex:Start_Time_Batch392 ;
time:hasEnd ex:End_Time_Batch392 ;
s4inma:belongsToCategory ex:PhilBrau_S40_Premium_Gold_Shaver_ItemCategory ;
s4inma:hasIdentifier ex:nr34275874234908 ;
s4inma:isFeatureOfInterestOf ex:Welding_Machine_2_Measurement_W101520_AVG ;
s4inma:needsEquipment ex:Laser_Cutting_Machine_1 ;
saref:hasProperty ex:WeldingTemperature .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#PhilBrau_S40_Premium_Gold_Shaver_ItemCategory
ex:PhilBrau_S40_Premium_Gold_Shaver_ItemCategory rdf:type owl:NamedIndividual ,
s4inma:ItemCategory ;
s4inma:hasIdentifier ex:nr98647656 ;
s4inma:hasModelNumber "nr98647656"^^xsd:string ;
s4inma:isCategoryOf ex:PhilBrau_S40_Premium_Gold_Shaver_ItemBatch392 ;
s4inma:isProducedBy ex:Lazor_Series_8030_ProdEquipCategory ;
saref:hasManufacturer "PhilBrau"^^xsd:string ;
saref:relatesToMeasurement ex:WeldMachineTempSensor1_Measurement_A10568 .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#Philips_screws_D2mm_L8mm_MaterialCategory
ex:Philips_screws_D2mm_L8mm_MaterialCategory rdf:type owl:NamedIndividual ,
ex:Screw .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#Shaver10023
ex:Shaver10023 rdf:type owl:NamedIndividual ,
s4inma:Item ;
s4inma:isCreatedIn ex:PhilBrau_S40_Premium_Gold_Shaver_ItemBatch392 ;
s4inma:consistsOfItem ex:ShaverBody9440 ,
ex:ShaverHead3002 ,
ex:StepMotor083 ;
s4inma:hasIdentifier ex:nr7865654345676 ;
s4inma:isFeatureOfInterestOf ex:Welding_Machine_2_Measurement_W101520 ,
ex:Welding_Machine_2_Measurement_W101521 ,
ex:Welding_Machine_2_Measurement_W101522 ,
ex:Welding_Machine_2_Measurement_W101523 ;
saref:hasProperty ex:WeldingTemperature .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#ShaverBody9440
ex:ShaverBody9440 rdf:type owl:NamedIndividual ,
s4inma:Item ;
s4inma:isCreatedIn ex:PhilBrau_S40-S50_Generic_Body_ItemBatch3290 ;
s4inma:hasIdentifier ex:UFHLEIJKFNESDKL323 .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#ShaverHead3002
ex:ShaverHead3002 rdf:type owl:NamedIndividual ,
s4inma:Item ;
s4inma:consistsOfItem ex:Steel_Sheets_RVS331_MaterialBatch311 ;
s4inma:hasIdentifier ex:JIDFUHWEUF323 .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#Start_Time_Batch392
ex:Start_Time_Batch392 rdf:type owl:NamedIndividual ,
time:Instant .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#Steel_Sheets_RVS331_MaterialBatch311
ex:Steel_Sheets_RVS331_MaterialBatch311 rdf:type owl:NamedIndividual ,
s4inma:MaterialBatch ;
s4inma:hasCertificate "Steel Certificate 3.1" ;
s4inma:belongsToCategory ex:Steel_Sheets_RVS331_MaterialCategory ;
s4inma:hasIdentifier ex:nr79009856 .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#Steel_Sheets_RVS331_MaterialCategory
ex:Steel_Sheets_RVS331_MaterialCategory rdf:type owl:NamedIndividual ,
ex:SteelSheet .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#StepMotor083
ex:StepMotor083 rdf:type owl:NamedIndividual ,
s4inma:Item ;
s4inma:isCreatedIn ex:Step_Moters_Q88_Secure_ItemBatch423 ;
s4inma:hasIdentifier ex:JSDFHKLSDF982374 .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#Step_Moters_Q88_Secure_ItemBatch423
ex:Step_Moters_Q88_Secure_ItemBatch423 rdf:type owl:NamedIndividual ,
s4inma:ItemBatch ;
s4inma:consistsOfItem ex:Steel_Sheets_RVS331_MaterialBatch311 ,
ex:Torx_screws_D2mm_L8mm_MaterialBatch323 ;
s4inma:hasIdentifier ex:nr34254657687978 .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#Step_Motors_Q88_Secure_ItemCategory
ex:Step_Motors_Q88_Secure_ItemCategory rdf:type owl:NamedIndividual ,
s4inma:ItemCategory ;
s4inma:hasIdentifier ex:nr83049304 ;
s4inma:isProducedBy ex:Lazor_Series_8030_ProdEquipCategory ,
ex:WandI_Welding_Series_1000_ProdEquipCategory .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#Torx_screws_D2mm_L8mm_MaterialBatch323
ex:Torx_screws_D2mm_L8mm_MaterialBatch323 rdf:type owl:NamedIndividual ,
s4inma:MaterialBatch ;
s4inma:belongsToCategory ex:Torx_screws_D2mm_L8mm_MaterialCategory ;
s4inma:hasIdentifier ex:nr74536275 .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#Torx_screws_D2mm_L8mm_MaterialBatch324
ex:Torx_screws_D2mm_L8mm_MaterialBatch324 rdf:type owl:NamedIndividual ,
s4inma:MaterialBatch ;
s4inma:belongsToCategory ex:Torx_screws_D2mm_L8mm_MaterialCategory ;
s4inma:hasIdentifier ex:nr76567876 .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#Torx_screws_D2mm_L8mm_MaterialCategory
ex:Torx_screws_D2mm_L8mm_MaterialCategory rdf:type owl:NamedIndividual ,
ex:Screw .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#UFHLEIJKFNESDKL323
ex:UFHLEIJKFNESDKL323 rdf:type owl:NamedIndividual ,
s4inma:GTIN14ID .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#WandI_Welding_Series_1000_ProdEquipCategory
ex:WandI_Welding_Series_1000_ProdEquipCategory rdf:type owl:NamedIndividual ,
s4inma:ProductionEquipmentCategory .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#WeldMachineTempSensor1_Measurement_A10568
ex:WeldMachineTempSensor1_Measurement_A10568 rdf:type owl:NamedIndividual ,
s4inma:Measurement ;
saref:hasValue 228 ;
saref:isMeasuredByDevice ex:WeldingMachineTemperatureSensor1 ;
saref:isMeasuredIn <http://www.wurvoc.org/vocabularies/om-1.8/degree_Celsius> ;
saref:relatesToProperty ex:WeldingTemperature .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#WeldingMachineTemperatureSensor1
ex:WeldingMachineTemperatureSensor1 rdf:type owl:NamedIndividual ,
saref:TemperatureSensor ;
saref:makesMeasurement ex:WeldMachineTempSensor1_Measurement_A10568 ,
ex:Welding_Machine_2_Measurement_W101520 ,
ex:Welding_Machine_2_Measurement_W101520_AVG ,
ex:Welding_Machine_2_Measurement_W101521 ,
ex:Welding_Machine_2_Measurement_W101522 ,
ex:Welding_Machine_2_Measurement_W101523 .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#WeldingMachineTemperatureSensor2
ex:WeldingMachineTemperatureSensor2 rdf:type owl:NamedIndividual ,
saref:TemperatureSensor .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#WeldingTemperature
ex:WeldingTemperature rdf:type owl:NamedIndividual ,
saref:Temperature .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#Welding_Machine_1
ex:Welding_Machine_1 rdf:type owl:NamedIndividual ,
ex:WeldingMachine ;
s4inma:belongsToCategory ex:WandI_Welding_Series_1000_ProdEquipCategory ;
saref:controlsProperty ex:WeldingTemperature ;
saref:hasFunction ex:JoiningFunction .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#Welding_Machine_2
ex:Welding_Machine_2 rdf:type owl:NamedIndividual ,
ex:WeldingMachine ;
s4bldg:isContainedIn ex:Welding_WorkCenter ;
s4inma:belongsToCategory ex:WandI_Welding_Series_1000_ProdEquipCategory ;
saref:consistsOf ex:WeldingMachineTemperatureSensor1 ;
saref:controlsProperty ex:WeldingTemperature ;
saref:hasFunction ex:JoiningFunction ;
saref:makesMeasurement ex:Welding_Machine_2_Measurement_W101520 ,
ex:Welding_Machine_2_Measurement_W101520_AVG ,
ex:Welding_Machine_2_Measurement_W101521 ,
ex:Welding_Machine_2_Measurement_W101522 ,
ex:Welding_Machine_2_Measurement_W101523 .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#Welding_Machine_2_Measurement_W101520
ex:Welding_Machine_2_Measurement_W101520 rdf:type owl:NamedIndividual ,
s4inma:ActualMeasurement ;
s4inma:hasFeatureOfInterest ex:Shaver10023 ;
saref:hasTimestamp "2019-01-28T12:11:10"^^xsd:dateTime ;
saref:hasValue 223 ;
saref:isMeasuredByDevice ex:WeldingMachineTemperatureSensor1 ;
saref:isMeasuredIn <http://www.wurvoc.org/vocabularies/om-1.8/degree_Celsius> ;
saref:relatesToProperty ex:WeldingTemperature .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#Welding_Machine_2_Measurement_W101520_AVG
ex:Welding_Machine_2_Measurement_W101520_AVG rdf:type owl:NamedIndividual ,
s4inma:ActualMeasurement ;
s4inma:hasFeatureOfInterest ex:PhilBrau_S40_Premium_Gold_Shaver_ItemBatch392 ;
saref:hasTimestamp "2019-01-28T12:11:40"^^xsd:dateTime ;
saref:hasValue 232 ;
saref:isMeasuredByDevice ex:WeldingMachineTemperatureSensor1 ;
saref:isMeasuredIn <http://www.wurvoc.org/vocabularies/om-1.8/degree_Celsius> ;
saref:relatesToProperty ex:WeldingTemperature .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#Welding_Machine_2_Measurement_W101521
ex:Welding_Machine_2_Measurement_W101521 rdf:type owl:NamedIndividual ,
s4inma:ActualMeasurement ;
s4inma:hasFeatureOfInterest ex:Shaver10023 ;
saref:hasTimestamp "2019-01-28T12:11:20"^^xsd:dateTime ;
saref:hasValue 228 ;
saref:isMeasuredByDevice ex:WeldingMachineTemperatureSensor1 ;
saref:isMeasuredIn <http://www.wurvoc.org/vocabularies/om-1.8/degree_Celsius> ;
saref:relatesToProperty ex:WeldingTemperature .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#Welding_Machine_2_Measurement_W101522
ex:Welding_Machine_2_Measurement_W101522 rdf:type owl:NamedIndividual ,
s4inma:ActualMeasurement ;
s4inma:hasFeatureOfInterest ex:Shaver10023 ;
saref:hasTimestamp "2019-01-28T12:11:30"^^xsd:dateTime ;
saref:hasValue 231 ;
saref:isMeasuredByDevice ex:WeldingMachineTemperatureSensor1 ;
saref:isMeasuredIn <http://www.wurvoc.org/vocabularies/om-1.8/degree_Celsius> ;
saref:relatesToProperty ex:WeldingTemperature .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#Welding_Machine_2_Measurement_W101523
ex:Welding_Machine_2_Measurement_W101523 rdf:type owl:NamedIndividual ,
s4inma:ActualMeasurement ;
s4inma:hasFeatureOfInterest ex:Shaver10023 ;
saref:hasTimestamp "2019-01-28T12:11:40"^^xsd:dateTime ;
saref:hasValue 232 ;
saref:isMeasuredByDevice ex:WeldingMachineTemperatureSensor1 ;
saref:isMeasuredIn <http://www.wurvoc.org/vocabularies/om-1.8/degree_Celsius> ;
saref:relatesToProperty ex:WeldingTemperature .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#Welding_WorkCenter
ex:Welding_WorkCenter rdf:type owl:NamedIndividual ,
s4inma:WorkCenter ;
saref:consistsOf ex:Laser_Cutting_Machine_1 ,
ex:Welding_Machine_1 ,
ex:Welding_Machine_2 .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#nr34254657687978
ex:nr34254657687978 rdf:type owl:NamedIndividual ,
s4inma:GTIN14ID .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#nr34275874234908
ex:nr34275874234908 rdf:type owl:NamedIndividual ,
s4inma:GTIN14ID ;
s4inma:hasIDValue "nr34275874234908"^^xsd:string .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#nr55689876777421
ex:nr55689876777421 rdf:type owl:NamedIndividual ,
s4inma:GTIN14ID .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#nr71324352
ex:nr71324352 rdf:type owl:NamedIndividual ,
s4inma:GTIN8ID .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#nr74536275
ex:nr74536275 rdf:type owl:NamedIndividual ,
s4inma:GTIN8ID .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#nr76567876
ex:nr76567876 rdf:type owl:NamedIndividual ,
s4inma:GTIN8ID .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#nr7865654345676
ex:nr7865654345676 rdf:type owl:NamedIndividual ,
s4inma:GTIN14ID ;
s4inma:hasIDValue "nr7865654345676"^^xsd:string .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#nr79009856
ex:nr79009856 rdf:type owl:NamedIndividual ,
s4inma:GTIN8ID .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#nr82849583748573
ex:nr82849583748573 rdf:type owl:NamedIndividual ,
s4inma:GTIN14ID .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#nr83049304
ex:nr83049304 rdf:type owl:NamedIndividual ,
s4inma:GTIN8ID .
### https://saref.etsi.org/saref4inma/v1.1.2/example/example1INMA#nr98647656
ex:nr98647656 rdf:type owl:NamedIndividual ,
s4inma:GTIN8ID ;
s4inma:hasIDValue "nr98647656"^^xsd:string .
#################################################################
# Annotations
#################################################################
ex:CuttingFunction rdfs:comment "Example of actuating function used in SAREF4INMA. More functions can be defined if needed. It is also possible to link here function code lists from existing standards."^^xsd:string .
ex:JoiningFunction rdfs:comment "Example of actuating function used in SAREF4INMA. More functions can be defined if needed. It is also possible to link here function code lists from existing standards."^^xsd:string .
### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi
@prefix ex: <https://saref.etsi.org/saref4inma/v1.1.2/example/shaver/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix s4bldg: <https://saref.etsi.org/saref4bldg/> .
@prefix s4inma: <https://saref.etsi.org/saref4inma/> .
@prefix saref: <https://saref.etsi.org/core/> .
@prefix time: <http://www.w3.org/2006/time#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dctype: <http://purl.org/dc/dcmitype/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
<https://saref.etsi.org/saref4inma/v1.1.2/example/shaver#> a dctype:Dataset ;
dcterms:license <https://forge.etsi.org/etsi-software-license> ;
dcterms:conformsTo <https://saref.etsi.org/core/v3.1.1/> ;
dcterms:conformsTo <https://saref.etsi.org/saref4inma/v1.1.2/> ;
dcterms:conformsTo <https://saref.etsi.org/saref4bldg/v1.1.2/> ;
dcterms:title "Example shaver"@en ;
dcterms:description "Example shaver"@en .
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment