-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathagent.ttl
More file actions
65 lines (50 loc) · 1.32 KB
/
Copy pathagent.ttl
File metadata and controls
65 lines (50 loc) · 1.32 KB
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
@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 foaf: <http://xmlns.com/foaf/0.1/#> .
@prefix schema: <http://schema.org/> .
@prefix vf: <https://w3id.org/valueflows/> .
# Classes
vf:Agent
a owl:Class ;
rdfs:label "vf:Agent" ;
rdfs:comment "" ;
owl:equivalentClass foaf:Agent .
vf:Person
a owl:Class ;
rdfs:label "vf:Person" ;
rdfs:comment "" ;
rdfs:subClassOf vf:Agent ;
owl:equivalentClass foaf:Person, schema:Person .
vf:Group
a owl:Class ;
rdfs:label "vf:Group" ;
rdfs:comment "" ;
rdfs:subClassOf vf:Agent ;
owl:equivalentClass foaf:Group .
vf:Relationship
a owl:Class ;
rdfs:label "vf:Relationship" ;
rdfs:comment "" .
# Properties
vf:subject
a owl:ObjectProperty ;
rdfs:label "vf:subject" ;
rdfs:domain vf:Relationship;
rdfs:range vf:Agent .
vf:relationship
a rdf:Property ;
rdfs:label "vf:relationship" ;
rdfs:domain vf:Relationship ;
rdfs:range rdf:Property .
vf:object
a owl:ObjectProperty ;
rdfs:label "vf:object" ;
rdfs:domain vf:Relationship;
rdfs:range vf:Agent .
vf:context
a owl:ObjectProperty ;
rdfs:label "vf:context" ;
rdfs:domain vf:Relationship ;
rdfs:range vf:Agent .