Skip to content

Commit

Permalink
Update check_method.ttl
Browse files Browse the repository at this point in the history
Create a new property called hasTarget - which is a datatype property (string, number, bool)
  • Loading branch information
EdliraK authored Apr 22, 2024
1 parent f366c92 commit 513584b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/check_method.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,19 @@ aec3po:hasNestedTarget a owl:ObjectProperty ;
rdfs:range aec3po:CheckMethod ;
rdfs:isDefinedBy aec3po:check_method .

aec3po:hasTarget a owl:DatatypeProperty ;
rdfs:label "hasTarget"@en ;
rdfs:comment "TBD"@en ;
rdfs:range [
rdf:type rdfs:Datatype ;
owl:unionOf (
xsd:string
xsd:boolean
xsd:decimal
)
] .


aec3po:FunctionCheckMethod a owl:Class ;
rdfs:label "Function Check Method"@en ;
rdfs:comment "Methods of check defined by functions. The function can be general purpose, not tied to specific project and reused i.e. getArea(), getVolume(). This concept is equivalent to the Execution class in the Function ontology: https://fno.io/spec/ "@en ;
Expand Down

0 comments on commit 513584b

Please sign in to comment.