Skip to content
This repository has been archived by the owner on Dec 17, 2021. It is now read-only.

Commit

Permalink
Merge pull request #8 from ConstantinHildebrandt/isa88
Browse files Browse the repository at this point in the history
Added a class "StateMachine" as a container for all states and transi…
  • Loading branch information
ConstantinHildebrandt authored Mar 26, 2020
2 parents 74b0885 + d0933db commit f565ef1
Showing 1 changed file with 28 additions and 3 deletions.
31 changes: 28 additions & 3 deletions ISA 88/ISA88.owl
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
<?xml version="1.0"?>
<rdf:RDF xmlns="http://www.hsu-ifa.de/ontologies/ISA-TR88#"
xml:base="http://www.hsu-ifa.de/ontologies/ISA-TR88"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
<owl:Ontology rdf:about="http://www.hsu-ifa.de/ontologies/ISA-TR88">
<owl:versionInfo>1.0.0</owl:versionInfo>
<owl:versionIRI rdf:resource="http://www.hsu-ifa.de/ontologies/ISA-TR88/1.1.0"/>
<owl:versionInfo>1.1.0</owl:versionInfo>
</owl:Ontology>


Expand Down Expand Up @@ -61,6 +62,24 @@ ObjectProperty is used to connect a transition with a state</rdfs:comment>



<!-- http://www.hsu-ifa.de/ontologies/ISA-TR88#hasState -->

<owl:ObjectProperty rdf:about="http://www.hsu-ifa.de/ontologies/ISA-TR88#hasState">
<rdfs:domain rdf:resource="http://www.hsu-ifa.de/ontologies/ISA-TR88#StateMachine"/>
<rdfs:range rdf:resource="http://www.hsu-ifa.de/ontologies/ISA-TR88#State"/>
</owl:ObjectProperty>



<!-- http://www.hsu-ifa.de/ontologies/ISA-TR88#hasTransition -->

<owl:ObjectProperty rdf:about="http://www.hsu-ifa.de/ontologies/ISA-TR88#hasTransition">
<rdfs:domain rdf:resource="http://www.hsu-ifa.de/ontologies/ISA-TR88#StateMachine"/>
<rdfs:range rdf:resource="http://www.hsu-ifa.de/ontologies/ISA-TR88#Transition"/>
</owl:ObjectProperty>



<!--
///////////////////////////////////////////////////////////////////////////////////////
//
Expand Down Expand Up @@ -533,6 +552,12 @@ ANSl/ISA-TR88.00.02-2015</rdfs:comment>



<!-- http://www.hsu-ifa.de/ontologies/ISA-TR88#StateMachine -->

<owl:Class rdf:about="http://www.hsu-ifa.de/ontologies/ISA-TR88#StateMachine"/>



<!-- http://www.hsu-ifa.de/ontologies/ISA-TR88#State_Complete -->

<owl:Class rdf:about="http://www.hsu-ifa.de/ontologies/ISA-TR88#State_Complete">
Expand Down Expand Up @@ -830,5 +855,5 @@ ANSl/ISA-TR88.00.02-2015</rdfs:comment>



<!-- Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi -->
<!-- Generated by the OWL API (version 4.5.6.2018-09-06T00:27:41Z) https://github.com/owlcs/owlapi -->

0 comments on commit f565ef1

Please sign in to comment.