rdf 3.2.3 → 3.2.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +37 -37
- data/VERSION +1 -1
- data/lib/rdf/mixin/countable.rb +5 -1
- data/lib/rdf/mixin/enumerable.rb +13 -1
- data/lib/rdf/mixin/queryable.rb +13 -1
- data/lib/rdf/model/list.rb +1 -1
- data/lib/rdf/model/literal/date.rb +27 -82
- data/lib/rdf/model/literal/datetime.rb +22 -122
- data/lib/rdf/model/literal/decimal.rb +12 -0
- data/lib/rdf/model/literal/double.rb +20 -0
- data/lib/rdf/model/literal/integer.rb +6 -0
- data/lib/rdf/model/literal/numeric.rb +154 -4
- data/lib/rdf/model/literal/temporal.rb +310 -0
- data/lib/rdf/model/literal/time.rb +29 -98
- data/lib/rdf/model/literal.rb +2 -1
- data/lib/rdf/model/statement.rb +3 -1
- data/lib/rdf/model/uri.rb +3 -2
- data/lib/rdf/ntriples/reader.rb +1 -1
- data/lib/rdf/query/solution.rb +1 -2
- data/lib/rdf/query/solutions.rb +21 -0
- data/lib/rdf/vocab/owl.rb +450 -445
- data/lib/rdf/vocab/rdfs.rb +89 -88
- data/lib/rdf/vocab/writer.rb +84 -51
- data/lib/rdf/vocab/xsd.rb +249 -249
- data/lib/rdf/vocabulary.rb +109 -124
- data/lib/rdf.rb +0 -3
- metadata +11 -5
- data/lib/rdf/mixin/enumerator.rb +0 -40
data/lib/rdf/vocab/owl.rb
CHANGED
@@ -6,7 +6,12 @@ module RDF
|
|
6
6
|
# @!parse
|
7
7
|
# # Vocabulary for <http://www.w3.org/2002/07/owl#>
|
8
8
|
# #
|
9
|
-
# #
|
9
|
+
# # The OWL 2 Schema vocabulary (OWL 2)
|
10
|
+
# #
|
11
|
+
# # This ontology partially describes the built-in classes and properties that together form the basis of the RDF/XML syntax of OWL 2. The content of this ontology is based on Tables 6.1 and 6.2 in Section 6.4 of the OWL 2 RDF-Based Semantics specification, available at http://www.w3.org/TR/owl2-rdf-based-semantics/. Please note that those tables do not include the different annotations (labels, comments and rdfs:isDefinedBy links) used in this file. Also note that the descriptions provided in this ontology do not provide a complete and correct formal description of either the syntax or the semantics of the introduced terms (please see the OWL 2 recommendations for the complete and normative specifications). Furthermore, the information provided by this ontology may be misleading if not used with care. This ontology SHOULD NOT be imported into OWL ontologies. Importing this file into an OWL 2 DL ontology will cause it to become an OWL 2 Full ontology and may have other, unexpected, consequences.
|
12
|
+
# # @version $Date: 2009/11/15 10:54:12 $
|
13
|
+
# # @see http://www.w3.org/TR/owl2-rdf-based-semantics/#table-axiomatic-classes
|
14
|
+
# # @see http://www.w3.org/TR/owl2-rdf-based-semantics/#table-axiomatic-properties
|
10
15
|
# class OWL < RDF::StrictVocabulary
|
11
16
|
# # The class of collections of pairwise different individuals.
|
12
17
|
# # @return [RDF::Vocabulary::Term]
|
@@ -321,530 +326,530 @@ module RDF
|
|
321
326
|
|
322
327
|
# Ontology definition
|
323
328
|
ontology :"http://www.w3.org/2002/07/owl#",
|
324
|
-
comment: "\r\n This ontology partially describes the built-in classes and\r\n properties that together form the basis of the RDF/XML syntax of OWL 2.\r\n The content of this ontology is based on Tables 6.1 and 6.2\r\n in Section 6.4 of the OWL 2 RDF-Based Semantics specification,\r\n available at http://www.w3.org/TR/owl2-rdf-based-semantics/.\r\n Please note that those tables do not include the different annotations\r\n (labels, comments and rdfs:isDefinedBy links) used in this file.\r\n Also note that the descriptions provided in this ontology do not\r\n provide a complete and correct formal description of either the syntax\r\n or the semantics of the introduced terms (please see the OWL 2\r\n recommendations for the complete and normative specifications).\r\n Furthermore, the information provided by this ontology may be\r\n misleading if not used with care. This ontology SHOULD NOT be imported\r\n into OWL ontologies. Importing this file into an OWL 2 DL ontology\r\n will cause it to become an OWL 2 Full ontology and may have other,\r\n unexpected, consequences.\r\n "
|
325
|
-
"http://purl.org/dc/elements/1.1/title": "The OWL 2 Schema vocabulary (OWL 2)"
|
326
|
-
"http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://www.w3.org/TR/owl2-rdf-based-semantics/#table-axiomatic-classes"
|
327
|
-
"http://www.w3.org/2002/07/owl#imports": "http://www.w3.org/2000/01/rdf-schema"
|
328
|
-
"http://www.w3.org/2002/07/owl#versionIRI": "http://www.w3.org/2002/07/owl"
|
329
|
-
"http://www.w3.org/2002/07/owl#versionInfo": "$Date: 2009/11/15 10:54:12 $"
|
330
|
-
"http://www.w3.org/2003/g/data-view#namespaceTransformation": "http://dev.w3.org/cvsweb/2009/owl-grddl/owx2rdf.xsl"
|
331
|
-
isDefinedBy: ["http://www.w3.org/TR/owl2-mapping-to-rdf/"
|
332
|
-
type: "http://www.w3.org/2002/07/owl#Ontology"
|
329
|
+
comment: "\r\n This ontology partially describes the built-in classes and\r\n properties that together form the basis of the RDF/XML syntax of OWL 2.\r\n The content of this ontology is based on Tables 6.1 and 6.2\r\n in Section 6.4 of the OWL 2 RDF-Based Semantics specification,\r\n available at http://www.w3.org/TR/owl2-rdf-based-semantics/.\r\n Please note that those tables do not include the different annotations\r\n (labels, comments and rdfs:isDefinedBy links) used in this file.\r\n Also note that the descriptions provided in this ontology do not\r\n provide a complete and correct formal description of either the syntax\r\n or the semantics of the introduced terms (please see the OWL 2\r\n recommendations for the complete and normative specifications).\r\n Furthermore, the information provided by this ontology may be\r\n misleading if not used with care. This ontology SHOULD NOT be imported\r\n into OWL ontologies. Importing this file into an OWL 2 DL ontology\r\n will cause it to become an OWL 2 Full ontology and may have other,\r\n unexpected, consequences.\r\n ",
|
330
|
+
"http://purl.org/dc/elements/1.1/title": "The OWL 2 Schema vocabulary (OWL 2)",
|
331
|
+
"http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://www.w3.org/TR/owl2-rdf-based-semantics/#table-axiomatic-classes", "http://www.w3.org/TR/owl2-rdf-based-semantics/#table-axiomatic-properties"],
|
332
|
+
"http://www.w3.org/2002/07/owl#imports": "http://www.w3.org/2000/01/rdf-schema",
|
333
|
+
"http://www.w3.org/2002/07/owl#versionIRI": "http://www.w3.org/2002/07/owl",
|
334
|
+
"http://www.w3.org/2002/07/owl#versionInfo": "$Date: 2009/11/15 10:54:12 $",
|
335
|
+
"http://www.w3.org/2003/g/data-view#namespaceTransformation": "http://dev.w3.org/cvsweb/2009/owl-grddl/owx2rdf.xsl",
|
336
|
+
isDefinedBy: ["http://www.w3.org/TR/owl2-mapping-to-rdf/", "http://www.w3.org/TR/owl2-rdf-based-semantics/", "http://www.w3.org/TR/owl2-syntax/"],
|
337
|
+
type: "http://www.w3.org/2002/07/owl#Ontology"
|
333
338
|
|
334
339
|
# Class definitions
|
335
340
|
term :AllDifferent,
|
336
|
-
comment: "The class of collections of pairwise different individuals."
|
337
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
338
|
-
label: "AllDifferent"
|
339
|
-
subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource"
|
340
|
-
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
341
|
+
comment: "The class of collections of pairwise different individuals.",
|
342
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
343
|
+
label: "AllDifferent",
|
344
|
+
subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource",
|
345
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
341
346
|
term :AllDisjointClasses,
|
342
|
-
comment: "The class of collections of pairwise disjoint classes."
|
343
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
344
|
-
label: "AllDisjointClasses"
|
345
|
-
subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource"
|
346
|
-
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
347
|
+
comment: "The class of collections of pairwise disjoint classes.",
|
348
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
349
|
+
label: "AllDisjointClasses",
|
350
|
+
subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource",
|
351
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
347
352
|
term :AllDisjointProperties,
|
348
|
-
comment: "The class of collections of pairwise disjoint properties."
|
349
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
350
|
-
label: "AllDisjointProperties"
|
351
|
-
subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource"
|
352
|
-
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
353
|
+
comment: "The class of collections of pairwise disjoint properties.",
|
354
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
355
|
+
label: "AllDisjointProperties",
|
356
|
+
subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource",
|
357
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
353
358
|
term :Annotation,
|
354
|
-
comment: "The class of annotated annotations for which the RDF serialization consists of an annotated subject, predicate and object."
|
355
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
356
|
-
label: "Annotation"
|
357
|
-
subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource"
|
358
|
-
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
359
|
+
comment: "The class of annotated annotations for which the RDF serialization consists of an annotated subject, predicate and object.",
|
360
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
361
|
+
label: "Annotation",
|
362
|
+
subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource",
|
363
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
359
364
|
term :AnnotationProperty,
|
360
|
-
comment: "The class of annotation properties."
|
361
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
362
|
-
label: "AnnotationProperty"
|
363
|
-
subClassOf: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
364
|
-
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
365
|
+
comment: "The class of annotation properties.",
|
366
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
367
|
+
label: "AnnotationProperty",
|
368
|
+
subClassOf: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property",
|
369
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
365
370
|
term :AsymmetricProperty,
|
366
|
-
comment: "The class of asymmetric properties."
|
367
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
368
|
-
label: "AsymmetricProperty"
|
369
|
-
subClassOf: "http://www.w3.org/2002/07/owl#ObjectProperty"
|
370
|
-
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
371
|
+
comment: "The class of asymmetric properties.",
|
372
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
373
|
+
label: "AsymmetricProperty",
|
374
|
+
subClassOf: "http://www.w3.org/2002/07/owl#ObjectProperty",
|
375
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
371
376
|
term :Axiom,
|
372
|
-
comment: "The class of annotated axioms for which the RDF serialization consists of an annotated subject, predicate and object."
|
373
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
374
|
-
label: "Axiom"
|
375
|
-
subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource"
|
376
|
-
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
377
|
+
comment: "The class of annotated axioms for which the RDF serialization consists of an annotated subject, predicate and object.",
|
378
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
379
|
+
label: "Axiom",
|
380
|
+
subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource",
|
381
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
377
382
|
term :Class,
|
378
|
-
comment: "The class of OWL classes."
|
379
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
380
|
-
label: "Class"
|
381
|
-
subClassOf: "http://www.w3.org/2000/01/rdf-schema#Class"
|
382
|
-
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
383
|
+
comment: "The class of OWL classes.",
|
384
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
385
|
+
label: "Class",
|
386
|
+
subClassOf: "http://www.w3.org/2000/01/rdf-schema#Class",
|
387
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
383
388
|
term :DataRange,
|
384
|
-
comment: "The class of OWL data ranges, which are special kinds of datatypes. Note: The use of the IRI owl:DataRange has been deprecated as of OWL 2. The IRI rdfs:Datatype SHOULD be used instead."
|
385
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
386
|
-
label: "DataRange"
|
387
|
-
subClassOf: "http://www.w3.org/2000/01/rdf-schema#Datatype"
|
388
|
-
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
389
|
+
comment: "The class of OWL data ranges, which are special kinds of datatypes. Note: The use of the IRI owl:DataRange has been deprecated as of OWL 2. The IRI rdfs:Datatype SHOULD be used instead.",
|
390
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
391
|
+
label: "DataRange",
|
392
|
+
subClassOf: "http://www.w3.org/2000/01/rdf-schema#Datatype",
|
393
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
389
394
|
term :DatatypeProperty,
|
390
|
-
comment: "The class of data properties."
|
391
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
392
|
-
label: "DatatypeProperty"
|
393
|
-
subClassOf: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
394
|
-
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
395
|
+
comment: "The class of data properties.",
|
396
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
397
|
+
label: "DatatypeProperty",
|
398
|
+
subClassOf: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property",
|
399
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
395
400
|
term :DeprecatedClass,
|
396
|
-
comment: "The class of deprecated classes."
|
397
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
398
|
-
label: "DeprecatedClass"
|
399
|
-
subClassOf: "http://www.w3.org/2000/01/rdf-schema#Class"
|
400
|
-
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
401
|
+
comment: "The class of deprecated classes.",
|
402
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
403
|
+
label: "DeprecatedClass",
|
404
|
+
subClassOf: "http://www.w3.org/2000/01/rdf-schema#Class",
|
405
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
401
406
|
term :DeprecatedProperty,
|
402
|
-
comment: "The class of deprecated properties."
|
403
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
404
|
-
label: "DeprecatedProperty"
|
405
|
-
subClassOf: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
406
|
-
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
407
|
+
comment: "The class of deprecated properties.",
|
408
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
409
|
+
label: "DeprecatedProperty",
|
410
|
+
subClassOf: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property",
|
411
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
407
412
|
term :FunctionalProperty,
|
408
|
-
comment: "The class of functional properties."
|
409
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
410
|
-
label: "FunctionalProperty"
|
411
|
-
subClassOf: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
412
|
-
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
413
|
+
comment: "The class of functional properties.",
|
414
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
415
|
+
label: "FunctionalProperty",
|
416
|
+
subClassOf: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property",
|
417
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
413
418
|
term :InverseFunctionalProperty,
|
414
|
-
comment: "The class of inverse-functional properties."
|
415
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
416
|
-
label: "InverseFunctionalProperty"
|
417
|
-
subClassOf: "http://www.w3.org/2002/07/owl#ObjectProperty"
|
418
|
-
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
419
|
+
comment: "The class of inverse-functional properties.",
|
420
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
421
|
+
label: "InverseFunctionalProperty",
|
422
|
+
subClassOf: "http://www.w3.org/2002/07/owl#ObjectProperty",
|
423
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
419
424
|
term :IrreflexiveProperty,
|
420
|
-
comment: "The class of irreflexive properties."
|
421
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
422
|
-
label: "IrreflexiveProperty"
|
423
|
-
subClassOf: "http://www.w3.org/2002/07/owl#ObjectProperty"
|
424
|
-
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
425
|
+
comment: "The class of irreflexive properties.",
|
426
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
427
|
+
label: "IrreflexiveProperty",
|
428
|
+
subClassOf: "http://www.w3.org/2002/07/owl#ObjectProperty",
|
429
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
425
430
|
term :NamedIndividual,
|
426
|
-
comment: "The class of named individuals."
|
427
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
428
|
-
label: "NamedIndividual"
|
429
|
-
subClassOf: "http://www.w3.org/2002/07/owl#Thing"
|
430
|
-
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
431
|
+
comment: "The class of named individuals.",
|
432
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
433
|
+
label: "NamedIndividual",
|
434
|
+
subClassOf: "http://www.w3.org/2002/07/owl#Thing",
|
435
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
431
436
|
term :NegativePropertyAssertion,
|
432
|
-
comment: "The class of negative property assertions."
|
433
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
434
|
-
label: "NegativePropertyAssertion"
|
435
|
-
subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource"
|
436
|
-
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
437
|
+
comment: "The class of negative property assertions.",
|
438
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
439
|
+
label: "NegativePropertyAssertion",
|
440
|
+
subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource",
|
441
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
437
442
|
term :Nothing,
|
438
|
-
comment: "This is the empty class."
|
439
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
440
|
-
label: "Nothing"
|
441
|
-
subClassOf: "http://www.w3.org/2002/07/owl#Thing"
|
442
|
-
type: "http://www.w3.org/2002/07/owl#Class"
|
443
|
+
comment: "This is the empty class.",
|
444
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
445
|
+
label: "Nothing",
|
446
|
+
subClassOf: "http://www.w3.org/2002/07/owl#Thing",
|
447
|
+
type: "http://www.w3.org/2002/07/owl#Class"
|
443
448
|
term :ObjectProperty,
|
444
|
-
comment: "The class of object properties."
|
445
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
446
|
-
label: "ObjectProperty"
|
447
|
-
subClassOf: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
448
|
-
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
449
|
+
comment: "The class of object properties.",
|
450
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
451
|
+
label: "ObjectProperty",
|
452
|
+
subClassOf: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property",
|
453
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
449
454
|
term :Ontology,
|
450
|
-
comment: "The class of ontologies."
|
451
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
452
|
-
label: "Ontology"
|
453
|
-
subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource"
|
454
|
-
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
455
|
+
comment: "The class of ontologies.",
|
456
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
457
|
+
label: "Ontology",
|
458
|
+
subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource",
|
459
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
455
460
|
term :OntologyProperty,
|
456
|
-
comment: "The class of ontology properties."
|
457
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
458
|
-
label: "OntologyProperty"
|
459
|
-
subClassOf: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
460
|
-
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
461
|
+
comment: "The class of ontology properties.",
|
462
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
463
|
+
label: "OntologyProperty",
|
464
|
+
subClassOf: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property",
|
465
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
461
466
|
term :ReflexiveProperty,
|
462
|
-
comment: "The class of reflexive properties."
|
463
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
464
|
-
label: "ReflexiveProperty"
|
465
|
-
subClassOf: "http://www.w3.org/2002/07/owl#ObjectProperty"
|
466
|
-
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
467
|
+
comment: "The class of reflexive properties.",
|
468
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
469
|
+
label: "ReflexiveProperty",
|
470
|
+
subClassOf: "http://www.w3.org/2002/07/owl#ObjectProperty",
|
471
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
467
472
|
term :Restriction,
|
468
|
-
comment: "The class of property restrictions."
|
469
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
470
|
-
label: "Restriction"
|
471
|
-
subClassOf: "http://www.w3.org/2002/07/owl#Class"
|
472
|
-
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
473
|
+
comment: "The class of property restrictions.",
|
474
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
475
|
+
label: "Restriction",
|
476
|
+
subClassOf: "http://www.w3.org/2002/07/owl#Class",
|
477
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
473
478
|
term :SymmetricProperty,
|
474
|
-
comment: "The class of symmetric properties."
|
475
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
476
|
-
label: "SymmetricProperty"
|
477
|
-
subClassOf: "http://www.w3.org/2002/07/owl#ObjectProperty"
|
478
|
-
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
479
|
+
comment: "The class of symmetric properties.",
|
480
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
481
|
+
label: "SymmetricProperty",
|
482
|
+
subClassOf: "http://www.w3.org/2002/07/owl#ObjectProperty",
|
483
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
479
484
|
term :Thing,
|
480
|
-
comment: "The class of OWL individuals."
|
481
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
482
|
-
label: "Thing"
|
483
|
-
type: "http://www.w3.org/2002/07/owl#Class"
|
485
|
+
comment: "The class of OWL individuals.",
|
486
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
487
|
+
label: "Thing",
|
488
|
+
type: "http://www.w3.org/2002/07/owl#Class"
|
484
489
|
term :TransitiveProperty,
|
485
|
-
comment: "The class of transitive properties."
|
486
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
487
|
-
label: "TransitiveProperty"
|
488
|
-
subClassOf: "http://www.w3.org/2002/07/owl#ObjectProperty"
|
489
|
-
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
490
|
+
comment: "The class of transitive properties.",
|
491
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
492
|
+
label: "TransitiveProperty",
|
493
|
+
subClassOf: "http://www.w3.org/2002/07/owl#ObjectProperty",
|
494
|
+
type: "http://www.w3.org/2000/01/rdf-schema#Class"
|
490
495
|
|
491
496
|
# Property definitions
|
492
497
|
property :allValuesFrom,
|
493
|
-
comment: "The property that determines the class that a universal property restriction refers to."
|
494
|
-
domain: "http://www.w3.org/2002/07/owl#Restriction"
|
495
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
496
|
-
label: "allValuesFrom"
|
497
|
-
range: "http://www.w3.org/2000/01/rdf-schema#Class"
|
498
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
498
|
+
comment: "The property that determines the class that a universal property restriction refers to.",
|
499
|
+
domain: "http://www.w3.org/2002/07/owl#Restriction",
|
500
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
501
|
+
label: "allValuesFrom",
|
502
|
+
range: "http://www.w3.org/2000/01/rdf-schema#Class",
|
503
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
499
504
|
property :annotatedProperty,
|
500
|
-
comment: "The property that determines the predicate of an annotated axiom or annotated annotation."
|
501
|
-
domain: "http://www.w3.org/2000/01/rdf-schema#Resource"
|
502
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
503
|
-
label: "annotatedProperty"
|
504
|
-
range: "http://www.w3.org/2000/01/rdf-schema#Resource"
|
505
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
505
|
+
comment: "The property that determines the predicate of an annotated axiom or annotated annotation.",
|
506
|
+
domain: "http://www.w3.org/2000/01/rdf-schema#Resource",
|
507
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
508
|
+
label: "annotatedProperty",
|
509
|
+
range: "http://www.w3.org/2000/01/rdf-schema#Resource",
|
510
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
506
511
|
property :annotatedSource,
|
507
|
-
comment: "The property that determines the subject of an annotated axiom or annotated annotation."
|
508
|
-
domain: "http://www.w3.org/2000/01/rdf-schema#Resource"
|
509
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
510
|
-
label: "annotatedSource"
|
511
|
-
range: "http://www.w3.org/2000/01/rdf-schema#Resource"
|
512
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
512
|
+
comment: "The property that determines the subject of an annotated axiom or annotated annotation.",
|
513
|
+
domain: "http://www.w3.org/2000/01/rdf-schema#Resource",
|
514
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
515
|
+
label: "annotatedSource",
|
516
|
+
range: "http://www.w3.org/2000/01/rdf-schema#Resource",
|
517
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
513
518
|
property :annotatedTarget,
|
514
|
-
comment: "The property that determines the object of an annotated axiom or annotated annotation."
|
515
|
-
domain: "http://www.w3.org/2000/01/rdf-schema#Resource"
|
516
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
517
|
-
label: "annotatedTarget"
|
518
|
-
range: "http://www.w3.org/2000/01/rdf-schema#Resource"
|
519
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
519
|
+
comment: "The property that determines the object of an annotated axiom or annotated annotation.",
|
520
|
+
domain: "http://www.w3.org/2000/01/rdf-schema#Resource",
|
521
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
522
|
+
label: "annotatedTarget",
|
523
|
+
range: "http://www.w3.org/2000/01/rdf-schema#Resource",
|
524
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
520
525
|
property :assertionProperty,
|
521
|
-
comment: "The property that determines the predicate of a negative property assertion."
|
522
|
-
domain: "http://www.w3.org/2002/07/owl#NegativePropertyAssertion"
|
523
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
524
|
-
label: "assertionProperty"
|
525
|
-
range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
526
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
526
|
+
comment: "The property that determines the predicate of a negative property assertion.",
|
527
|
+
domain: "http://www.w3.org/2002/07/owl#NegativePropertyAssertion",
|
528
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
529
|
+
label: "assertionProperty",
|
530
|
+
range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property",
|
531
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
527
532
|
property :backwardCompatibleWith,
|
528
|
-
comment: "The annotation property that indicates that a given ontology is backward compatible with another ontology."
|
529
|
-
domain: "http://www.w3.org/2002/07/owl#Ontology"
|
530
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
531
|
-
label: "backwardCompatibleWith"
|
532
|
-
range: "http://www.w3.org/2002/07/owl#Ontology"
|
533
|
-
type: ["http://www.w3.org/2002/07/owl#AnnotationProperty"
|
533
|
+
comment: "The annotation property that indicates that a given ontology is backward compatible with another ontology.",
|
534
|
+
domain: "http://www.w3.org/2002/07/owl#Ontology",
|
535
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
536
|
+
label: "backwardCompatibleWith",
|
537
|
+
range: "http://www.w3.org/2002/07/owl#Ontology",
|
538
|
+
type: ["http://www.w3.org/2002/07/owl#AnnotationProperty", "http://www.w3.org/2002/07/owl#OntologyProperty"]
|
534
539
|
property :bottomDataProperty,
|
535
|
-
comment: "The data property that does not relate any individual to any data value."
|
536
|
-
domain: "http://www.w3.org/2002/07/owl#Thing"
|
537
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
538
|
-
label: "bottomDataProperty"
|
539
|
-
range: "http://www.w3.org/2000/01/rdf-schema#Literal"
|
540
|
-
type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
|
540
|
+
comment: "The data property that does not relate any individual to any data value.",
|
541
|
+
domain: "http://www.w3.org/2002/07/owl#Thing",
|
542
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
543
|
+
label: "bottomDataProperty",
|
544
|
+
range: "http://www.w3.org/2000/01/rdf-schema#Literal",
|
545
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
|
541
546
|
property :bottomObjectProperty,
|
542
|
-
comment: "The object property that does not relate any two individuals."
|
543
|
-
domain: "http://www.w3.org/2002/07/owl#Thing"
|
544
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
545
|
-
label: "bottomObjectProperty"
|
546
|
-
range: "http://www.w3.org/2002/07/owl#Thing"
|
547
|
-
type: "http://www.w3.org/2002/07/owl#ObjectProperty"
|
547
|
+
comment: "The object property that does not relate any two individuals.",
|
548
|
+
domain: "http://www.w3.org/2002/07/owl#Thing",
|
549
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
550
|
+
label: "bottomObjectProperty",
|
551
|
+
range: "http://www.w3.org/2002/07/owl#Thing",
|
552
|
+
type: "http://www.w3.org/2002/07/owl#ObjectProperty"
|
548
553
|
property :cardinality,
|
549
|
-
comment: "The property that determines the cardinality of an exact cardinality restriction."
|
550
|
-
domain: "http://www.w3.org/2002/07/owl#Restriction"
|
551
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
552
|
-
label: "cardinality"
|
553
|
-
range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
|
554
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
554
|
+
comment: "The property that determines the cardinality of an exact cardinality restriction.",
|
555
|
+
domain: "http://www.w3.org/2002/07/owl#Restriction",
|
556
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
557
|
+
label: "cardinality",
|
558
|
+
range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
|
559
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
555
560
|
property :complementOf,
|
556
|
-
comment: "The property that determines that a given class is the complement of another class."
|
557
|
-
domain: "http://www.w3.org/2002/07/owl#Class"
|
558
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
559
|
-
label: "complementOf"
|
560
|
-
range: "http://www.w3.org/2002/07/owl#Class"
|
561
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
561
|
+
comment: "The property that determines that a given class is the complement of another class.",
|
562
|
+
domain: "http://www.w3.org/2002/07/owl#Class",
|
563
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
564
|
+
label: "complementOf",
|
565
|
+
range: "http://www.w3.org/2002/07/owl#Class",
|
566
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
562
567
|
property :datatypeComplementOf,
|
563
|
-
comment: "The property that determines that a given data range is the complement of another data range with respect to the data domain."
|
564
|
-
domain: "http://www.w3.org/2000/01/rdf-schema#Datatype"
|
565
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
566
|
-
label: "datatypeComplementOf"
|
567
|
-
range: "http://www.w3.org/2000/01/rdf-schema#Datatype"
|
568
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
568
|
+
comment: "The property that determines that a given data range is the complement of another data range with respect to the data domain.",
|
569
|
+
domain: "http://www.w3.org/2000/01/rdf-schema#Datatype",
|
570
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
571
|
+
label: "datatypeComplementOf",
|
572
|
+
range: "http://www.w3.org/2000/01/rdf-schema#Datatype",
|
573
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
569
574
|
property :deprecated,
|
570
|
-
comment: "The annotation property that indicates that a given entity has been deprecated."
|
571
|
-
domain: "http://www.w3.org/2000/01/rdf-schema#Resource"
|
572
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
573
|
-
label: "deprecated"
|
574
|
-
range: "http://www.w3.org/2000/01/rdf-schema#Resource"
|
575
|
-
type: "http://www.w3.org/2002/07/owl#AnnotationProperty"
|
575
|
+
comment: "The annotation property that indicates that a given entity has been deprecated.",
|
576
|
+
domain: "http://www.w3.org/2000/01/rdf-schema#Resource",
|
577
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
578
|
+
label: "deprecated",
|
579
|
+
range: "http://www.w3.org/2000/01/rdf-schema#Resource",
|
580
|
+
type: "http://www.w3.org/2002/07/owl#AnnotationProperty"
|
576
581
|
property :differentFrom,
|
577
|
-
comment: "The property that determines that two given individuals are different."
|
578
|
-
domain: "http://www.w3.org/2002/07/owl#Thing"
|
579
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
580
|
-
label: "differentFrom"
|
581
|
-
range: "http://www.w3.org/2002/07/owl#Thing"
|
582
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
582
|
+
comment: "The property that determines that two given individuals are different.",
|
583
|
+
domain: "http://www.w3.org/2002/07/owl#Thing",
|
584
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
585
|
+
label: "differentFrom",
|
586
|
+
range: "http://www.w3.org/2002/07/owl#Thing",
|
587
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
583
588
|
property :disjointUnionOf,
|
584
|
-
comment: "The property that determines that a given class is equivalent to the disjoint union of a collection of other classes."
|
585
|
-
domain: "http://www.w3.org/2002/07/owl#Class"
|
586
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
587
|
-
label: "disjointUnionOf"
|
588
|
-
range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List"
|
589
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
589
|
+
comment: "The property that determines that a given class is equivalent to the disjoint union of a collection of other classes.",
|
590
|
+
domain: "http://www.w3.org/2002/07/owl#Class",
|
591
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
592
|
+
label: "disjointUnionOf",
|
593
|
+
range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List",
|
594
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
590
595
|
property :disjointWith,
|
591
|
-
comment: "The property that determines that two given classes are disjoint."
|
592
|
-
domain: "http://www.w3.org/2002/07/owl#Class"
|
593
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
594
|
-
label: "disjointWith"
|
595
|
-
range: "http://www.w3.org/2002/07/owl#Class"
|
596
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
596
|
+
comment: "The property that determines that two given classes are disjoint.",
|
597
|
+
domain: "http://www.w3.org/2002/07/owl#Class",
|
598
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
599
|
+
label: "disjointWith",
|
600
|
+
range: "http://www.w3.org/2002/07/owl#Class",
|
601
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
597
602
|
property :distinctMembers,
|
598
|
-
comment: "The property that determines the collection of pairwise different individuals in a owl:AllDifferent axiom."
|
599
|
-
domain: "http://www.w3.org/2002/07/owl#AllDifferent"
|
600
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
601
|
-
label: "distinctMembers"
|
602
|
-
range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List"
|
603
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
603
|
+
comment: "The property that determines the collection of pairwise different individuals in a owl:AllDifferent axiom.",
|
604
|
+
domain: "http://www.w3.org/2002/07/owl#AllDifferent",
|
605
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
606
|
+
label: "distinctMembers",
|
607
|
+
range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List",
|
608
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
604
609
|
property :equivalentClass,
|
605
|
-
comment: "The property that determines that two given classes are equivalent, and that is used to specify datatype definitions."
|
606
|
-
domain: "http://www.w3.org/2000/01/rdf-schema#Class"
|
607
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
608
|
-
label: "equivalentClass"
|
609
|
-
range: "http://www.w3.org/2000/01/rdf-schema#Class"
|
610
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
610
|
+
comment: "The property that determines that two given classes are equivalent, and that is used to specify datatype definitions.",
|
611
|
+
domain: "http://www.w3.org/2000/01/rdf-schema#Class",
|
612
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
613
|
+
label: "equivalentClass",
|
614
|
+
range: "http://www.w3.org/2000/01/rdf-schema#Class",
|
615
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
611
616
|
property :equivalentProperty,
|
612
|
-
comment: "The property that determines that two given properties are equivalent."
|
613
|
-
domain: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
614
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
615
|
-
label: "equivalentProperty"
|
616
|
-
range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
617
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
617
|
+
comment: "The property that determines that two given properties are equivalent.",
|
618
|
+
domain: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property",
|
619
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
620
|
+
label: "equivalentProperty",
|
621
|
+
range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property",
|
622
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
618
623
|
property :hasKey,
|
619
|
-
comment: "The property that determines the collection of properties that jointly build a key."
|
620
|
-
domain: "http://www.w3.org/2002/07/owl#Class"
|
621
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
622
|
-
label: "hasKey"
|
623
|
-
range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List"
|
624
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
624
|
+
comment: "The property that determines the collection of properties that jointly build a key.",
|
625
|
+
domain: "http://www.w3.org/2002/07/owl#Class",
|
626
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
627
|
+
label: "hasKey",
|
628
|
+
range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List",
|
629
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
625
630
|
property :hasSelf,
|
626
|
-
comment: "The property that determines the property that a self restriction refers to."
|
627
|
-
domain: "http://www.w3.org/2002/07/owl#Restriction"
|
628
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
629
|
-
label: "hasSelf"
|
630
|
-
range: "http://www.w3.org/2000/01/rdf-schema#Resource"
|
631
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
631
|
+
comment: "The property that determines the property that a self restriction refers to.",
|
632
|
+
domain: "http://www.w3.org/2002/07/owl#Restriction",
|
633
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
634
|
+
label: "hasSelf",
|
635
|
+
range: "http://www.w3.org/2000/01/rdf-schema#Resource",
|
636
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
632
637
|
property :hasValue,
|
633
|
-
comment: "The property that determines the individual that a has-value restriction refers to."
|
634
|
-
domain: "http://www.w3.org/2002/07/owl#Restriction"
|
635
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
636
|
-
label: "hasValue"
|
637
|
-
range: "http://www.w3.org/2000/01/rdf-schema#Resource"
|
638
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
638
|
+
comment: "The property that determines the individual that a has-value restriction refers to.",
|
639
|
+
domain: "http://www.w3.org/2002/07/owl#Restriction",
|
640
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
641
|
+
label: "hasValue",
|
642
|
+
range: "http://www.w3.org/2000/01/rdf-schema#Resource",
|
643
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
639
644
|
property :imports,
|
640
|
-
comment: "The property that is used for importing other ontologies into a given ontology."
|
641
|
-
domain: "http://www.w3.org/2002/07/owl#Ontology"
|
642
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
643
|
-
label: "imports"
|
644
|
-
range: "http://www.w3.org/2002/07/owl#Ontology"
|
645
|
-
type: "http://www.w3.org/2002/07/owl#OntologyProperty"
|
645
|
+
comment: "The property that is used for importing other ontologies into a given ontology.",
|
646
|
+
domain: "http://www.w3.org/2002/07/owl#Ontology",
|
647
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
648
|
+
label: "imports",
|
649
|
+
range: "http://www.w3.org/2002/07/owl#Ontology",
|
650
|
+
type: "http://www.w3.org/2002/07/owl#OntologyProperty"
|
646
651
|
property :incompatibleWith,
|
647
|
-
comment: "The annotation property that indicates that a given ontology is incompatible with another ontology."
|
648
|
-
domain: "http://www.w3.org/2002/07/owl#Ontology"
|
649
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
650
|
-
label: "incompatibleWith"
|
651
|
-
range: "http://www.w3.org/2002/07/owl#Ontology"
|
652
|
-
type: ["http://www.w3.org/2002/07/owl#AnnotationProperty"
|
652
|
+
comment: "The annotation property that indicates that a given ontology is incompatible with another ontology.",
|
653
|
+
domain: "http://www.w3.org/2002/07/owl#Ontology",
|
654
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
655
|
+
label: "incompatibleWith",
|
656
|
+
range: "http://www.w3.org/2002/07/owl#Ontology",
|
657
|
+
type: ["http://www.w3.org/2002/07/owl#AnnotationProperty", "http://www.w3.org/2002/07/owl#OntologyProperty"]
|
653
658
|
property :intersectionOf,
|
654
|
-
comment: "The property that determines the collection of classes or data ranges that build an intersection."
|
655
|
-
domain: "http://www.w3.org/2000/01/rdf-schema#Class"
|
656
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
657
|
-
label: "intersectionOf"
|
658
|
-
range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List"
|
659
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
659
|
+
comment: "The property that determines the collection of classes or data ranges that build an intersection.",
|
660
|
+
domain: "http://www.w3.org/2000/01/rdf-schema#Class",
|
661
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
662
|
+
label: "intersectionOf",
|
663
|
+
range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List",
|
664
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
660
665
|
property :inverseOf,
|
661
|
-
comment: "The property that determines that two given properties are inverse."
|
662
|
-
domain: "http://www.w3.org/2002/07/owl#ObjectProperty"
|
663
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
664
|
-
label: "inverseOf"
|
665
|
-
range: "http://www.w3.org/2002/07/owl#ObjectProperty"
|
666
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
666
|
+
comment: "The property that determines that two given properties are inverse.",
|
667
|
+
domain: "http://www.w3.org/2002/07/owl#ObjectProperty",
|
668
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
669
|
+
label: "inverseOf",
|
670
|
+
range: "http://www.w3.org/2002/07/owl#ObjectProperty",
|
671
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
667
672
|
property :maxCardinality,
|
668
|
-
comment: "The property that determines the cardinality of a maximum cardinality restriction."
|
669
|
-
domain: "http://www.w3.org/2002/07/owl#Restriction"
|
670
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
671
|
-
label: "maxCardinality"
|
672
|
-
range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
|
673
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
673
|
+
comment: "The property that determines the cardinality of a maximum cardinality restriction.",
|
674
|
+
domain: "http://www.w3.org/2002/07/owl#Restriction",
|
675
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
676
|
+
label: "maxCardinality",
|
677
|
+
range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
|
678
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
674
679
|
property :maxQualifiedCardinality,
|
675
|
-
comment: "The property that determines the cardinality of a maximum qualified cardinality restriction."
|
676
|
-
domain: "http://www.w3.org/2002/07/owl#Restriction"
|
677
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
678
|
-
label: "maxQualifiedCardinality"
|
679
|
-
range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
|
680
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
680
|
+
comment: "The property that determines the cardinality of a maximum qualified cardinality restriction.",
|
681
|
+
domain: "http://www.w3.org/2002/07/owl#Restriction",
|
682
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
683
|
+
label: "maxQualifiedCardinality",
|
684
|
+
range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
|
685
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
681
686
|
property :members,
|
682
|
-
comment: "The property that determines the collection of members in either a owl:AllDifferent, owl:AllDisjointClasses or owl:AllDisjointProperties axiom."
|
683
|
-
domain: "http://www.w3.org/2000/01/rdf-schema#Resource"
|
684
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
685
|
-
label: "members"
|
686
|
-
range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List"
|
687
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
687
|
+
comment: "The property that determines the collection of members in either a owl:AllDifferent, owl:AllDisjointClasses or owl:AllDisjointProperties axiom.",
|
688
|
+
domain: "http://www.w3.org/2000/01/rdf-schema#Resource",
|
689
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
690
|
+
label: "members",
|
691
|
+
range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List",
|
692
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
688
693
|
property :minCardinality,
|
689
|
-
comment: "The property that determines the cardinality of a minimum cardinality restriction."
|
690
|
-
domain: "http://www.w3.org/2002/07/owl#Restriction"
|
691
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
692
|
-
label: "minCardinality"
|
693
|
-
range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
|
694
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
694
|
+
comment: "The property that determines the cardinality of a minimum cardinality restriction.",
|
695
|
+
domain: "http://www.w3.org/2002/07/owl#Restriction",
|
696
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
697
|
+
label: "minCardinality",
|
698
|
+
range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
|
699
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
695
700
|
property :minQualifiedCardinality,
|
696
|
-
comment: "The property that determines the cardinality of a minimum qualified cardinality restriction."
|
697
|
-
domain: "http://www.w3.org/2002/07/owl#Restriction"
|
698
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
699
|
-
label: "minQualifiedCardinality"
|
700
|
-
range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
|
701
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
701
|
+
comment: "The property that determines the cardinality of a minimum qualified cardinality restriction.",
|
702
|
+
domain: "http://www.w3.org/2002/07/owl#Restriction",
|
703
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
704
|
+
label: "minQualifiedCardinality",
|
705
|
+
range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
|
706
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
702
707
|
property :onClass,
|
703
|
-
comment: "The property that determines the class that a qualified object cardinality restriction refers to."
|
704
|
-
domain: "http://www.w3.org/2002/07/owl#Restriction"
|
705
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
706
|
-
label: "onClass"
|
707
|
-
range: "http://www.w3.org/2002/07/owl#Class"
|
708
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
708
|
+
comment: "The property that determines the class that a qualified object cardinality restriction refers to.",
|
709
|
+
domain: "http://www.w3.org/2002/07/owl#Restriction",
|
710
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
711
|
+
label: "onClass",
|
712
|
+
range: "http://www.w3.org/2002/07/owl#Class",
|
713
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
709
714
|
property :onDataRange,
|
710
|
-
comment: "The property that determines the data range that a qualified data cardinality restriction refers to."
|
711
|
-
domain: "http://www.w3.org/2002/07/owl#Restriction"
|
712
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
713
|
-
label: "onDataRange"
|
714
|
-
range: "http://www.w3.org/2000/01/rdf-schema#Datatype"
|
715
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
715
|
+
comment: "The property that determines the data range that a qualified data cardinality restriction refers to.",
|
716
|
+
domain: "http://www.w3.org/2002/07/owl#Restriction",
|
717
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
718
|
+
label: "onDataRange",
|
719
|
+
range: "http://www.w3.org/2000/01/rdf-schema#Datatype",
|
720
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
716
721
|
property :onDatatype,
|
717
|
-
comment: "The property that determines the datatype that a datatype restriction refers to."
|
718
|
-
domain: "http://www.w3.org/2000/01/rdf-schema#Datatype"
|
719
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
720
|
-
label: "onDatatype"
|
721
|
-
range: "http://www.w3.org/2000/01/rdf-schema#Datatype"
|
722
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
722
|
+
comment: "The property that determines the datatype that a datatype restriction refers to.",
|
723
|
+
domain: "http://www.w3.org/2000/01/rdf-schema#Datatype",
|
724
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
725
|
+
label: "onDatatype",
|
726
|
+
range: "http://www.w3.org/2000/01/rdf-schema#Datatype",
|
727
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
723
728
|
property :onProperties,
|
724
|
-
comment: "The property that determines the n-tuple of properties that a property restriction on an n-ary data range refers to."
|
725
|
-
domain: "http://www.w3.org/2002/07/owl#Restriction"
|
726
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
727
|
-
label: "onProperties"
|
728
|
-
range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List"
|
729
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
729
|
+
comment: "The property that determines the n-tuple of properties that a property restriction on an n-ary data range refers to.",
|
730
|
+
domain: "http://www.w3.org/2002/07/owl#Restriction",
|
731
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
732
|
+
label: "onProperties",
|
733
|
+
range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List",
|
734
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
730
735
|
property :onProperty,
|
731
|
-
comment: "The property that determines the property that a property restriction refers to."
|
732
|
-
domain: "http://www.w3.org/2002/07/owl#Restriction"
|
733
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
734
|
-
label: "onProperty"
|
735
|
-
range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
736
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
736
|
+
comment: "The property that determines the property that a property restriction refers to.",
|
737
|
+
domain: "http://www.w3.org/2002/07/owl#Restriction",
|
738
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
739
|
+
label: "onProperty",
|
740
|
+
range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property",
|
741
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
737
742
|
property :oneOf,
|
738
|
-
comment: "The property that determines the collection of individuals or data values that build an enumeration."
|
739
|
-
domain: "http://www.w3.org/2000/01/rdf-schema#Class"
|
740
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
741
|
-
label: "oneOf"
|
742
|
-
range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List"
|
743
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
743
|
+
comment: "The property that determines the collection of individuals or data values that build an enumeration.",
|
744
|
+
domain: "http://www.w3.org/2000/01/rdf-schema#Class",
|
745
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
746
|
+
label: "oneOf",
|
747
|
+
range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List",
|
748
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
744
749
|
property :priorVersion,
|
745
|
-
comment: "The annotation property that indicates the predecessor ontology of a given ontology."
|
746
|
-
domain: "http://www.w3.org/2002/07/owl#Ontology"
|
747
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
748
|
-
label: "priorVersion"
|
749
|
-
range: "http://www.w3.org/2002/07/owl#Ontology"
|
750
|
-
type: ["http://www.w3.org/2002/07/owl#AnnotationProperty"
|
750
|
+
comment: "The annotation property that indicates the predecessor ontology of a given ontology.",
|
751
|
+
domain: "http://www.w3.org/2002/07/owl#Ontology",
|
752
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
753
|
+
label: "priorVersion",
|
754
|
+
range: "http://www.w3.org/2002/07/owl#Ontology",
|
755
|
+
type: ["http://www.w3.org/2002/07/owl#AnnotationProperty", "http://www.w3.org/2002/07/owl#OntologyProperty"]
|
751
756
|
property :propertyChainAxiom,
|
752
|
-
comment: "The property that determines the n-tuple of properties that build a sub property chain of a given property."
|
753
|
-
domain: "http://www.w3.org/2002/07/owl#ObjectProperty"
|
754
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
755
|
-
label: "propertyChainAxiom"
|
756
|
-
range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List"
|
757
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
757
|
+
comment: "The property that determines the n-tuple of properties that build a sub property chain of a given property.",
|
758
|
+
domain: "http://www.w3.org/2002/07/owl#ObjectProperty",
|
759
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
760
|
+
label: "propertyChainAxiom",
|
761
|
+
range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List",
|
762
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
758
763
|
property :propertyDisjointWith,
|
759
|
-
comment: "The property that determines that two given properties are disjoint."
|
760
|
-
domain: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
761
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
762
|
-
label: "propertyDisjointWith"
|
763
|
-
range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
764
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
764
|
+
comment: "The property that determines that two given properties are disjoint.",
|
765
|
+
domain: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property",
|
766
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
767
|
+
label: "propertyDisjointWith",
|
768
|
+
range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property",
|
769
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
765
770
|
property :qualifiedCardinality,
|
766
|
-
comment: "The property that determines the cardinality of an exact qualified cardinality restriction."
|
767
|
-
domain: "http://www.w3.org/2002/07/owl#Restriction"
|
768
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
769
|
-
label: "qualifiedCardinality"
|
770
|
-
range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
|
771
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
771
|
+
comment: "The property that determines the cardinality of an exact qualified cardinality restriction.",
|
772
|
+
domain: "http://www.w3.org/2002/07/owl#Restriction",
|
773
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
774
|
+
label: "qualifiedCardinality",
|
775
|
+
range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
|
776
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
772
777
|
property :sameAs,
|
773
|
-
comment: "The property that determines that two given individuals are equal."
|
774
|
-
domain: "http://www.w3.org/2002/07/owl#Thing"
|
775
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
776
|
-
label: "sameAs"
|
777
|
-
range: "http://www.w3.org/2002/07/owl#Thing"
|
778
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
778
|
+
comment: "The property that determines that two given individuals are equal.",
|
779
|
+
domain: "http://www.w3.org/2002/07/owl#Thing",
|
780
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
781
|
+
label: "sameAs",
|
782
|
+
range: "http://www.w3.org/2002/07/owl#Thing",
|
783
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
779
784
|
property :someValuesFrom,
|
780
|
-
comment: "The property that determines the class that an existential property restriction refers to."
|
781
|
-
domain: "http://www.w3.org/2002/07/owl#Restriction"
|
782
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
783
|
-
label: "someValuesFrom"
|
784
|
-
range: "http://www.w3.org/2000/01/rdf-schema#Class"
|
785
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
785
|
+
comment: "The property that determines the class that an existential property restriction refers to.",
|
786
|
+
domain: "http://www.w3.org/2002/07/owl#Restriction",
|
787
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
788
|
+
label: "someValuesFrom",
|
789
|
+
range: "http://www.w3.org/2000/01/rdf-schema#Class",
|
790
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
786
791
|
property :sourceIndividual,
|
787
|
-
comment: "The property that determines the subject of a negative property assertion."
|
788
|
-
domain: "http://www.w3.org/2002/07/owl#NegativePropertyAssertion"
|
789
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
790
|
-
label: "sourceIndividual"
|
791
|
-
range: "http://www.w3.org/2002/07/owl#Thing"
|
792
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
792
|
+
comment: "The property that determines the subject of a negative property assertion.",
|
793
|
+
domain: "http://www.w3.org/2002/07/owl#NegativePropertyAssertion",
|
794
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
795
|
+
label: "sourceIndividual",
|
796
|
+
range: "http://www.w3.org/2002/07/owl#Thing",
|
797
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
793
798
|
property :targetIndividual,
|
794
|
-
comment: "The property that determines the object of a negative object property assertion."
|
795
|
-
domain: "http://www.w3.org/2002/07/owl#NegativePropertyAssertion"
|
796
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
797
|
-
label: "targetIndividual"
|
798
|
-
range: "http://www.w3.org/2002/07/owl#Thing"
|
799
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
799
|
+
comment: "The property that determines the object of a negative object property assertion.",
|
800
|
+
domain: "http://www.w3.org/2002/07/owl#NegativePropertyAssertion",
|
801
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
802
|
+
label: "targetIndividual",
|
803
|
+
range: "http://www.w3.org/2002/07/owl#Thing",
|
804
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
800
805
|
property :targetValue,
|
801
|
-
comment: "The property that determines the value of a negative data property assertion."
|
802
|
-
domain: "http://www.w3.org/2002/07/owl#NegativePropertyAssertion"
|
803
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
804
|
-
label: "targetValue"
|
805
|
-
range: "http://www.w3.org/2000/01/rdf-schema#Literal"
|
806
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
806
|
+
comment: "The property that determines the value of a negative data property assertion.",
|
807
|
+
domain: "http://www.w3.org/2002/07/owl#NegativePropertyAssertion",
|
808
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
809
|
+
label: "targetValue",
|
810
|
+
range: "http://www.w3.org/2000/01/rdf-schema#Literal",
|
811
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
807
812
|
property :topDataProperty,
|
808
|
-
comment: "The data property that relates every individual to every data value."
|
809
|
-
domain: "http://www.w3.org/2002/07/owl#Thing"
|
810
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
811
|
-
label: "topDataProperty"
|
812
|
-
range: "http://www.w3.org/2000/01/rdf-schema#Literal"
|
813
|
-
type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
|
813
|
+
comment: "The data property that relates every individual to every data value.",
|
814
|
+
domain: "http://www.w3.org/2002/07/owl#Thing",
|
815
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
816
|
+
label: "topDataProperty",
|
817
|
+
range: "http://www.w3.org/2000/01/rdf-schema#Literal",
|
818
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
|
814
819
|
property :topObjectProperty,
|
815
|
-
comment: "The object property that relates every two individuals."
|
816
|
-
domain: "http://www.w3.org/2002/07/owl#Thing"
|
817
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
818
|
-
label: "topObjectProperty"
|
819
|
-
range: "http://www.w3.org/2002/07/owl#Thing"
|
820
|
-
type: "http://www.w3.org/2002/07/owl#ObjectProperty"
|
820
|
+
comment: "The object property that relates every two individuals.",
|
821
|
+
domain: "http://www.w3.org/2002/07/owl#Thing",
|
822
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
823
|
+
label: "topObjectProperty",
|
824
|
+
range: "http://www.w3.org/2002/07/owl#Thing",
|
825
|
+
type: "http://www.w3.org/2002/07/owl#ObjectProperty"
|
821
826
|
property :unionOf,
|
822
|
-
comment: "The property that determines the collection of classes or data ranges that build a union."
|
823
|
-
domain: "http://www.w3.org/2000/01/rdf-schema#Class"
|
824
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
825
|
-
label: "unionOf"
|
826
|
-
range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List"
|
827
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
827
|
+
comment: "The property that determines the collection of classes or data ranges that build a union.",
|
828
|
+
domain: "http://www.w3.org/2000/01/rdf-schema#Class",
|
829
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
830
|
+
label: "unionOf",
|
831
|
+
range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List",
|
832
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
828
833
|
property :versionIRI,
|
829
|
-
comment: "The property that identifies the version IRI of an ontology."
|
830
|
-
domain: "http://www.w3.org/2002/07/owl#Ontology"
|
831
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
832
|
-
label: "versionIRI"
|
833
|
-
range: "http://www.w3.org/2002/07/owl#Ontology"
|
834
|
-
type: "http://www.w3.org/2002/07/owl#OntologyProperty"
|
834
|
+
comment: "The property that identifies the version IRI of an ontology.",
|
835
|
+
domain: "http://www.w3.org/2002/07/owl#Ontology",
|
836
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
837
|
+
label: "versionIRI",
|
838
|
+
range: "http://www.w3.org/2002/07/owl#Ontology",
|
839
|
+
type: "http://www.w3.org/2002/07/owl#OntologyProperty"
|
835
840
|
property :versionInfo,
|
836
|
-
comment: "The annotation property that provides version information for an ontology or another OWL construct."
|
837
|
-
domain: "http://www.w3.org/2000/01/rdf-schema#Resource"
|
838
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
839
|
-
label: "versionInfo"
|
840
|
-
range: "http://www.w3.org/2000/01/rdf-schema#Resource"
|
841
|
-
type: "http://www.w3.org/2002/07/owl#AnnotationProperty"
|
841
|
+
comment: "The annotation property that provides version information for an ontology or another OWL construct.",
|
842
|
+
domain: "http://www.w3.org/2000/01/rdf-schema#Resource",
|
843
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
844
|
+
label: "versionInfo",
|
845
|
+
range: "http://www.w3.org/2000/01/rdf-schema#Resource",
|
846
|
+
type: "http://www.w3.org/2002/07/owl#AnnotationProperty"
|
842
847
|
property :withRestrictions,
|
843
|
-
comment: "The property that determines the collection of facet-value pairs that define a datatype restriction."
|
844
|
-
domain: "http://www.w3.org/2000/01/rdf-schema#Datatype"
|
845
|
-
isDefinedBy: "http://www.w3.org/2002/07/owl#"
|
846
|
-
label: "withRestrictions"
|
847
|
-
range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List"
|
848
|
-
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
848
|
+
comment: "The property that determines the collection of facet-value pairs that define a datatype restriction.",
|
849
|
+
domain: "http://www.w3.org/2000/01/rdf-schema#Datatype",
|
850
|
+
isDefinedBy: "http://www.w3.org/2002/07/owl#",
|
851
|
+
label: "withRestrictions",
|
852
|
+
range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List",
|
853
|
+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
849
854
|
end
|
850
855
|
end
|