Skip to content

Commit

Permalink
fixes domain and range of "isRealizedBy" and
Browse files Browse the repository at this point in the history
adds sub properties for the two properties
  • Loading branch information
aljoshakoecher committed Jan 26, 2023
1 parent bce2450 commit 2fd93bc
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions CSS-Ontology.owl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
@base <http://www.w3id.org/hsu-aut/css> .

<http://www.w3id.org/hsu-aut/css> rdf:type owl:Ontology ;
owl:versionIRI <http://www.w3id.org/hsu-aut/css/1.0.0> ;
owl:versionIRI <http://www.w3id.org/hsu-aut/css/1.0.1> ;
rdfs:comment "An ontology for the Capability, Skill and Service reference model defined by Plattform Industrie 4.0. See https://www.plattform-i40.de/IP/Redaktion/DE/Downloads/Publikation/CapabilitiesSkillsServices.html for a description of the abstract reference model." ;
rdfs:isDefinedBy "https://www.plattform-i40.de/IP/Redaktion/DE/Downloads/Publikation/CapabilitiesSkillsServices.html" .

Expand Down Expand Up @@ -79,8 +79,24 @@

### http://www.w3id.org/hsu-aut/css#isRealizedBy
:isRealizedBy rdf:type owl:ObjectProperty ;
rdfs:domain :Property ;
rdfs:range :SkillParameter .
rdfs:domain :Capability ,
:Property ;
rdfs:range :Skill ,
:SkillParameter .


### http://www.w3id.org/hsu-aut/css#isRealizedBySkill
:isRealizedBySkill rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :isRealizedBy ;
rdfs:domain :Capability ;
rdfs:range :Skill .


### http://www.w3id.org/hsu-aut/css#isRealizedBySkillParameter
:isRealizedBySkillParameter rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :isRealizedBy ;
rdfs:domain :Property ;
rdfs:range :SkillParameter .


### http://www.w3id.org/hsu-aut/css#isRestrictedBy
Expand Down

0 comments on commit 2fd93bc

Please sign in to comment.