-
Notifications
You must be signed in to change notification settings - Fork 0
/
spa.ttl
243 lines (209 loc) · 10.8 KB
/
spa.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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
@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 td: <https://www.w3.org/2019/wot/td#> .
@prefix jsonschema: <https://www.w3.org/2019/wot/json-schema#> .
@prefix schema: <http://schema.org/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix : <https://paul.ti.rw.fau.de/~jo00defe/voc/spa#> .
<https://paul.ti.rw.fau.de/~jo00defe/voc/spa> a owl:Ontology ;
vann:preferredNamespacePrefix "spa" ;
vann:preferredNamespaceUri "https://paul.ti.rw.fau.de/~jo00defe/voc/spa#" ;
owl:versionInfo "0.0.1" ;
rdfs:comment "Ontology to model preconditions and effects of interaction affordances in a W3C Web of Things Thing Description."@en ;
dcterms:title "Simple Planning Annotation"@en ;
dcterms:created "2024-03-07";
dcterms:license <http://purl.org/NET/rdflicense/cc-by4.0> ;
dcterms:contributor <https://freumi.inrupt.net/profile/card#> ,
<https://danielhenselmann.solidcommunity.net/profile/card#me>,
<https://dschraudner.solidcommunity.net/profile/card#me> ;
dcterms:author "Christoph Stade" .
:Effect a rdfs:Class ;
rdfs:label "Effect" ;
rdfs:comment "Effect that the execution of an action has on a property affordance."@en ;
rdfs:isDefinedBy <https://paul.ti.rw.fau.de/~jo00defe/voc/spa> .
:Expression a rdfs:Class ;
rdfs:label "Expression" ;
rdfs:comment "An expression able to be evaluated."@en ;
rdfs:isDefinedBy <https://paul.ti.rw.fau.de/~jo00defe/voc/spa> .
:BooleanExpression a rdfs:Class ;
rdfs:subClassOf :Expression ;
rdfs:label "BooleanExpression" ;
rdfs:comment "An expression of type boolean able to be evaluated."@en ;
rdfs:isDefinedBy <https://paul.ti.rw.fau.de/~jo00defe/voc/spa> .
:NumericalExpression a rdfs:Class ;
rdfs:subClassOf :Expression ;
rdfs:label "NumericalExpression" ;
rdfs:comment "An expression of type number able to be evaluated."@en ;
rdfs:isDefinedBy <https://paul.ti.rw.fau.de/~jo00defe/voc/spa> .
:NumericalExpressionParameter a rdfs:Class ;
owl:unionOf (:NumericalExpression xsd:float xsd:integer) ;
rdfs:label "NumericalExpressionParameter" ;
rdfs:comment "Possible parameter of numerical expression."@en ;
rdfs:isDefinedBy <https://paul.ti.rw.fau.de/~jo00defe/voc/spa> .
:BooleanPropertyAffordance a rdfs:Class;
rdfs:subClassOf td:PropertyAffordance , :BooleanExpression ;
rdfs:label "BooleanPropertyAffordance" ;
rdfs:comment "Property affordance of type boolean."@en ;
rdfs:isDefinedBy <https://paul.ti.rw.fau.de/~jo00defe/voc/spa> .
:NumberPropertyAffordance a rdfs:Class;
rdfs:subClassOf td:PropertyAffordance , :NumericalExpression ;
rdfs:label "NumberPropertyAffordance" ;
rdfs:comment "Property affordance of type number."@en ;
rdfs:isDefinedBy <https://paul.ti.rw.fau.de/~jo00defe/voc/spa> .
:HiddenProperty a rdfs:Class ;
rdfs:label "HiddenProperty" ;
rdfs:comment "Not exposed via read or write but able to be manipulated."@en ;
rdfs:isDefinedBy <https://paul.ti.rw.fau.de/~jo00defe/voc/spa> .
:false a owl:NamedIndividual , :BooleanExpression ;
rdfs:label "false" ;
rdfs:comment "Named individual representing a boolean false."@en ;
rdfs:seeAlso <https://www.w3.org/TR/xpath-functions-31/#func-false> ;
rdfs:isDefinedBy <https://paul.ti.rw.fau.de/~jo00defe/voc/spa> .
:true a owl:NamedIndividual , :BooleanExpression ;
rdfs:label "true" ;
rdfs:comment "Named individual representing a boolean true."@en ;
rdfs:seeAlso <https://www.w3.org/TR/xpath-functions-31/#func-true> ;
rdfs:isDefinedBy <https://paul.ti.rw.fau.de/~jo00defe/voc/spa> .
:hasEffect a rdf:Property ;
rdfs:label "hasEffect" ;
rdfs:comment "All effects of an action or property affordance."@en ;
rdfs:isDefinedBy <https://paul.ti.rw.fau.de/~jo00defe/voc/spa> ;
rdfs:domain td:InteractionAffordance ;
rdfs:range :Effect .
:hasTarget a rdf:Property;
rdfs:label "hasTarget" ;
rdfs:comment "Target property affordance of an effect."@en ;
rdfs:isDefinedBy <https://paul.ti.rw.fau.de/~jo00defe/voc/spa> ;
rdfs:domain :Effect ;
rdfs:range td:PropertyAffordance .
:hasAssignment a rdf:Property;
rdfs:label "hasAssignment" ;
rdfs:comment "Value assigned to a property by an effect."@en ;
rdfs:domain :Effect;
rdfs:range :Expression .
:hasPrecondition a rdf:Property ;
rdfs:label "hasPrecondition" ;
rdfs:comment "All preconditions of an action or property affordance."@en ;
rdfs:isDefinedBy <https://paul.ti.rw.fau.de/~jo00defe/voc/spa> ;
rdfs:domain td:InteractionAffordance ;
rdfs:range :BooleanExpression .
:logicalAndParameter a rdf:Property ;
rdfs:label "logicalAndParameter" ;
rdfs:comment "Parameter of a logical AND expression."@en ;
rdfs:seeAlso <http://www.openmath.org/cd/logic1#and> ;
rdfs:isDefinedBy <https://paul.ti.rw.fau.de/~jo00defe/voc/spa> ;
rdfs:range :BooleanExpression ;
rdfs:domain :BooleanExpression .
:logicalOrParameter a rdf:Property ;
rdfs:label "logicalOrParameter" ;
rdfs:comment "Parameter of a logical OR expression."@en ;
rdfs:seeAlso <http://www.openmath.org/cd/logic1#and> ;
rdfs:isDefinedBy <https://paul.ti.rw.fau.de/~jo00defe/voc/spa> ;
rdfs:range :BooleanExpression ;
rdfs:domain :BooleanExpression .
:logicalNotParameter a rdf:Property ;
rdfs:label "logicalNotParameter" ;
rdfs:comment "Parameter of a logical NOT expression."@en ;
rdfs:seeAlso <https://www.openmath.org/cd/logic1#not> ;
rdfs:isDefinedBy <https://paul.ti.rw.fau.de/~jo00defe/voc/spa> ;
rdfs:range :BooleanExpression ;
rdfs:domain :BooleanExpression .
:booleanEqualParameter a rdf:Property ;
rdfs:label "booleanEqualParameter" ;
rdfs:comment "Parameter of a boolean equal expression."@en ;
rdfs:seeAlso <https://www.openmath.org/cd/logic1#not> ;
rdfs:isDefinedBy <https://paul.ti.rw.fau.de/~jo00defe/voc/spa> ;
rdfs:range :BooleanExpression ;
rdfs:domain :BooleanExpression .
:leftGreaterThanParameter a rdf:Property ;
rdfs:label "leftGreaterThanParameter" ;
rdfs:comment "Left parameter of a greater than expression."@en ;
rdfs:seeAlso <https://www.w3.org/TR/xpath-functions-31/#func-numeric-greater-than> ;
rdfs:isDefinedBy <https://paul.ti.rw.fau.de/~jo00defe/voc/spa> ;
rdfs:range :NumericalExpression;
rdfs:domain :BooleanExpression .
:rightGreaterThanParameter a rdf:Property ;
rdfs:label "rightGreaterThanParameter" ;
rdfs:comment "Right parameter of a greater than expression."@en ;
rdfs:seeAlso <https://www.w3.org/TR/xpath-functions-31/#func-numeric-greater-than> ;
rdfs:isDefinedBy <https://paul.ti.rw.fau.de/~jo00defe/voc/spa> ;
rdfs:range :NumericalExpression;
rdfs:domain :BooleanExpression .
:leftLessThanParameter a rdf:Property ;
rdfs:label "leftLessThanParameter" ;
rdfs:comment "Left parameter of a less than expression."@en ;
rdfs:seeAlso <https://www.w3.org/TR/xpath-functions-31/#func-numeric-less-than> ;
rdfs:isDefinedBy <https://paul.ti.rw.fau.de/~jo00defe/voc/spa> ;
rdfs:range :NumericalExpression;
rdfs:domain :BooleanExpression .
:rightLessThanParameter a rdf:Property ;
rdfs:label "rightLessThanParameter" ;
rdfs:comment "Right parameter of a less than expression."@en ;
rdfs:seeAlso <https://www.w3.org/TR/xpath-functions-31/#func-numeric-less-than> ;
rdfs:isDefinedBy <https://paul.ti.rw.fau.de/~jo00defe/voc/spa> ;
rdfs:range :NumericalExpression;
rdfs:domain :BooleanExpression .
:numericEqualParameter a rdf:Property ;
rdfs:label "numericEqualParameter" ;
rdfs:comment "Parameter of a numeric equal expression."@en ;
rdfs:seeAlso <https://www.w3.org/TR/xpath-functions-31/#func-numeric-equal> ;
rdfs:isDefinedBy <https://paul.ti.rw.fau.de/~jo00defe/voc/spa> ;
rdfs:range :NumericalExpression ;
rdfs:domain :BooleanExpression .
:numericAddParameter a rdf:Property;
rdfs:label "numericAddParameter" ;
rdfs:comment "Parameter of a numeric add expression."@en ;
rdfs:isDefinedBy <https://paul.ti.rw.fau.de/~jo00defe/voc/spa> ;
rdfs:seeAlso <https://www.w3.org/TR/xpath-functions-31/#func-numeric-add> ;
rdfs:domain :NumericalExpression;
rdfs:range :NumericalExpressionParameter.
:leftNumericSubtractParameter a rdf:Property;
rdfs:label "leftNumericSubtractParameter" ;
rdfs:comment "Left parameter of a numeric subtract expression."@en ;
rdfs:isDefinedBy <https://paul.ti.rw.fau.de/~jo00defe/voc/spa> ;
rdfs:seeAlso <https://www.w3.org/TR/xpath-functions-31/#func-numeric-subtract> ;
rdfs:domain :NumericalExpression;
rdfs:range :NumericalExpressionParameter.
:rightNumericSubtractParameter a rdf:Property;
rdfs:label "rightNumericSubtractParameter" ;
rdfs:comment "Right parameter of a numeric subtract expression."@en ;
rdfs:isDefinedBy <https://paul.ti.rw.fau.de/~jo00defe/voc/spa> ;
rdfs:seeAlso <https://www.w3.org/TR/xpath-functions-31/#func-numeric-subtract> ;
rdfs:domain :NumericalExpression;
rdfs:range :NumericalExpressionParameter.
:numericMultiplyParameter a rdf:Property;
rdfs:label "numericMultiplyParameter" ;
rdfs:comment "Parameter of a numeric multiply expression."@en ;
rdfs:isDefinedBy <https://paul.ti.rw.fau.de/~jo00defe/voc/spa> ;
rdfs:seeAlso <https://www.w3.org/TR/xpath-functions-31/#func-numeric-multiply> ;
rdfs:domain :NumericalExpression;
rdfs:range :NumericalExpressionParameter.
:leftNumericDivideParameter a rdf:Property;
rdfs:label "leftNumericDivideParameter" ;
rdfs:comment "Left parameter of a numeric divide expression."@en ;
rdfs:isDefinedBy <https://paul.ti.rw.fau.de/~jo00defe/voc/spa> ;
rdfs:seeAlso <https://www.w3.org/TR/xpath-functions-31/#func-numeric-divide> ;
rdfs:domain :NumericalExpression;
rdfs:range :NumericalExpressionParameter.
:rightNumericDivideParameter a rdf:Property;
rdfs:label "rightNumericDivideParameter" ;
rdfs:comment "Right parameter of a numeric divide expression."@en ;
rdfs:isDefinedBy <https://paul.ti.rw.fau.de/~jo00defe/voc/spa> ;
rdfs:seeAlso <https://www.w3.org/TR/xpath-functions-31/#func-numeric-divide> ;
rdfs:domain :NumericalExpression;
rdfs:range :NumericalExpressionParameter.
:hasHiddenProperty a rdf:Property ;
rdfs:label "hasHiddenProperty" ;
rdfs:comment "All hidden properties of a Thing, that are not exposed via WoT read or write properties."@en ;
rdfs:isDefinedBy <https://paul.ti.rw.fau.de/~jo00defe/voc/spa> ;
rdfs:domain td:Thing ;
rdfs:range :HiddenProperty .
td:InteractionAffordance a rdfs:Class ;
rdfs:seeAlso <https://www.w3.org/2019/wot/td#InteractionAffordance> .
td:PropertyAffordance a rdfs:Class ;
rdfs:seeAlso <https://www.w3.org/2019/wot/td#PropertyAffordance> .
td:Thing a rdfs:Class ;
rdfs:seeAlso <https://www.w3.org/2019/wot/td#Thing> .