mirror of
https://github.com/bpmbpm/doc.git
synced 2026-04-28 11:30:42 +00:00
24 lines
782 B
Turtle
24 lines
782 B
Turtle
@prefix : <http://example.org/EKG/all_process#> .
|
|
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
|
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
|
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
|
@prefix sh: <http://www.w3.org/ns/shacl#> .
|
|
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
|
@prefix sem: <http://example.org/semanter/core#> .
|
|
@prefix geom: <http://example.org/semanter/geometry#> .
|
|
@prefix vad: <http://example.org/semanter/vad#> .
|
|
|
|
:Process_1_1
|
|
rdfs:type vad:ProcessType ;
|
|
vad:hasParent :Process_1 ;
|
|
vad:hasNext :Process_1_2 .
|
|
|
|
:Process_1_2
|
|
rdfs:type vad:ProcessType ;
|
|
vad:hasParent :Process_1 ;
|
|
vad:hasNext :Process_1_3 .
|
|
|
|
:Process_1_3
|
|
rdfs:type vad:ProcessType ;
|
|
vad:hasParent :Process_1 .
|
|
|