valueflows

valueflows docs
git clone https://s.sonu.ch/~srfsh/valueflows.git
Log | Files | Refs | README

commit 5a3db65044163a2ed127542bb011aa1f292f2d9d
parent e048af045e54c8973fd589bffbaaa23aa59ef7f2
Author: Lynn Foster <foster.j.lynn@gmail.com>
Date:   Mon, 13 Apr 2020 17:11:49 -0500

add PairsWith as a class, include some actions (#619)


Diffstat:
Mrelease-doc-in-process/all_vf.TTL | 30+++++++++++++++---------------
1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/release-doc-in-process/all_vf.TTL b/release-doc-in-process/all_vf.TTL @@ -33,6 +33,11 @@ vf:Action a owl:Class ; vs:term_status "testing" ; rdfs:comment "An action verb defining the kind of flow and its behavior." . +vf:PairsWith a owl:Class ; + rdfs:comment "The action that should be included on the other direction of the process, for example accept with modify; also includes not applicable." ; + rdfs:label "vf:PairsWith" ; + vs:term_status "unstable" . + vf:InputOutput a owl:Class ; rdfs:comment "The action is an input or output of a process, or not related to a process." ; rdfs:label "vf:InputOutput" ; @@ -832,7 +837,8 @@ vf:resourceEffect a owl:ObjectProperty ; # Actions vf:accept a owl:NamedIndividual , - vf:Action ; + vf:Action , + vf:PairsWith ; vf:inputOutput vf:input ; vf:pairsWith vf:modify ; vf:resourceEffect vf:noEffect ; @@ -840,15 +846,6 @@ vf:accept a owl:NamedIndividual , rdfs:label "accept" ; vs:term_status "unstable" . -vf:cite a owl:NamedIndividual , - vf:Action ; - vf:inputOutput vf:input ; - vf:pairsWith vf:notApplicable ; - vf:resourceEffect vf:noEffect ; - rdfs:comment "For example a design file, neither used nor consumed, the file remains available at all times." ; - rdfs:label "cite" ; - vs:term_status "unstable" . - vf:consume a owl:NamedIndividual , vf:Action ; vf:inputOutput vf:input ; @@ -877,7 +874,8 @@ vf:deliver-service a owl:NamedIndividual , vs:term_status "unstable" . vf:dropoff a owl:NamedIndividual , - vf:Action ; + vf:Action , + vf:PairsWith ; vf:inputOutput vf:output ; vf:pairsWith vf:pickup ; vf:resourceEffect vf:noEffect ; @@ -895,7 +893,8 @@ vf:lower a owl:NamedIndividual , vs:term_status "unstable" . vf:modify a owl:NamedIndividual , - vf:Action ; + vf:Action , + vf:PairsWith ; vf:inputOutput vf:output ; vf:pairsWith vf:accept ; vf:resourceEffect vf:noEffect ; @@ -913,7 +912,8 @@ vf:move a owl:NamedIndividual , vs:term_status "unstable" . vf:pickup a owl:NamedIndividual , - vf:Action ; + vf:Action , + vf:PairsWith ; vf:inputOutput vf:input ; vf:pairsWith vf:dropoff ; vf:resourceEffect vf:noEffect ; @@ -957,7 +957,7 @@ vf:transfer a owl:NamedIndividual , rdfs:label "transfer" ; vs:term_status "unstable" . -vf:transfer-custody a owl:NamedIndividual , +vf:transfer-custody a owl:NamedIndividual , vf:Action ; vf:inputOutput vf:notApplicable ; vf:pairsWith vf:notApplicable ; @@ -966,7 +966,7 @@ vf:transfer-custody a owl:NamedIndividual , rdfs:label "transfer-custody" ; vs:term_status "unstable" . -vf:use a owl:NamedIndividual , +vf:use a owl:NamedIndividual , vf:Action ; vf:inputOutput vf:input ; vf:pairsWith vf:notApplicable ;