This repository has been archived by the owner on Dec 18, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
transport.ttl
96 lines (78 loc) · 1.88 KB
/
transport.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vf: <https://w3id.org/valueflows/> .
# Classes
vf:Agent
a owl:Class ;
rdfs:label "Agent" .
vf:Process
a owl:Class ;
rdfs:label "Process" .
vf:Transportation
a owl:Class ;
rdfs:label "Transportation" ;
rdfs:subClassOf vf:Process .
vf:Resource
a owl:Class ;
rdfs:label "Resource" .
vf:Location
a owl:Class ;
rdfs:label "Location" .
vf:InputOrOutput
a owl:Class ;
rdfs:label "InputOrOutput" .
# Properties
vf:io
a owl:ObjectProperty ;
rdfs:label "io" ;
rdfs:domain vf:Transportation ;
rdfs:range vf:InputOrOutput .
vf:load
a rdf:Property ;
rdfs:label "load" ;
rdfs:subPropertyOf vf:inflow ;
rdfs:domain vf:InputOrOutput ;
rdfs:range vf:Resource .
vf:transport
a rdf:Property ;
rdfs:label "transport" ;
rdfs:domain vf:InputOrOutput ;
rdfs:range vf:Resource .
vf:unload
a rdf:Property ;
rdfs:label "unload" ;
rdfs:subPropertyOf vf:outflow ;
rdfs:domain vf:InputOrOutput ;
rdfs:range vf:Resource .
vf:context
a owl:ObjectProperty ;
rdfs:label "context" ;
rdfs:domain vf:Process ;
rdfs:range vf:Agent .
vf:location
a owl:ObjectProperty ;
rdfs:label "location" ;
rdfs:domain vf:InputOrOutput ;
rdfs:range vf:Location .
vf:contains
a owl:ObjectProperty ;
rdfs:label "contains" ;
rdfs:domain vf:Resource ;
rdfs:range vf:Resource .
vf:provider
a owl:ObjectProperty ;
rdfs:label "provider" ;
rdfs:domain vf:InputOrOutput ;
rdfs:range vf:Agent .
vf:receiver
a owl:ObjectProperty ;
rdfs:label "receiver" ;
rdfs:domain vf:InputOrOutput ;
rdfs:range vf:Agent .
vf:carrier
a owl:ObjectProperty ;
rdfs:label "carrier" ;
rdfs:domain vf:InputOrOutput ;
rdfs:range vf:Agent .