|
@@ -48,7 +48,7 @@ vocabulary <http://ontology.rys.one/drivetrain/vocabulary/ftg#> as ftg {
|
|
|
|
|
|
scalar property hasLink [
|
|
scalar property hasLink [
|
|
domain ArtefactInstance
|
|
domain ArtefactInstance
|
|
- # Probably should be some URI?
|
|
|
|
|
|
+ // Probably should be some URI?
|
|
range xsd:string
|
|
range xsd:string
|
|
]
|
|
]
|
|
|
|
|
|
@@ -59,7 +59,7 @@ vocabulary <http://ontology.rys.one/drivetrain/vocabulary/ftg#> as ftg {
|
|
|
|
|
|
enumerated scalar PortDirection [
|
|
enumerated scalar PortDirection [
|
|
"in",
|
|
"in",
|
|
- "out",
|
|
|
|
|
|
+ "out"
|
|
]
|
|
]
|
|
|
|
|
|
scalar property hasPortDirection [
|
|
scalar property hasPortDirection [
|
|
@@ -70,7 +70,7 @@ vocabulary <http://ontology.rys.one/drivetrain/vocabulary/ftg#> as ftg {
|
|
|
|
|
|
enumerated scalar EventType [
|
|
enumerated scalar EventType [
|
|
"begin",
|
|
"begin",
|
|
- "end",
|
|
|
|
|
|
+ "end"
|
|
]
|
|
]
|
|
|
|
|
|
scalar property isOfEventType [
|
|
scalar property isOfEventType [
|
|
@@ -101,15 +101,17 @@ vocabulary <http://ontology.rys.one/drivetrain/vocabulary/ftg#> as ftg {
|
|
|
|
|
|
relation entity HasOrigin [
|
|
relation entity HasOrigin [
|
|
from Edge
|
|
from Edge
|
|
- # Could also be Node, but this is more restrictive
|
|
|
|
- to Port, Formalism, Fork, Join, TraceEvent, Transformation, Activity, Artefact, ArtefactInstance, Initial
|
|
|
|
|
|
+ // Could also be Node, but this is more restrictive
|
|
|
|
+ //to Port, Formalism, Fork, Join, TraceEvent, Transformation, Activity, Artefact, ArtefactInstance, Initial
|
|
|
|
+ to Node
|
|
forward hasOrigin
|
|
forward hasOrigin
|
|
reverse isOriginOf
|
|
reverse isOriginOf
|
|
]
|
|
]
|
|
|
|
|
|
relation entity HasDestination [
|
|
relation entity HasDestination [
|
|
from Edge
|
|
from Edge
|
|
- to Port, Formalism, Fork, Join, TraceEvent, Transformation, Activity, Artefact, ArtefactInstance, Final
|
|
|
|
|
|
+ //to Port, Formalism, Fork, Join, TraceEvent, Transformation, Activity, Artefact, ArtefactInstance, Final
|
|
|
|
+ to Node
|
|
forward hasDestination
|
|
forward hasDestination
|
|
reverse isDestinationOf
|
|
reverse isDestinationOf
|
|
]
|
|
]
|