http://w3id.org/um/cbcm/eu-cm-ontology#hasSubProcedure
(hasSubProcedure ?ENTITY1 ?ENTITY2) means that some process ?ENTITY1 contains another (shorter) process ?ENTITY2 that should be completed before ?ENTITY1 can complete.
DOMAIN | PROPERTY | RANGE |
---|---|---|
Company transaction | has sub procedure | owl:Thing (inferred) |
@prefix cbcm: <http://w3id.org/um/cbcm/eu-cm-ontology#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
cbcm:hasSubProcedure a owl:ObjectProperty ;
rdfs:label "has sub procedure"@en ;
cbcm:example "(hasSubProcedure seatTransfer1 changeOfCompanyAddress1)" ;
rdfs:comment "(hasSubProcedure ?ENTITY1 ?ENTITY2) means that some process ?ENTITY1 contains another (shorter) process ?ENTITY2 that should be completed before ?ENTITY1 can complete."@en ;
rdfs:domain cbcm:CompanyTransaction ;
rdfs:subPropertyOf cbcm:cbcmTransactionRelation .