Factory example
Turtle
@prefix dct: <http://purl.org/dc/terms/> .
@prefix ex: <https://saref.etsi.org/saref4inma/v2.1.1/example/Factory/> .
@prefix mod: <https://w3id.org/mod#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@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 dctype: <http://purl.org/dc/dcmitype/> .
<https://saref.etsi.org/saref4inma/v2.1.1/example/Factory#> a dctype:Dataset ;
dct:conformsTo <https://saref.etsi.org/saref4inma/v2.1.1/> ;
dct:description "Factory example"@en ;
dct:license <https://forge.etsi.org/etsi-software-license> ;
dct:title "Factory example"@en .
ex:Eindhoven_BIC a owl:NamedIndividual,
s4inma:Factory ;
s4bldg:hasSpace ex:BIC_Site_A .
ex:BIC_Site_A a owl:NamedIndividual,
s4inma:Site ;
s4bldg:hasSpace ex:Site_A_Area_19 .
ex:LaserCuttingMachine a owl:Class ;
rdfs:label "Laser Cutting Machine" ;
rdfs:subClassOf s4inma:ProductionEquipment .
ex:Laser_Cutting_Machine_1 a owl:NamedIndividual,
ex:LaserCuttingMachine .
ex:Site_A_Area_19 a owl:NamedIndividual,
s4inma:Area ;
s4bldg:contains ex:Welding_WorkCenter .
ex:Welding_Machine_1 a owl:NamedIndividual,
ex:WeldingMachine .
ex:Welding_Machine_2 a owl:NamedIndividual,
ex:WeldingMachine .
ex:Welding_WorkCenter a owl:NamedIndividual,
s4inma:WorkCenter ;
saref:consistsOf ex:Laser_Cutting_Machine_1,
ex:Welding_Machine_1,
ex:Welding_Machine_2 .
ex:WeldingMachine a owl:Class ;
rdfs:label "Welding Machine" ;
rdfs:subClassOf s4inma:ProductionEquipment .