-
Notifications
You must be signed in to change notification settings - Fork 0
/
ontologie.ttl
136 lines (103 loc) · 3.38 KB
/
ontologie.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
@prefix : <http://wegivethe99percents.org/onto#> .
@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 foaf: <http://xmlns.com/foaf/0.1/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# Classes
:Idea a owl:Class .
:Person a owl:Class ;
rdfs:subClassOf foaf:Person .
:Data a owl:Class .
:Group a owl:Class .
:Space a owl:Class .
:TimeInterval a owl:Class .
# Idées
:Principle a owl:Class ;
rdfs:subClassOf :Idea ;
rdfs:label "Idée"@fr ;
rdfs:comment "Contient principes, opinions, etc." .
:Proposition a owl:Class ;
rdfs:subClassOf :Idea ;
rdfs:label "Proposition"@fr .
:Law a owl:Class ;
rdfs:subClassOf :Idea ;
rdfs:label "Loi"@fr .
:Fact a owl:Class ;
rdfs:subClassOf :Idea ;
rdfs:label "Fait"@fr .
:Effect a owl:Class ;
rdfs:subClassOf :Idea ;
rdfs:label "Effet"@fr .
:Opinion a owl:Class ;
rdfs:subClassOf :Idea ;
rdfs:label "Opinion"@fr .
:Hypothesis a owl:Class ;
rdfs:subClassOf :Idea ;
rdfs:label "Hypothèse"@fr .
:Summary a owl:Class ;
rdfs:subClassOf :Idea ;
rdfs:label "Résumé"@fr .
:Argument a owl:Class ;
rdfs:subClassOf :Idea ;
rdfs:label "Argument"@fr .
:Problem a owl:Class ;
rdfs:subClassOf :Idea ;
rdfs:label "Problème"@fr .
:Solution a owl:Class ;
rdfs:subClassOf :Idea ;
rdfs:label "Solution"@fr .
:Cost a owl:Class ;
rdfs:subClassOf :Idea ;
rdfs:label "Coût"@fr .
# Propriétés
:has_a a owl:ObjectProperty ;
rdfs:label "a un"@fr ;
rdfs:domain :Idea ;
rdfs:range [owl:unionOf(:Hypothesis :Effect :Summary :Argument :Problem :Solution)] .
:is_in a owl:ObjectProperty ;
rdfs:label "est inclus dans"@fr .
:implies a owl:ObjectProperty ;
rdfs:label "implique"@fr ;
rdfs:domain :Idea ;
rdfs:range [owl:unionOf(:Problem :Opinion :Effect :Proposition)] .
:is_incomp a owl:ObjectProperty ;
rdfs:label "est incompatible avec"@fr ;
rdfs:domain :Idea ;
rdfs:range :Idea .
:is_created_by a owl:ObjectProperty ;
rdfs:label "est créé par"@fr ;
rdfs:domain :Idea ;
rdfs:range [owl:unionOf(:Person :Group)] .
:is_backed_by a owl:ObjectProperty ;
rdfs:label "est soutenu par"@fr ;
rdfs:domain :Idea ;
rdfs:range [owl:unionOf(:Person :Argument :Principle :Data)] .
:is_opposed_by a owl:ObjectProperty ;
rdfs:label "est contesté par"@fr ;
rdfs:domain :Idea ;
rdfs:range [owl:unionOf(:Person :Argument :Principle :Data)] .
:holds_in a owl:ObjectProperty ;
rdfs:label "est valable pour"@fr ;
rdfs:domain [owl:unionOf(:Proposition :Law :Fact :Effect :Cost)] ;
rdfs:range [owl:unionOf(:Space :TimeInterval)] .
:has_cost a owl:ObjectProperty ;
rdfs:label "a pour coût"@fr ;
rdfs:domain [owl:unionOf(:Proposition :Law :Fact :Effect :Solution)] ;
rdfs:range :Cost .
:value a owl:ObjectProperty ;
rdfs:label "a pour valeur"@fr ;
rdfs:domain :Cost ;
rdfs:range xsd:integer .
:unit a owl:ObjectProperty ;
rdfs:label "a pour unité/devise"@fr ;
rdfs:domain :Cost ;
rdfs:range xsd:string .
:bears_on a owl:ObjectProperty ;
rdfs:label "porte sur"@fr ;
rdfs:domain :Cost ;
rdfs:range [owl:unionOf(:Person :Group)] .
:source a owl:ObjectProperty ;
rdfs:label "a pour source"@fr ;
rdfs:domain [owl:unionOf(:Idea :Data)] ;
rdfs:range xsd:anyURI .