Skip to content

Commit e26230d

Browse files
fix #117
1 parent 8116067 commit e26230d

File tree

1 file changed

+16
-9
lines changed

1 file changed

+16
-9
lines changed

src/check_method.ttl

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -81,25 +81,32 @@ aec3po:CertificateCheckMethod a owl:Class ;
8181

8282
aec3po:CategoryCheckMethod a owl:Class ;
8383
rdfs:label "Category Check Method"@en ;
84-
rdfs:comment "Category check method is a validation type that involves comparing content against a textual concept."@en ;
84+
rdfs:comment "A validation type that involves comparing content against a textual concept."@en ;
8585
rdfs:isDefinedBy aec3po:check_method ;
8686
rdfs:subClassOf aec3po:CheckMethod .
8787

8888
aec3po:ComponentCheckMethod a owl:Class ;
8989
rdfs:label "Component Check Method"@en ;
90-
rdfs:comment "Component check method refers to a process of inspecting and verifying specific components or elements of a building or infrastructure to ensure they meet the required standards, specifications, and regulations. This method is used to assess the quality, functionality, and safety of individual components used in construction projects. Formally defined as checks for some feature of interest"@en ;
90+
rdfs:comment "Refers to a process of inspecting and verifying specific components or elements of a building or infrastructure to ensure they meet the required standards, specifications, and regulations. This method is used to assess the quality, functionality, and safety of individual components used in construction projects. Formally defined as checks for some feature of interest"@en ;
9191
rdfs:isDefinedBy aec3po:check_method ;
9292
rdfs:subClassOf aec3po:CheckMethod ;
93-
owl:equivalentClass [ a owl:Class ;
94-
owl:intersectionOf ( aec3po:CheckMethod [ a owl:Restriction ;
95-
owl:allValuesFrom [ a owl:Restriction ;
96-
owl:allValuesFrom aec3po:FeatureOfInterest ;
97-
owl:onProperty [ owl:inverseOf aec3po:forDesign ] ] ;
98-
owl:onProperty aec3po:forDesign ] ) ] .
93+
owl:intersectionOf (
94+
aec3po:CheckMethod
95+
[ a owl:Restriction ;
96+
owl:allValuesFrom [ a owl:Restriction ;
97+
owl:allValuesFrom aec3po:FeatureOfInterest ;
98+
owl:onProperty [ owl:inverseOf aec3po:forDesign ] ] ;
99+
owl:onProperty aec3po:forDesign ] ).
100+
101+
aec3po:SPARQLCheckMethod a owl:Class ;
102+
rdfs:label "SPARQL Check Method"@en ;
103+
rdfs:comment "Refers to a validation process that ensures compliance of data with a predefined SPARQL query, stored in aec3po:asText"@en ;
104+
rdfs:isDefinedBy aec3po:check_method ;
105+
rdfs:subClassOf aec3po:DeclarativeCheckMethod .
99106

100107
aec3po:SHACLCheckMethod a owl:Class ;
101108
rdfs:label "SHACL Check Method"@en ;
102-
rdfs:comment "Shacl check method refers to a validation process that ensures compliance of data with predefined SHACL shapes, constraints, and rules. "@en ;
109+
rdfs:comment "Refers to a validation process that ensures compliance of data with predefined SHACL shapes, constraints, and rules."@en ;
103110
rdfs:isDefinedBy aec3po:check_method ;
104111
rdfs:subClassOf aec3po:DeclarativeCheckMethod .
105112

0 commit comments

Comments
 (0)