1 # Copyright 2016 ITEA 12004 SEAS Project.
2 # Copyright 2016-2019 Asema Electronics Ltd.
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
8 # http://www.apache.org/licenses/LICENSE-2.0
10 # Unless required by applicable law or agreed to in writing,
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
16 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . #Resource data framework
17 @prefix owl: <http://www.w3.org/2002/07/owl#> . #Owl ontology language
18 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . #RDF schema
19 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #XML standard datatypes
20 @prefix dc: <http://purl.org/dc/terms/> . #Dublin Core Metadata Initiative terms
21 @prefix vann: <http://purl.org/vocab/vann/> . #A vocabulary for annotating vocabulary descriptions
22 @prefix voaf: <http://purl.org/vocommons/voaf#> . #A vocabulary of a friend, for describing relations between linked vocabularies
23 @prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> . #Semantic web vocabulary status ontology
24 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
25 @prefix gr: <http://purl.org/goodrelations/v1#> .
27 @prefix smartapi: <https://w3id.org/smartapi/>.
28 @base <https://w3id.org/smartapi/>.
31 #all standard smartapi quantities and units
32 smartapi:IndividualsOntology a owl:Ontology , voaf:Ontology ;
33 dc:title "SmartAPI-IndividualsOntology ontology"@en ;
34 dc:description "The Smart API individuals Ontology."@en ;
35 dc:issued "2016-01-26"^^xsd:date ;
36 dc:modified "2016-10-06"^^xsd:date ;
37 dc:creator <http://www.vtt.fi/JarmoKalaoja> ;
38 dc:creator <http://www.maxime-lefrancois.info/me#> ;
39 dc:contributor <http://zimmer.aprilfoolsreview.com/antoine#me> ;
40 dc:contributor [a foaf:Person ; foaf:name "Erkki Siira" ] ;
41 dc:contributor [a foaf:Person ; foaf:name "Takoua Ghariani" ] ;
42 dc:contributor [a foaf:Person ; foaf:name "Marc Girod-Genet" ] ;
43 dc:contributor [a foaf:Person ; foaf:name "Hannu Järvinen" ] ;
44 dc:contributor [a foaf:Person ; foaf:name "Pyry Lehtimäki" ] ;
45 vann:preferredNamespacePrefix "smartapi" ;
46 vann:preferredNamespaceUri <https://w3id.org/smartapi/> ;
47 owl:versionIRI <https://w3id.org/smartapi/IndividualsOntology/1.0> ;
48 owl:versionInfo "v1.0" ;
49 owl:imports <http://purl.org/goodrelations/v1.owl> .
52 #Allows to express the category for data such as its intended role, can be extended on different domains
53 #One can also create own categories as needed, evaluation can be member of several of these categories
57 smartapi:Category a owl:Class ;
58 rdfs:label "Category"@en ;
59 rdfs:comment "Category of evaluation"@en ;
60 rdfs:isDefinedBy smartapi:IndividualsOntology ;
61 vs:term_status "testing".
63 smartapi:EnergyProduction a smartapi:Category ;
64 rdfs:label "Energy production"@en ;
65 rdfs:comment "Energy production"@en ;
66 rdfs:isDefinedBy smartapi:IndividualsOntology ;
67 vs:term_status "testing".
69 smartapi:SolarEnergyProduction a smartapi:Category ;
70 rdfs:label "Solar energy production"@en ;
71 rdfs:comment "Energy production by PV panels"@en ;
72 rdfs:isDefinedBy smartapi:IndividualsOntology ;
73 vs:term_status "testing".
75 smartapi:WindEnergyProduction a smartapi:Category ;
76 rdfs:label "Wind energy production"@en ;
77 rdfs:comment "Energy production by wind turbine"@en ;
78 rdfs:isDefinedBy smartapi:IndividualsOntology ;
79 vs:term_status "testing".
81 smartapi:EnergyConsumption a smartapi:Category ;
82 rdfs:label "Energy consumption"@en ;
83 rdfs:comment "Energy consumption"@en ;
84 rdfs:isDefinedBy smartapi:IndividualsOntology ;
85 vs:term_status "testing".
87 smartapi:Weather a owl:Class;
88 rdfs:label "Weather"@en ;
89 rdfs:comment "Weather expressed as evaluation"@en ;
90 vs:term_status "testing" ;
91 rdfs:isDefinedBy smartapi:IndividualsOntology.
93 smartapi:Forecast a smartapi:Category ;
94 rdfs:label "Forecast"@en ;
95 rdfs:comment "Forecast expressed as evaluation"@en ;
96 rdfs:isDefinedBy smartapi:IndividualsOntology ;
97 vs:term_status "testing".
99 smartapi:History a smartapi:Category ;
100 rdfs:label "History"@en ;
101 rdfs:comment "A historic (measured) data saved as evaluation."@en ;
102 rdfs:isDefinedBy smartapi:IndividualsOntology ;
103 vs:term_status "testing".
105 smartapi:Plan a smartapi:Category ;
106 rdfs:label "Plan"@en ;
107 rdfs:comment "A plan expressed as evaluation."@en ;
108 rdfs:isDefinedBy smartapi:IndividualsOntology ;
109 vs:term_status "testing".
111 smartapi:Observation a smartapi:Category ;
112 rdfs:label "Observation"@en ;
113 rdfs:comment "A measured data expressed as evaluation."@en ;
114 rdfs:isDefinedBy smartapi:IndividualsOntology ;
115 vs:term_status "testing".
117 smartapi:Command a smartapi:Category ;
118 rdfs:label "Command"@en ;
119 rdfs:comment "Commands expressed as evaluation data."@en ;
120 rdfs:isDefinedBy smartapi:IndividualsOntology ;
121 vs:term_status "testing".
123 smartapi:InitialValue a smartapi:Category ;
124 rdfs:label "Intitial"@en ;
125 rdfs:comment "Intial values expressed as evaluation"@en ;
126 rdfs:isDefinedBy smartapi:IndividualsOntology ;
127 vs:term_status "testing".
129 smartapi:Baseline a smartapi:Category ;
130 rdfs:label "Baseline"@en ;
131 rdfs:comment "A baseline for comparison expressed as evaluation data."@en ;
132 rdfs:isDefinedBy smartapi:IndividualsOntology ;
133 vs:term_status "testing".
135 smartapi:Target a smartapi:Category ;
136 rdfs:label "Target"@en ;
137 rdfs:comment "Target values expressed as evaluation data."@en ;
138 rdfs:isDefinedBy smartapi:IndividualsOntology ;
139 vs:term_status "testing".
141 smartapi:Limit a smartapi:Category ;
142 rdfs:label "Limit"@en ;
143 rdfs:comment "Limit values expressed as evaluation data."@en ;
144 rdfs:isDefinedBy smartapi:IndividualsOntology ;
145 vs:term_status "testing".
147 smartapi:Stream a smartapi:Category ;
148 rdfs:label "Stream"@en ;
149 rdfs:comment "The data presented by this evaluation is part of continuity of a larger stream of data."@en ;
150 rdfs:isDefinedBy smartapi:IndividualsOntology ;
151 vs:term_status "testing".
155 smartapi:GenerationMethod a owl:Class ;
156 rdfs:label "Generation method"@en ;
157 rdfs:comment "The method of generation of something."@en ;
158 rdfs:isDefinedBy smartapi:IndividualsOntology ;
159 vs:term_status "testing".
161 smartapi:Autofill a smartapi:GenerationMethod ;
162 rdfs:label "Autofill"@en ;
163 rdfs:comment "Autofill feature."@en ;
164 rdfs:isDefinedBy smartapi:IndividualsOntology ;
165 vs:term_status "testing".
167 smartapi:Geocoding a smartapi:GenerationMethod ;
168 rdfs:label "Geocoding"@en ;
169 rdfs:comment "Converting an address into coordinates."@en ;
170 rdfs:isDefinedBy smartapi:IndividualsOntology ;
171 vs:term_status "testing".
175 smartapi:Distribution a owl:Class ;
176 rdfs:label "Distribution"@en ;
177 rdfs:comment "The probability distribution of value."@en ;
178 rdfs:isDefinedBy smartapi:IndividualsOntology;
179 vs:term_status "testing".
181 smartapi:UniformDistribution a smartapi:Distribution ;
182 rdfs:label "Uniform distribution"@en ;
183 rdfs:comment '''the continuous uniform distribution or rectangular distribution is a family of
184 symmetric probability distributions such that for each member of the family, all intervals of
185 the same length on the distribution's support are equally probable.'''@en ;
186 rdfs:isDefinedBy smartapi:IndividualsOntology ;
187 vs:term_status "testing".
189 smartapi:NormalDistribution a smartapi:Distribution ;
190 rdfs:label "Normal distribution"@en ;
191 rdfs:comment "A very common continuous probability distribution, which are often used to represent real-valued random variables whose distributions are not known."@en ;
192 rdfs:isDefinedBy smartapi:IndividualsOntology ;
193 vs:term_status "testing".
195 # method and operation
197 smartapi:Method a owl:Class ;
198 rdfs:label "Method"@en ;
199 rdfs:comment "A method typically used in software systems, communication, and application programming interfaces."@en ;
200 rdfs:isDefinedBy smartapi:IndividualsOntology ;
201 vs:term_status "testing" .
203 smartapi:Operation a owl:Class ;
204 rdfs:label "Operation"@en ;
205 rdfs:comment "An operation on a system."@en ;
206 rdfs:isDefinedBy smartapi:IndividualsOntology ;
207 vs:term_status "testing" .
209 smartapi:Read a smartapi:Operation, smartapi:Method ;
210 rdfs:label "Read"@en ;
211 rdfs:comment "Method to read data."@en ;
212 rdfs:isDefinedBy smartapi:IndividualsOntology ;
213 vs:term_status "testing" .
215 smartapi:Write a smartapi:Operation, smartapi:Method ;
216 rdfs:label "Write"@en ;
217 rdfs:comment "Method to write data."@en ;
218 rdfs:isDefinedBy smartapi:IndividualsOntology ;
219 vs:term_status "testing" .
221 smartapi:Record a smartapi:Operation, smartapi:Method ;
222 rdfs:label "Record"@en ;
223 rdfs:comment "Method to record/write data to memory and optionally to database without sending it forward to any interfaces, such as devices."@en ;
224 rdfs:isDefinedBy smartapi:IndividualsOntology ;
225 vs:term_status "testing" .
227 smartapi:Delete a smartapi:Operation, smartapi:Method ;
228 rdfs:label "Delete"@en ;
229 rdfs:comment "Method to delete data."@en ;
230 rdfs:isDefinedBy smartapi:IndividualsOntology ;
231 vs:term_status "testing" .
233 smartapi:Notify a smartapi:Method ;
234 rdfs:label "Notify"@en ;
235 rdfs:comment "Method for notification activity."@en ;
236 rdfs:isDefinedBy smartapi:IndividualsOntology ;
237 vs:term_status "testing" .
239 smartapi:Test a smartapi:Method ;
240 rdfs:label "Test"@en ;
241 rdfs:comment "Testing."@en ;
242 rdfs:isDefinedBy smartapi:IndividualsOntology ;
243 vs:term_status "testing" .
245 smartapi:Create a smartapi:Method ;
246 rdfs:label "Create"@en ;
247 rdfs:comment "Method to create something on the receiving end as an in memory resource."@en ;
248 rdfs:isDefinedBy smartapi:IndividualsOntology ;
249 vs:term_status "testing" .
251 smartapi:Initialize a smartapi:Method ;
252 rdfs:label "Initialize"@en ;
253 rdfs:comment "Method to initialize something on the receiving end as a persistent resource."@en ;
254 rdfs:isDefinedBy smartapi:IndividualsOntology ;
255 vs:term_status "testing" .
257 smartapi:Subscribe a smartapi:Method ;
258 rdfs:label "Subscribe"@en ;
259 rdfs:comment "Method for providing, receiving, or making use of something of a continuing or periodic nature."@en ;
260 rdfs:isDefinedBy smartapi:IndividualsOntology ;
261 vs:term_status "testing" .
263 smartapi:Unsubscribe a smartapi:Method ;
264 rdfs:label "Unsubscribe"@en ;
265 rdfs:comment "Method for unsubscribing from subscriptions."@en ;
266 rdfs:isDefinedBy smartapi:IndividualsOntology ;
267 vs:term_status "testing" .
269 smartapi:Ping a smartapi:Method ;
270 rdfs:label "Ping"@en ;
271 rdfs:comment "A method to test reachability of an object."@en ;
272 rdfs:isDefinedBy smartapi:IndividualsOntology ;
273 vs:term_status "testing" .
275 smartapi:Pong a smartapi:Method ;
276 rdfs:label "Ping"@en ;
277 rdfs:comment "A method to respond to the reachability test of an object made with Ping."@en ;
278 rdfs:isDefinedBy smartapi:IndividualsOntology ;
279 vs:term_status "testing" .
281 smartapi:Check a owl:Class ;
282 rdfs:label "Check"@en ;
283 rdfs:comment "A method to check if the data checks up with what is provided in the request."@en ;
284 rdfs:isDefinedBy smartapi:IndividualsOntology ;
285 vs:term_status "testing" .
287 smartapi:Increase a smartapi:Operation ;
288 rdfs:label "Increase"@en ;
289 rdfs:comment "Increase the value."@en ;
290 rdfs:isDefinedBy smartapi:IndividualsOntology ;
291 vs:term_status "testing" .
293 smartapi:Decrease a smartapi:Operation ;
294 rdfs:label "Decrease"@en ;
295 rdfs:comment "Decrease the value."@en ;
296 rdfs:isDefinedBy smartapi:IndividualsOntology ;
297 vs:term_status "testing" .
299 # day of the week, used as value for smartapi:during
301 smartapi:Weekday a gr:DayOfWeek ;
302 rdfs:label "Weekday"@en ;
303 rdfs:comment "Weekday, Monday or Tuesday, ... or Friday"@en ;
304 rdfs:isDefinedBy smartapi:IndividualsOntology ;
305 vs:term_status "testing" .
307 smartapi:Weekend a gr:DayOfWeek ;
308 rdfs:label "Weekend"@en ;
309 rdfs:comment "Weekend, i.e., Saturday or Sunday"@en ;
310 rdfs:isDefinedBy smartapi:IndividualsOntology ;
311 vs:term_status "testing" .
313 smartapi:MonthOfYear a owl:Class ;
314 rdfs:label "Month of year"@en ;
315 rdfs:comment "a month of a year."@en ;
316 rdfs:isDefinedBy smartapi:IndividualsOntology ;
317 vs:term_status "testing" .
319 smartapi:January a smartapi:MonthOfYear ;
320 rdfs:label "January"@en ;
321 rdfs:comment "January"@en ;
322 rdfs:isDefinedBy smartapi:IndividualsOntology ;
323 vs:term_status "testing" .
325 smartapi:February a smartapi:MonthOfYear ;
326 rdfs:label "February"@en ;
327 rdfs:comment "February"@en ;
328 rdfs:isDefinedBy smartapi:IndividualsOntology ;
329 vs:term_status "testing" .
331 smartapi:March a smartapi:MonthOfYear ;
332 rdfs:label "March"@en ;
333 rdfs:comment "March"@en ;
334 rdfs:isDefinedBy smartapi:IndividualsOntology ;
335 vs:term_status "testing" .
337 smartapi:April a smartapi:MonthOfYear ;
338 rdfs:label "April"@en ;
339 rdfs:comment "April"@en ;
340 rdfs:isDefinedBy smartapi:IndividualsOntology ;
341 vs:term_status "testing" .
343 smartapi:May a smartapi:MonthOfYear ;
344 rdfs:label "May"@en ;
345 rdfs:comment "May"@en ;
346 rdfs:isDefinedBy smartapi:IndividualsOntology ;
347 vs:term_status "testing" .
349 smartapi:June a smartapi:MonthOfYear ;
350 rdfs:label "June"@en ;
351 rdfs:comment "June"@en ;
352 rdfs:isDefinedBy smartapi:IndividualsOntology ;
353 vs:term_status "testing" .
355 smartapi:July a smartapi:MonthOfYear ;
356 rdfs:label "July"@en ;
357 rdfs:comment "July"@en ;
358 rdfs:isDefinedBy smartapi:IndividualsOntology ;
359 vs:term_status "testing" .
361 smartapi:August a smartapi:MonthOfYear ;
362 rdfs:label "August"@en ;
363 rdfs:comment "August"@en ;
364 rdfs:isDefinedBy smartapi:IndividualsOntology ;
365 vs:term_status "testing" .
367 smartapi:September a smartapi:MonthOfYear ;
368 rdfs:label "September"@en ;
369 rdfs:comment "September"@en ;
370 rdfs:isDefinedBy smartapi:IndividualsOntology ;
371 vs:term_status "testing" .
373 smartapi:October a smartapi:MonthOfYear ;
374 rdfs:label "October"@en ;
375 rdfs:comment "October"@en ;
376 rdfs:isDefinedBy smartapi:IndividualsOntology ;
377 vs:term_status "testing" .
379 smartapi:November a smartapi:MonthOfYear ;
380 rdfs:label "November"@en ;
381 rdfs:comment "November"@en ;
382 rdfs:isDefinedBy smartapi:IndividualsOntology ;
383 vs:term_status "testing" .
385 smartapi:December a smartapi:MonthOfYear ;
386 rdfs:label "December"@en ;
387 rdfs:comment "December"@en ;
388 rdfs:isDefinedBy smartapi:IndividualsOntology ;
389 vs:term_status "testing" .
391 # encryption key types
393 smartapi:CryptographicKey a owl:Class ;
394 rdfs:label "Cryptographic key"@en ;
395 rdfs:comment "Key that, e.g., in encryption specifies the transformation of plaintext into ciphertext."@en ;
396 rdfs:isDefinedBy smartapi:IndividualsOntology ;
397 vs:term_status "testing".
399 smartapi:PublicKey a smartapi:CryptographicKey ;
400 rdfs:label "Public key"@en ;
401 rdfs:comment "Key for, e.g., encrypting content which may be disseminated widely, as only the holder of the paired private key can decrypt the message encrypted with the public key."@en ;
402 rdfs:isDefinedBy smartapi:IndividualsOntology ;
403 vs:term_status "testing".
405 smartapi:PrivateKey a smartapi:CryptographicKey ;
406 rdfs:label "Private key"@en ;
407 rdfs:comment "Key for, e.g., decrypting content which has been encrypted with the public key."@en ;
408 rdfs:isDefinedBy smartapi:IndividualsOntology ;
409 vs:term_status "testing".
411 smartapi:SessionKey a smartapi:CryptographicKey ;
412 rdfs:label "Session key"@en ;
413 rdfs:comment "Single-use symmetric key used for, e.g., encrypting content."@en ;
414 rdfs:isDefinedBy smartapi:IndividualsOntology ;
415 vs:term_status "testing".
417 smartapi:NotarizedSessionKey a smartapi:CryptographicKey ;
418 rdfs:label "Notarized session key"@en ;
419 rdfs:comment "Single-use symmetric key stored by notary."@en ;
420 rdfs:isDefinedBy smartapi:IndividualsOntology ;
421 vs:term_status "testing".
426 xsd:string a rdfs:Datatype ;
427 rdfs:label "String"@en ;
428 rdfs:comment "XSD string datatype."@en ;
429 rdfs:isDefinedBy smartapi:IndividualsOntology ;
430 vs:term_status "testing" .
432 xsd:decimal a rdfs:Datatype ;
433 rdfs:label "Decimal"@en ;
434 rdfs:comment "XSD decimal datatype."@en ;
435 rdfs:isDefinedBy smartapi:IndividualsOntology ;
436 vs:term_status "testing" .
438 xsd:integer a rdfs:Datatype ;
439 rdfs:label "Integer"@en ;
440 rdfs:comment "XSD integer datatype."@en ;
441 rdfs:isDefinedBy smartapi:IndividualsOntology ;
442 vs:term_status "testing" .
444 xsd:nonPositiveInteger a rdfs:Datatype ;
445 rdfs:label "Non-positive integer"@en ;
446 rdfs:comment "XSD non-positive integer datatype."@en ;
447 rdfs:isDefinedBy smartapi:IndividualsOntology ;
448 vs:term_status "testing" .
450 xsd:long a rdfs:Datatype ;
451 rdfs:label "Long"@en ;
452 rdfs:comment "XSD long datatype."@en ;
453 rdfs:isDefinedBy smartapi:IndividualsOntology ;
454 vs:term_status "testing" .
456 xsd:unsignedLong a rdfs:Datatype ;
457 rdfs:label "Unsigned long"@en ;
458 rdfs:comment "XSD unsigned long datatype."@en ;
459 rdfs:isDefinedBy smartapi:IndividualsOntology ;
460 vs:term_status "testing" .
462 xsd:hexBinary a rdfs:Datatype ;
463 rdfs:label "Hex binary"@en ;
464 rdfs:comment "XSD hex binary datatype."@en ;
465 rdfs:isDefinedBy smartapi:IndividualsOntology ;
466 vs:term_status "testing" .
468 xsd:dateTime a rdfs:Datatype ;
469 rdfs:label "Date time"@en ;
470 rdfs:comment "XSD date time datatype."@en ;
471 rdfs:isDefinedBy smartapi:IndividualsOntology ;
472 vs:term_status "testing" .
474 xsd:gYear a rdfs:Datatype ;
475 rdfs:label "G year"@en ;
476 rdfs:comment "XSD g year datatype."@en ;
477 rdfs:isDefinedBy smartapi:IndividualsOntology ;
478 vs:term_status "testing" .
480 xsd:anyURI a rdfs:Datatype ;
481 rdfs:label "Any URI"@en ;
482 rdfs:comment "XSD any URI datatype."@en ;
483 rdfs:isDefinedBy smartapi:IndividualsOntology ;
484 vs:term_status "testing" .
486 xsd:NMTOKEN a rdfs:Datatype ;
487 rdfs:label "NM TOKEN"@en ;
488 rdfs:comment "XSD NMTOKEN datatype."@en ;
489 rdfs:isDefinedBy smartapi:IndividualsOntology ;
490 vs:term_status "testing" .
492 xsd:normalizedString a rdfs:Datatype ;
493 rdfs:label "Normalized string"@en ;
494 rdfs:comment "XSD normalized string datatype."@en ;
495 rdfs:isDefinedBy smartapi:IndividualsOntology ;
496 vs:term_status "testing" .
498 xsd:float a rdfs:Datatype ;
499 rdfs:label "Float"@en ;
500 rdfs:comment "XSD float datatype."@en ;
501 rdfs:isDefinedBy smartapi:IndividualsOntology ;
502 vs:term_status "testing" .
504 xsd:nonNegativeInteger a rdfs:Datatype ;
505 rdfs:label "Non-negative integer"@en ;
506 rdfs:comment "XSD non-negative integer datatype."@en ;
507 rdfs:isDefinedBy smartapi:IndividualsOntology ;
508 vs:term_status "testing" .
510 xsd:negativeInteger a rdfs:Datatype ;
511 rdfs:label "Negative integer"@en ;
512 rdfs:comment "XSD negative integer datatype."@en ;
513 rdfs:isDefinedBy smartapi:IndividualsOntology ;
514 vs:term_status "testing" .
516 xsd:int a rdfs:Datatype ;
517 rdfs:label "Int"@en ;
518 rdfs:comment "XSD int datatype."@en ;
519 rdfs:isDefinedBy smartapi:IndividualsOntology ;
520 vs:term_status "testing" .
522 xsd:unsignedInt a rdfs:Datatype ;
523 rdfs:label "Unsigned int"@en ;
524 rdfs:comment "XSD unsigned int datatype."@en ;
525 rdfs:isDefinedBy smartapi:IndividualsOntology ;
526 vs:term_status "testing" .
528 xsd:base64Binary a rdfs:Datatype ;
529 rdfs:label "Base 64 binary"@en ;
530 rdfs:comment "XSD base 64 binary datatype."@en ;
531 rdfs:isDefinedBy smartapi:IndividualsOntology ;
532 vs:term_status "testing" .
534 xsd:time a rdfs:Datatype ;
535 rdfs:label "Time"@en ;
536 rdfs:comment "XSD time datatype."@en ;
537 rdfs:isDefinedBy smartapi:IndividualsOntology ;
538 vs:term_status "testing" .
540 xsd:gMonthDay a rdfs:Datatype ;
541 rdfs:label "G month day"@en ;
542 rdfs:comment "XSD g month day datatype."@en ;
543 rdfs:isDefinedBy smartapi:IndividualsOntology ;
544 vs:term_status "testing" .
546 xsd:token a rdfs:Datatype ;
547 rdfs:label "Token"@en ;
548 rdfs:comment "XSD token datatype."@en ;
549 rdfs:isDefinedBy smartapi:IndividualsOntology ;
550 vs:term_status "testing" .
552 xsd:Name a rdfs:Datatype ;
553 rdfs:label "Name"@en ;
554 rdfs:comment "XSD name datatype."@en ;
555 rdfs:isDefinedBy smartapi:IndividualsOntology ;
556 vs:term_status "testing" .
558 xsd:boolean a rdfs:Datatype ;
559 rdfs:label "Boolean"@en ;
560 rdfs:comment "XSD boolean datatype."@en ;
561 rdfs:isDefinedBy smartapi:IndividualsOntology ;
562 vs:term_status "testing" .
564 xsd:double a rdfs:Datatype ;
565 rdfs:label "Double"@en ;
566 rdfs:comment "XSD double datatype."@en ;
567 rdfs:isDefinedBy smartapi:IndividualsOntology ;
568 vs:term_status "testing" .
570 xsd:positiveInteger a rdfs:Datatype ;
571 rdfs:label "Positive integer"@en ;
572 rdfs:comment "XSD positive integer datatype."@en ;
573 rdfs:isDefinedBy smartapi:IndividualsOntology ;
574 vs:term_status "testing" .
576 xsd:short a rdfs:Datatype ;
577 rdfs:label "Short"@en ;
578 rdfs:comment "XSD short datatype."@en ;
579 rdfs:isDefinedBy smartapi:IndividualsOntology ;
580 vs:term_status "testing" .
582 xsd:unsignedShort a rdfs:Datatype ;
583 rdfs:label "Unsigned short"@en ;
584 rdfs:comment "XSD unsigned short datatype."@en ;
585 rdfs:isDefinedBy smartapi:IndividualsOntology ;
586 vs:term_status "testing" .
588 xsd:date a rdfs:Datatype ;
589 rdfs:label "Date"@en ;
590 rdfs:comment "XSD date datatype."@en ;
591 rdfs:isDefinedBy smartapi:IndividualsOntology ;
592 vs:term_status "testing" .
594 xsd:gDay a rdfs:Datatype ;
595 rdfs:label "G day"@en ;
596 rdfs:comment "XSD g day datatype."@en ;
597 rdfs:isDefinedBy smartapi:IndividualsOntology ;
598 vs:term_status "testing" .
600 xsd:language a rdfs:Datatype ;
601 rdfs:label "Language"@en ;
602 rdfs:comment "XSD language datatype."@en ;
603 rdfs:isDefinedBy smartapi:IndividualsOntology ;
604 vs:term_status "testing" .
606 xsd:NCName a rdfs:Datatype ;
607 rdfs:label "NC name"@en ;
608 rdfs:comment "XSD NC namedatatype."@en ;
609 rdfs:isDefinedBy smartapi:IndividualsOntology ;
610 vs:term_status "testing" .
612 xsd:byte a rdfs:Datatype ;
613 rdfs:label "Byte"@en ;
614 rdfs:comment "XSD byte datatype."@en ;
615 rdfs:isDefinedBy smartapi:IndividualsOntology ;
616 vs:term_status "testing" .
618 xsd:unsignedByte a rdfs:Datatype ;
619 rdfs:label "Unsigned byte"@en ;
620 rdfs:comment "XSD unsigned byte datatype."@en ;
621 rdfs:isDefinedBy smartapi:IndividualsOntology ;
622 vs:term_status "testing" .
624 xsd:gYearMonth a rdfs:Datatype ;
625 rdfs:label "G year month"@en ;
626 rdfs:comment "XSD g year month datatype."@en ;
627 rdfs:isDefinedBy smartapi:IndividualsOntology ;
628 vs:term_status "testing" .
630 xsd:gMonth a rdfs:Datatype ;
631 rdfs:label "G month"@en ;
632 rdfs:comment "XSD g month datatype."@en ;
633 rdfs:isDefinedBy smartapi:IndividualsOntology ;
634 vs:term_status "testing" .