rdf 3.1.10 → 3.1.15

Sign up to get free protection for your applications and to get access to all the features.
@@ -29,19 +29,38 @@ module RDF
29
29
  # @see RDF::Statement
30
30
  module Value
31
31
  ##
32
- # Returns `true` if `self` is a {RDF::Graph}.
32
+ # @overload graph?
33
+ # Returns `true` if `self` is a {RDF::Graph}.
33
34
  #
34
- # @return [Boolean]
35
- def graph?
36
- false
35
+ # @return [Boolean]
36
+ # @overload graph?(name)
37
+ # Returns `true` if `self` contains the given RDF graph_name.
38
+ #
39
+ # @param [RDF::Resource, false] graph_name
40
+ # Use value `false` to query for the default graph_name
41
+ # @return [Boolean]
42
+ def graph?(*args)
43
+ case args.length
44
+ when 0, 1 then false
45
+ else raise ArgumentError("wrong number of arguments (given #{args.length}, expected 0 or 1)")
46
+ end
37
47
  end
38
48
 
39
49
  ##
40
- # Is this a {RDF::Statement}?
50
+ # @overload statement?
51
+ # Returns `true` if `self` is a {RDF::Statement}.
41
52
  #
42
- # @return [Boolean]
43
- def statement?
44
- false
53
+ # @return [Boolean]
54
+ # @overload statement?(statement)
55
+ # Returns `true` if `self` contains the given {RDF::Statement}.
56
+ #
57
+ # @param [RDF::Statement] statement
58
+ # @return [Boolean]
59
+ def statement?(*args)
60
+ case args.length
61
+ when 0, 1 then false
62
+ else raise ArgumentError("wrong number of arguments (given #{args.length}, expected 0 or 1)")
63
+ end
45
64
  end
46
65
 
47
66
  ##
@@ -53,11 +72,20 @@ module RDF
53
72
  end
54
73
 
55
74
  ##
56
- # Is this a {RDF::Term}?
75
+ # @overload term?
76
+ # Returns `true` if `self` is a {RDF::Term}.
57
77
  #
58
- # @return [Boolean]
59
- def term?
60
- false
78
+ # @return [Boolean]
79
+ # @overload term?(name)
80
+ # Returns `true` if `self` contains the given RDF subject term.
81
+ #
82
+ # @param [RDF::Resource] value
83
+ # @return [Boolean]
84
+ def term?(*args)
85
+ case args.length
86
+ when 0, 1 then false
87
+ else raise ArgumentError("wrong number of arguments (given #{args.length}, expected 0 or 1)")
88
+ end
61
89
  end
62
90
 
63
91
  ##
@@ -103,12 +131,21 @@ module RDF
103
131
  end
104
132
 
105
133
  ##
106
- # Is this a {RDF::Query::Variable}, or does it contain a variable?
134
+ # @overload variable?
135
+ # Returns `true` if `self` is a {RDF::Query::Variable}, or does it contain a variable?
107
136
  #
108
- # @return [Boolean]
137
+ # @return [Boolean]
138
+ # @overload variable?(variable)
139
+ # Returns `true` if `self` contains the given variable.
140
+ #
141
+ # @param [RDF::Resource] value
142
+ # @return [Boolean]
109
143
  # @since 0.1.7
110
- def variable?
111
- false
144
+ def variable?(*args)
145
+ case args.length
146
+ when 0, 1 then false
147
+ else raise ArgumentError("wrong number of arguments (given #{args.length}, expected 0 or 1)")
148
+ end
112
149
  end
113
150
 
114
151
  ##
data/lib/rdf/query.rb CHANGED
@@ -443,11 +443,22 @@ module RDF
443
443
  end
444
444
 
445
445
  ##
446
- # Returns `true` if any pattern contains a variable.
446
+ # @overload variable?
447
+ # Returns `true` if any pattern contains a variable.
447
448
  #
448
- # @return [Boolean]
449
- def variable?
450
- !variables.empty?
449
+ # @return [Boolean]
450
+ # @overload variable?(variables)
451
+ # Returns `true` if any pattern contains any of the variables.
452
+ #
453
+ # @param [Array<Symbol, #to_sym>] variables
454
+ # @return [Boolean]
455
+ def variable?(*args)
456
+ case args.length
457
+ when 0 then !variables.empty?
458
+ when 1
459
+ patterns.any? {|p| p.variable?(*args)}
460
+ else raise ArgumentError("wrong number of arguments (given #{args.length}, expected 0 or 1)")
461
+ end
451
462
  end
452
463
  alias_method :variables?, :variable?
453
464
  alias_method :has_variables?, :variable?
@@ -59,6 +59,12 @@ module RDF; class Query
59
59
  super
60
60
  end
61
61
 
62
+ ##
63
+ # Create a new pattern from the quads, recursivly dupping sub-patterns.
64
+ def dup
65
+ self.class.from(self.to_quad.map {|t| t.is_a?(RDF::Query::Pattern) ? t.dup : t})
66
+ end
67
+
62
68
  ##
63
69
  # Any additional options for this pattern.
64
70
  #
@@ -23,10 +23,13 @@ class RDF::Query
23
23
  class Solution
24
24
  # Undefine all superfluous instance methods:
25
25
  alias_method :__send, :send
26
+
27
+ # Temporarily remember instance method for deprecation message in `method_missing`.
28
+ INSTANCE_METHODS = instance_methods
26
29
  undef_method(*instance_methods.
27
30
  map(&:to_s).
28
31
  select {|m| m.match?(/^\w+$/)}.
29
- reject {|m| %w(object_id dup instance_eval inspect to_s private_methods class should should_not pretty_print).include?(m) || m[0,2] == '__'}.
32
+ reject {|m| %w(object_id dup instance_eval inspect to_s private_methods public_methods class method pretty_print).include?(m) || m[0,2] == '__'}.
30
33
  map(&:to_sym))
31
34
 
32
35
  include Enumerable
@@ -114,15 +117,24 @@ class RDF::Query
114
117
  end
115
118
 
116
119
  ##
117
- # Returns `true` if this solution contains bindings for any of the given
120
+ # @overload variable?
121
+ # Returns `false`.
122
+ #
123
+ # @return [Boolean]
124
+ # @overload variable?(variables)
125
+ # Returns `true` if this solution contains bindings for any of the given
118
126
  # `variables`.
119
127
  #
120
- # @param [Array<Symbol, #to_sym>] variables
121
- # an array of variables to check
122
- # @return [Boolean] `true` or `false`
128
+ # @param [Array<Symbol, #to_sym>] variables
129
+ # @return [Boolean]
123
130
  # @since 0.3.0
124
- def variable?(variables)
125
- variables.any? { |variable| bound?(variable) }
131
+ def variable?(*args)
132
+ case args.length
133
+ when 0 then false
134
+ when 1
135
+ args.first.any? { |variable| bound?(variable) }
136
+ else raise ArgumentError("wrong number of arguments (given #{args.length}, expected 0 or 1)")
137
+ end
126
138
  end
127
139
  alias_method :variables?, :variable?
128
140
  alias_method :has_variables?, :variable?
@@ -335,6 +347,12 @@ class RDF::Query
335
347
  # @return [RDF::Term]
336
348
  def method_missing(name, *args, &block)
337
349
  if args.empty? && @bindings.key?(name.to_sym)
350
+ if INSTANCE_METHODS.include?(name)
351
+ warn "[DEPRECATION] RDF::Query::Solution##{name} is an overridden instance method.\n" +
352
+ "Its use as a solution accessor is deprecated and will be removed in a future version.\n" +
353
+ "Use #[] for safe access.\n" +
354
+ "Called from #{Gem.location_of_caller.join(':')}"
355
+ end
338
356
  @bindings[name.to_sym]
339
357
  else
340
358
  super # raises NoMethodError
@@ -78,16 +78,25 @@ module RDF; class Query
78
78
  end
79
79
 
80
80
  ##
81
- # Returns `true` if this solution sequence contains bindings for any of
81
+ # @overload variable?
82
+ # Returns `false`.
83
+ #
84
+ # @return [Boolean]
85
+ # @overload variable?(variables)
86
+ # Returns `true` if this solution sequence contains bindings for any of
82
87
  # the given `variables`.
83
88
  #
84
- # @param [Array<Symbol, #to_sym>] variables
85
- # an array of variables to check
86
- # @return [Boolean] `true` or `false`
89
+ # @param [Array<Symbol, #to_sym>] variables
90
+ # @return [Boolean]
87
91
  # @see RDF::Query::Solution#variable?
88
92
  # @see RDF::Query#execute
89
- def variable?(variables)
90
- self.any? { |solution| solution.variables?(variables) }
93
+ def variable?(*args)
94
+ case args.length
95
+ when 0 then false
96
+ when 1
97
+ self.any? { |solution| solution.variables?(args.first) }
98
+ else raise ArgumentError("wrong number of arguments (given #{args.length}, expected 0 or 1)")
99
+ end
91
100
  end
92
101
  alias_method :variables?, :variable?
93
102
  alias_method :have_variables?, :variable?
@@ -87,13 +87,27 @@ class RDF::Query
87
87
  end
88
88
 
89
89
  ##
90
- # Returns `true`.
90
+ # @overload variable?
91
+ # Returns `true` if `self` is a {RDF::Query::Variable}, or does it contain a variable?
91
92
  #
92
- # @return [Boolean]
93
- # @see RDF::Term#variable?
93
+ # @return [Boolean]
94
+ # @overload variable?(variable)
95
+ # Returns `true` if `self` contains the given variable.
96
+ #
97
+ # @param [RDF::Resource] value
98
+ # @return [Boolean]
94
99
  # @since 0.1.7
95
- def variable?
96
- true
100
+ def variable?(*args)
101
+ case args.length
102
+ when 0 then true
103
+ when 1
104
+ case variable = args.first
105
+ when RDF::Query::Variable then self == variable
106
+ when Symbol then to_sym == variable
107
+ else false
108
+ end
109
+ else raise ArgumentError("wrong number of arguments (given #{args.length}, expected 0 or 1)")
110
+ end
97
111
  end
98
112
 
99
113
  ##
@@ -287,10 +287,22 @@ module RDF
287
287
  end
288
288
 
289
289
  ##
290
- # @private
291
- # @see RDF::Enumerable#graph?
292
- def graph?(graph)
293
- @data.key?(graph)
290
+ # @overload graph?
291
+ # Returns `false` to indicate that this is not a graph.
292
+ #
293
+ # @return [Boolean]
294
+ # @overload graph?(name)
295
+ # Returns `true` if `self` contains the given RDF graph_name.
296
+ #
297
+ # @param [RDF::Resource, false] graph_name
298
+ # Use value `false` to query for the default graph_name
299
+ # @return [Boolean]
300
+ def graph?(*args)
301
+ case args.length
302
+ when 0 then false
303
+ when 1 then @data.key?(args.first)
304
+ else raise ArgumentError("wrong number of arguments (given #{args.length}, expected 0 or 1)")
305
+ end
294
306
  end
295
307
  alias_method :has_graph?, :graph?
296
308
 
@@ -322,8 +334,12 @@ module RDF
322
334
  # @overload statement?(statement)
323
335
  # @private
324
336
  # @see RDF::Enumerable#statement?
325
- def statement?(statement = nil)
326
- statement && statement_in?(@data, statement)
337
+ def statement?(*args)
338
+ case args.length
339
+ when 0 then false
340
+ when 1 then args.first && statement_in?(@data, args.first)
341
+ else raise ArgumentError("wrong number of arguments (given #{args.length}, expected 0 or 1)")
342
+ end
327
343
  end
328
344
  alias_method :has_statement?, :statement?
329
345
 
@@ -213,8 +213,12 @@ module RDF
213
213
  # @see RDF::Value#statement?
214
214
  # @overload statement?(statement)
215
215
  # @see RDF::Enumerable#statement?
216
- def statement?(statement = nil)
217
- statement && read_target.has_statement?(statement)
216
+ def statement?(*args)
217
+ case args.length
218
+ when 0 then false
219
+ when 1 then read_target.statement?(*args)
220
+ else raise ArgumentError("wrong number of arguments (given #{args.length}, expected 0 or 1)")
221
+ end
218
222
  end
219
223
  alias_method :has_statement?, :statement?
220
224
 
data/lib/rdf/vocab/owl.rb CHANGED
@@ -6,12 +6,7 @@ module RDF
6
6
  # @!parse
7
7
  # # Vocabulary for <http://www.w3.org/2002/07/owl#>
8
8
  # #
9
- # # The OWL 2 Schema vocabulary (OWL 2)
10
- # #
11
- # #
12
9
  This ontology partially describes the built-in classes and
13
10
  properties that together form the basis of the RDF/XML syntax of OWL 2.
14
11
  The content of this ontology is based on Tables 6.1 and 6.2
15
12
  in Section 6.4 of the OWL 2 RDF-Based Semantics specification,
16
13
  available at http://www.w3.org/TR/owl2-rdf-based-semantics/.
17
14
  Please note that those tables do not include the different annotations
18
15
  (labels, comments and rdfs:isDefinedBy links) used in this file.
19
16
  Also note that the descriptions provided in this ontology do not
20
17
  provide a complete and correct formal description of either the syntax
21
18
  or the semantics of the introduced terms (please see the OWL 2
22
19
  recommendations for the complete and normative specifications).
23
20
  Furthermore, the information provided by this ontology may be
24
21
  misleading if not used with care. This ontology SHOULD NOT be imported
25
22
  into OWL ontologies. Importing this file into an OWL 2 DL ontology
26
23
  will cause it to become an OWL 2 Full ontology and may have other,
27
24
  unexpected, consequences.
28
25
 
29
- # # @version $Date: 2009/11/15 10:54:12 $
30
- # # @see http://www.w3.org/TR/owl2-rdf-based-semantics/#table-axiomatic-properties
31
- # # @see http://www.w3.org/TR/owl2-rdf-based-semantics/#table-axiomatic-classes
26
+ # # 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.
32
27
  # class OWL < RDF::StrictVocabulary
33
28
  # # The class of collections of pairwise different individuals.
34
29
  # # @return [RDF::Vocabulary::Term]
@@ -326,547 +321,530 @@ module RDF
326
321
 
327
322
  # Ontology definition
328
323
  ontology :"http://www.w3.org/2002/07/owl#",
329
- comment: %(
330
- This ontology partially describes the built-in classes and
331
- properties that together form the basis of the RDF/XML syntax of OWL 2.
332
- The content of this ontology is based on Tables 6.1 and 6.2
333
- in Section 6.4 of the OWL 2 RDF-Based Semantics specification,
334
- available at http://www.w3.org/TR/owl2-rdf-based-semantics/.
335
- Please note that those tables do not include the different annotations
336
- \(labels, comments and rdfs:isDefinedBy links\) used in this file.
337
- Also note that the descriptions provided in this ontology do not
338
- provide a complete and correct formal description of either the syntax
339
- or the semantics of the introduced terms \(please see the OWL 2
340
- recommendations for the complete and normative specifications\).
341
- Furthermore, the information provided by this ontology may be
342
- misleading if not used with care. This ontology SHOULD NOT be imported
343
- into OWL ontologies. Importing this file into an OWL 2 DL ontology
344
- will cause it to become an OWL 2 Full ontology and may have other,
345
- unexpected, consequences.
346
- ).freeze,
347
- "dc11:title": "The OWL 2 Schema vocabulary (OWL 2)".freeze,
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 ".freeze,
325
+ "http://purl.org/dc/elements/1.1/title": "The OWL 2 Schema vocabulary (OWL 2)".freeze,
326
+ "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://www.w3.org/TR/owl2-rdf-based-semantics/#table-axiomatic-classes".freeze, "http://www.w3.org/TR/owl2-rdf-based-semantics/#table-axiomatic-properties".freeze],
327
+ "http://www.w3.org/2002/07/owl#imports": "http://www.w3.org/2000/01/rdf-schema".freeze,
328
+ "http://www.w3.org/2002/07/owl#versionIRI": "http://www.w3.org/2002/07/owl".freeze,
329
+ "http://www.w3.org/2002/07/owl#versionInfo": "$Date: 2009/11/15 10:54:12 $".freeze,
348
330
  "http://www.w3.org/2003/g/data-view#namespaceTransformation": "http://dev.w3.org/cvsweb/2009/owl-grddl/owx2rdf.xsl".freeze,
349
331
  isDefinedBy: ["http://www.w3.org/TR/owl2-mapping-to-rdf/".freeze, "http://www.w3.org/TR/owl2-rdf-based-semantics/".freeze, "http://www.w3.org/TR/owl2-syntax/".freeze],
350
- "owl:imports": "http://www.w3.org/2000/01/rdf-schema".freeze,
351
- "owl:versionIRI": "http://www.w3.org/2002/07/owl".freeze,
352
- "owl:versionInfo": "$Date: 2009/11/15 10:54:12 $".freeze,
353
- "rdfs:seeAlso": ["http://www.w3.org/TR/owl2-rdf-based-semantics/#table-axiomatic-classes".freeze, "http://www.w3.org/TR/owl2-rdf-based-semantics/#table-axiomatic-properties".freeze],
354
- type: "owl:Ontology".freeze
332
+ type: "http://www.w3.org/2002/07/owl#Ontology".freeze
355
333
 
356
334
  # Class definitions
357
335
  term :AllDifferent,
358
- comment: %(The class of collections of pairwise different individuals.).freeze,
359
- isDefinedBy: "owl:".freeze,
336
+ comment: "The class of collections of pairwise different individuals.".freeze,
337
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
360
338
  label: "AllDifferent".freeze,
361
- subClassOf: "rdfs:Resource".freeze,
362
- type: "rdfs:Class".freeze
339
+ subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
340
+ type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze
363
341
  term :AllDisjointClasses,
364
- comment: %(The class of collections of pairwise disjoint classes.).freeze,
365
- isDefinedBy: "owl:".freeze,
342
+ comment: "The class of collections of pairwise disjoint classes.".freeze,
343
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
366
344
  label: "AllDisjointClasses".freeze,
367
- subClassOf: "rdfs:Resource".freeze,
368
- type: "rdfs:Class".freeze
345
+ subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
346
+ type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze
369
347
  term :AllDisjointProperties,
370
- comment: %(The class of collections of pairwise disjoint properties.).freeze,
371
- isDefinedBy: "owl:".freeze,
348
+ comment: "The class of collections of pairwise disjoint properties.".freeze,
349
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
372
350
  label: "AllDisjointProperties".freeze,
373
- subClassOf: "rdfs:Resource".freeze,
374
- type: "rdfs:Class".freeze
351
+ subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
352
+ type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze
375
353
  term :Annotation,
376
- comment: %(The class of annotated annotations for which the RDF serialization consists of an annotated subject, predicate and object.).freeze,
377
- isDefinedBy: "owl:".freeze,
354
+ comment: "The class of annotated annotations for which the RDF serialization consists of an annotated subject, predicate and object.".freeze,
355
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
378
356
  label: "Annotation".freeze,
379
- subClassOf: "rdfs:Resource".freeze,
380
- type: "rdfs:Class".freeze
357
+ subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
358
+ type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze
381
359
  term :AnnotationProperty,
382
- comment: %(The class of annotation properties.).freeze,
383
- isDefinedBy: "owl:".freeze,
360
+ comment: "The class of annotation properties.".freeze,
361
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
384
362
  label: "AnnotationProperty".freeze,
385
- subClassOf: "rdf:Property".freeze,
386
- type: "rdfs:Class".freeze
363
+ subClassOf: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze,
364
+ type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze
387
365
  term :AsymmetricProperty,
388
- comment: %(The class of asymmetric properties.).freeze,
389
- isDefinedBy: "owl:".freeze,
366
+ comment: "The class of asymmetric properties.".freeze,
367
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
390
368
  label: "AsymmetricProperty".freeze,
391
- subClassOf: "owl:ObjectProperty".freeze,
392
- type: "rdfs:Class".freeze
369
+ subClassOf: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze,
370
+ type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze
393
371
  term :Axiom,
394
- comment: %(The class of annotated axioms for which the RDF serialization consists of an annotated subject, predicate and object.).freeze,
395
- isDefinedBy: "owl:".freeze,
372
+ comment: "The class of annotated axioms for which the RDF serialization consists of an annotated subject, predicate and object.".freeze,
373
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
396
374
  label: "Axiom".freeze,
397
- subClassOf: "rdfs:Resource".freeze,
398
- type: "rdfs:Class".freeze
375
+ subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
376
+ type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze
399
377
  term :Class,
400
- comment: %(The class of OWL classes.).freeze,
401
- isDefinedBy: "owl:".freeze,
378
+ comment: "The class of OWL classes.".freeze,
379
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
402
380
  label: "Class".freeze,
403
- subClassOf: "rdfs:Class".freeze,
404
- type: "rdfs:Class".freeze
381
+ subClassOf: "http://www.w3.org/2000/01/rdf-schema#Class".freeze,
382
+ type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze
405
383
  term :DataRange,
406
- 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.).freeze,
407
- isDefinedBy: "owl:".freeze,
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.".freeze,
385
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
408
386
  label: "DataRange".freeze,
409
- subClassOf: "rdfs:Datatype".freeze,
410
- type: "rdfs:Class".freeze
387
+ subClassOf: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze,
388
+ type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze
411
389
  term :DatatypeProperty,
412
- comment: %(The class of data properties.).freeze,
413
- isDefinedBy: "owl:".freeze,
390
+ comment: "The class of data properties.".freeze,
391
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
414
392
  label: "DatatypeProperty".freeze,
415
- subClassOf: "rdf:Property".freeze,
416
- type: "rdfs:Class".freeze
393
+ subClassOf: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze,
394
+ type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze
417
395
  term :DeprecatedClass,
418
- comment: %(The class of deprecated classes.).freeze,
419
- isDefinedBy: "owl:".freeze,
396
+ comment: "The class of deprecated classes.".freeze,
397
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
420
398
  label: "DeprecatedClass".freeze,
421
- subClassOf: "rdfs:Class".freeze,
422
- type: "rdfs:Class".freeze
399
+ subClassOf: "http://www.w3.org/2000/01/rdf-schema#Class".freeze,
400
+ type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze
423
401
  term :DeprecatedProperty,
424
- comment: %(The class of deprecated properties.).freeze,
425
- isDefinedBy: "owl:".freeze,
402
+ comment: "The class of deprecated properties.".freeze,
403
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
426
404
  label: "DeprecatedProperty".freeze,
427
- subClassOf: "rdf:Property".freeze,
428
- type: "rdfs:Class".freeze
405
+ subClassOf: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze,
406
+ type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze
429
407
  term :FunctionalProperty,
430
- comment: %(The class of functional properties.).freeze,
431
- isDefinedBy: "owl:".freeze,
408
+ comment: "The class of functional properties.".freeze,
409
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
432
410
  label: "FunctionalProperty".freeze,
433
- subClassOf: "rdf:Property".freeze,
434
- type: "rdfs:Class".freeze
411
+ subClassOf: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze,
412
+ type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze
435
413
  term :InverseFunctionalProperty,
436
- comment: %(The class of inverse-functional properties.).freeze,
437
- isDefinedBy: "owl:".freeze,
414
+ comment: "The class of inverse-functional properties.".freeze,
415
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
438
416
  label: "InverseFunctionalProperty".freeze,
439
- subClassOf: "owl:ObjectProperty".freeze,
440
- type: "rdfs:Class".freeze
417
+ subClassOf: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze,
418
+ type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze
441
419
  term :IrreflexiveProperty,
442
- comment: %(The class of irreflexive properties.).freeze,
443
- isDefinedBy: "owl:".freeze,
420
+ comment: "The class of irreflexive properties.".freeze,
421
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
444
422
  label: "IrreflexiveProperty".freeze,
445
- subClassOf: "owl:ObjectProperty".freeze,
446
- type: "rdfs:Class".freeze
423
+ subClassOf: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze,
424
+ type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze
447
425
  term :NamedIndividual,
448
- comment: %(The class of named individuals.).freeze,
449
- isDefinedBy: "owl:".freeze,
426
+ comment: "The class of named individuals.".freeze,
427
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
450
428
  label: "NamedIndividual".freeze,
451
- subClassOf: "owl:Thing".freeze,
452
- type: "rdfs:Class".freeze
429
+ subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze,
430
+ type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze
453
431
  term :NegativePropertyAssertion,
454
- comment: %(The class of negative property assertions.).freeze,
455
- isDefinedBy: "owl:".freeze,
432
+ comment: "The class of negative property assertions.".freeze,
433
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
456
434
  label: "NegativePropertyAssertion".freeze,
457
- subClassOf: "rdfs:Resource".freeze,
458
- type: "rdfs:Class".freeze
435
+ subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
436
+ type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze
459
437
  term :Nothing,
460
- comment: %(This is the empty class.).freeze,
461
- isDefinedBy: "owl:".freeze,
438
+ comment: "This is the empty class.".freeze,
439
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
462
440
  label: "Nothing".freeze,
463
- subClassOf: "owl:Thing".freeze,
464
- type: "owl:Class".freeze
441
+ subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze,
442
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
465
443
  term :ObjectProperty,
466
- comment: %(The class of object properties.).freeze,
467
- isDefinedBy: "owl:".freeze,
444
+ comment: "The class of object properties.".freeze,
445
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
468
446
  label: "ObjectProperty".freeze,
469
- subClassOf: "rdf:Property".freeze,
470
- type: "rdfs:Class".freeze
447
+ subClassOf: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze,
448
+ type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze
471
449
  term :Ontology,
472
- comment: %(The class of ontologies.).freeze,
473
- isDefinedBy: "owl:".freeze,
450
+ comment: "The class of ontologies.".freeze,
451
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
474
452
  label: "Ontology".freeze,
475
- subClassOf: "rdfs:Resource".freeze,
476
- type: "rdfs:Class".freeze
453
+ subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
454
+ type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze
477
455
  term :OntologyProperty,
478
- comment: %(The class of ontology properties.).freeze,
479
- isDefinedBy: "owl:".freeze,
456
+ comment: "The class of ontology properties.".freeze,
457
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
480
458
  label: "OntologyProperty".freeze,
481
- subClassOf: "rdf:Property".freeze,
482
- type: "rdfs:Class".freeze
459
+ subClassOf: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze,
460
+ type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze
483
461
  term :ReflexiveProperty,
484
- comment: %(The class of reflexive properties.).freeze,
485
- isDefinedBy: "owl:".freeze,
462
+ comment: "The class of reflexive properties.".freeze,
463
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
486
464
  label: "ReflexiveProperty".freeze,
487
- subClassOf: "owl:ObjectProperty".freeze,
488
- type: "rdfs:Class".freeze
465
+ subClassOf: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze,
466
+ type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze
489
467
  term :Restriction,
490
- comment: %(The class of property restrictions.).freeze,
491
- isDefinedBy: "owl:".freeze,
468
+ comment: "The class of property restrictions.".freeze,
469
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
492
470
  label: "Restriction".freeze,
493
- subClassOf: "owl:Class".freeze,
494
- type: "rdfs:Class".freeze
471
+ subClassOf: "http://www.w3.org/2002/07/owl#Class".freeze,
472
+ type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze
495
473
  term :SymmetricProperty,
496
- comment: %(The class of symmetric properties.).freeze,
497
- isDefinedBy: "owl:".freeze,
474
+ comment: "The class of symmetric properties.".freeze,
475
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
498
476
  label: "SymmetricProperty".freeze,
499
- subClassOf: "owl:ObjectProperty".freeze,
500
- type: "rdfs:Class".freeze
477
+ subClassOf: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze,
478
+ type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze
501
479
  term :Thing,
502
- comment: %(The class of OWL individuals.).freeze,
503
- isDefinedBy: "owl:".freeze,
480
+ comment: "The class of OWL individuals.".freeze,
481
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
504
482
  label: "Thing".freeze,
505
- type: "owl:Class".freeze
483
+ type: "http://www.w3.org/2002/07/owl#Class".freeze
506
484
  term :TransitiveProperty,
507
- comment: %(The class of transitive properties.).freeze,
508
- isDefinedBy: "owl:".freeze,
485
+ comment: "The class of transitive properties.".freeze,
486
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
509
487
  label: "TransitiveProperty".freeze,
510
- subClassOf: "owl:ObjectProperty".freeze,
511
- type: "rdfs:Class".freeze
488
+ subClassOf: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze,
489
+ type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze
512
490
 
513
491
  # Property definitions
514
492
  property :allValuesFrom,
515
- comment: %(The property that determines the class that a universal property restriction refers to.).freeze,
516
- domain: "owl:Restriction".freeze,
517
- isDefinedBy: "owl:".freeze,
493
+ comment: "The property that determines the class that a universal property restriction refers to.".freeze,
494
+ domain: "http://www.w3.org/2002/07/owl#Restriction".freeze,
495
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
518
496
  label: "allValuesFrom".freeze,
519
- range: "rdfs:Class".freeze,
520
- type: "rdf:Property".freeze
497
+ range: "http://www.w3.org/2000/01/rdf-schema#Class".freeze,
498
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
521
499
  property :annotatedProperty,
522
- comment: %(The property that determines the predicate of an annotated axiom or annotated annotation.).freeze,
523
- domain: "rdfs:Resource".freeze,
524
- isDefinedBy: "owl:".freeze,
500
+ comment: "The property that determines the predicate of an annotated axiom or annotated annotation.".freeze,
501
+ domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
502
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
525
503
  label: "annotatedProperty".freeze,
526
- range: "rdfs:Resource".freeze,
527
- type: "rdf:Property".freeze
504
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
505
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
528
506
  property :annotatedSource,
529
- comment: %(The property that determines the subject of an annotated axiom or annotated annotation.).freeze,
530
- domain: "rdfs:Resource".freeze,
531
- isDefinedBy: "owl:".freeze,
507
+ comment: "The property that determines the subject of an annotated axiom or annotated annotation.".freeze,
508
+ domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
509
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
532
510
  label: "annotatedSource".freeze,
533
- range: "rdfs:Resource".freeze,
534
- type: "rdf:Property".freeze
511
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
512
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
535
513
  property :annotatedTarget,
536
- comment: %(The property that determines the object of an annotated axiom or annotated annotation.).freeze,
537
- domain: "rdfs:Resource".freeze,
538
- isDefinedBy: "owl:".freeze,
514
+ comment: "The property that determines the object of an annotated axiom or annotated annotation.".freeze,
515
+ domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
516
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
539
517
  label: "annotatedTarget".freeze,
540
- range: "rdfs:Resource".freeze,
541
- type: "rdf:Property".freeze
518
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
519
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
542
520
  property :assertionProperty,
543
- comment: %(The property that determines the predicate of a negative property assertion.).freeze,
544
- domain: "owl:NegativePropertyAssertion".freeze,
545
- isDefinedBy: "owl:".freeze,
521
+ comment: "The property that determines the predicate of a negative property assertion.".freeze,
522
+ domain: "http://www.w3.org/2002/07/owl#NegativePropertyAssertion".freeze,
523
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
546
524
  label: "assertionProperty".freeze,
547
- range: "rdf:Property".freeze,
548
- type: "rdf:Property".freeze
525
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze,
526
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
549
527
  property :backwardCompatibleWith,
550
- comment: %(The annotation property that indicates that a given ontology is backward compatible with another ontology.).freeze,
551
- domain: "owl:Ontology".freeze,
552
- isDefinedBy: "owl:".freeze,
528
+ comment: "The annotation property that indicates that a given ontology is backward compatible with another ontology.".freeze,
529
+ domain: "http://www.w3.org/2002/07/owl#Ontology".freeze,
530
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
553
531
  label: "backwardCompatibleWith".freeze,
554
- range: "owl:Ontology".freeze,
555
- type: ["owl:AnnotationProperty".freeze, "owl:OntologyProperty".freeze]
532
+ range: "http://www.w3.org/2002/07/owl#Ontology".freeze,
533
+ type: ["http://www.w3.org/2002/07/owl#AnnotationProperty".freeze, "http://www.w3.org/2002/07/owl#OntologyProperty".freeze]
556
534
  property :bottomDataProperty,
557
- comment: %(The data property that does not relate any individual to any data value.).freeze,
558
- domain: "owl:Thing".freeze,
559
- isDefinedBy: "owl:".freeze,
535
+ comment: "The data property that does not relate any individual to any data value.".freeze,
536
+ domain: "http://www.w3.org/2002/07/owl#Thing".freeze,
537
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
560
538
  label: "bottomDataProperty".freeze,
561
- range: "rdfs:Literal".freeze,
562
- type: "owl:DatatypeProperty".freeze
539
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
540
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
563
541
  property :bottomObjectProperty,
564
- comment: %(The object property that does not relate any two individuals.).freeze,
565
- domain: "owl:Thing".freeze,
566
- isDefinedBy: "owl:".freeze,
542
+ comment: "The object property that does not relate any two individuals.".freeze,
543
+ domain: "http://www.w3.org/2002/07/owl#Thing".freeze,
544
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
567
545
  label: "bottomObjectProperty".freeze,
568
- range: "owl:Thing".freeze,
569
- type: "owl:ObjectProperty".freeze
546
+ range: "http://www.w3.org/2002/07/owl#Thing".freeze,
547
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
570
548
  property :cardinality,
571
- comment: %(The property that determines the cardinality of an exact cardinality restriction.).freeze,
572
- domain: "owl:Restriction".freeze,
573
- isDefinedBy: "owl:".freeze,
549
+ comment: "The property that determines the cardinality of an exact cardinality restriction.".freeze,
550
+ domain: "http://www.w3.org/2002/07/owl#Restriction".freeze,
551
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
574
552
  label: "cardinality".freeze,
575
- range: "xsd:nonNegativeInteger".freeze,
576
- type: "rdf:Property".freeze
553
+ range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze,
554
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
577
555
  property :complementOf,
578
- comment: %(The property that determines that a given class is the complement of another class.).freeze,
579
- domain: "owl:Class".freeze,
580
- isDefinedBy: "owl:".freeze,
556
+ comment: "The property that determines that a given class is the complement of another class.".freeze,
557
+ domain: "http://www.w3.org/2002/07/owl#Class".freeze,
558
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
581
559
  label: "complementOf".freeze,
582
- range: "owl:Class".freeze,
583
- type: "rdf:Property".freeze
560
+ range: "http://www.w3.org/2002/07/owl#Class".freeze,
561
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
584
562
  property :datatypeComplementOf,
585
- comment: %(The property that determines that a given data range is the complement of another data range with respect to the data domain.).freeze,
586
- domain: "rdfs:Datatype".freeze,
587
- isDefinedBy: "owl:".freeze,
563
+ comment: "The property that determines that a given data range is the complement of another data range with respect to the data domain.".freeze,
564
+ domain: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze,
565
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
588
566
  label: "datatypeComplementOf".freeze,
589
- range: "rdfs:Datatype".freeze,
590
- type: "rdf:Property".freeze
567
+ range: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze,
568
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
591
569
  property :deprecated,
592
- comment: %(The annotation property that indicates that a given entity has been deprecated.).freeze,
593
- domain: "rdfs:Resource".freeze,
594
- isDefinedBy: "owl:".freeze,
570
+ comment: "The annotation property that indicates that a given entity has been deprecated.".freeze,
571
+ domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
572
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
595
573
  label: "deprecated".freeze,
596
- range: "rdfs:Resource".freeze,
597
- type: "owl:AnnotationProperty".freeze
574
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
575
+ type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze
598
576
  property :differentFrom,
599
- comment: %(The property that determines that two given individuals are different.).freeze,
600
- domain: "owl:Thing".freeze,
601
- isDefinedBy: "owl:".freeze,
577
+ comment: "The property that determines that two given individuals are different.".freeze,
578
+ domain: "http://www.w3.org/2002/07/owl#Thing".freeze,
579
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
602
580
  label: "differentFrom".freeze,
603
- range: "owl:Thing".freeze,
604
- type: "rdf:Property".freeze
581
+ range: "http://www.w3.org/2002/07/owl#Thing".freeze,
582
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
605
583
  property :disjointUnionOf,
606
- comment: %(The property that determines that a given class is equivalent to the disjoint union of a collection of other classes.).freeze,
607
- domain: "owl:Class".freeze,
608
- isDefinedBy: "owl:".freeze,
584
+ comment: "The property that determines that a given class is equivalent to the disjoint union of a collection of other classes.".freeze,
585
+ domain: "http://www.w3.org/2002/07/owl#Class".freeze,
586
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
609
587
  label: "disjointUnionOf".freeze,
610
- range: "rdf:List".freeze,
611
- type: "rdf:Property".freeze
588
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze,
589
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
612
590
  property :disjointWith,
613
- comment: %(The property that determines that two given classes are disjoint.).freeze,
614
- domain: "owl:Class".freeze,
615
- isDefinedBy: "owl:".freeze,
591
+ comment: "The property that determines that two given classes are disjoint.".freeze,
592
+ domain: "http://www.w3.org/2002/07/owl#Class".freeze,
593
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
616
594
  label: "disjointWith".freeze,
617
- range: "owl:Class".freeze,
618
- type: "rdf:Property".freeze
595
+ range: "http://www.w3.org/2002/07/owl#Class".freeze,
596
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
619
597
  property :distinctMembers,
620
- comment: %(The property that determines the collection of pairwise different individuals in a owl:AllDifferent axiom.).freeze,
621
- domain: "owl:AllDifferent".freeze,
622
- isDefinedBy: "owl:".freeze,
598
+ comment: "The property that determines the collection of pairwise different individuals in a owl:AllDifferent axiom.".freeze,
599
+ domain: "http://www.w3.org/2002/07/owl#AllDifferent".freeze,
600
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
623
601
  label: "distinctMembers".freeze,
624
- range: "rdf:List".freeze,
625
- type: "rdf:Property".freeze
602
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze,
603
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
626
604
  property :equivalentClass,
627
- comment: %(The property that determines that two given classes are equivalent, and that is used to specify datatype definitions.).freeze,
628
- domain: "rdfs:Class".freeze,
629
- isDefinedBy: "owl:".freeze,
605
+ comment: "The property that determines that two given classes are equivalent, and that is used to specify datatype definitions.".freeze,
606
+ domain: "http://www.w3.org/2000/01/rdf-schema#Class".freeze,
607
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
630
608
  label: "equivalentClass".freeze,
631
- range: "rdfs:Class".freeze,
632
- type: "rdf:Property".freeze
609
+ range: "http://www.w3.org/2000/01/rdf-schema#Class".freeze,
610
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
633
611
  property :equivalentProperty,
634
- comment: %(The property that determines that two given properties are equivalent.).freeze,
635
- domain: "rdf:Property".freeze,
636
- isDefinedBy: "owl:".freeze,
612
+ comment: "The property that determines that two given properties are equivalent.".freeze,
613
+ domain: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze,
614
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
637
615
  label: "equivalentProperty".freeze,
638
- range: "rdf:Property".freeze,
639
- type: "rdf:Property".freeze
616
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze,
617
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
640
618
  property :hasKey,
641
- comment: %(The property that determines the collection of properties that jointly build a key.).freeze,
642
- domain: "owl:Class".freeze,
643
- isDefinedBy: "owl:".freeze,
619
+ comment: "The property that determines the collection of properties that jointly build a key.".freeze,
620
+ domain: "http://www.w3.org/2002/07/owl#Class".freeze,
621
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
644
622
  label: "hasKey".freeze,
645
- range: "rdf:List".freeze,
646
- type: "rdf:Property".freeze
623
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze,
624
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
647
625
  property :hasSelf,
648
- comment: %(The property that determines the property that a self restriction refers to.).freeze,
649
- domain: "owl:Restriction".freeze,
650
- isDefinedBy: "owl:".freeze,
626
+ comment: "The property that determines the property that a self restriction refers to.".freeze,
627
+ domain: "http://www.w3.org/2002/07/owl#Restriction".freeze,
628
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
651
629
  label: "hasSelf".freeze,
652
- range: "rdfs:Resource".freeze,
653
- type: "rdf:Property".freeze
630
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
631
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
654
632
  property :hasValue,
655
- comment: %(The property that determines the individual that a has-value restriction refers to.).freeze,
656
- domain: "owl:Restriction".freeze,
657
- isDefinedBy: "owl:".freeze,
633
+ comment: "The property that determines the individual that a has-value restriction refers to.".freeze,
634
+ domain: "http://www.w3.org/2002/07/owl#Restriction".freeze,
635
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
658
636
  label: "hasValue".freeze,
659
- range: "rdfs:Resource".freeze,
660
- type: "rdf:Property".freeze
637
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
638
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
661
639
  property :imports,
662
- comment: %(The property that is used for importing other ontologies into a given ontology.).freeze,
663
- domain: "owl:Ontology".freeze,
664
- isDefinedBy: "owl:".freeze,
640
+ comment: "The property that is used for importing other ontologies into a given ontology.".freeze,
641
+ domain: "http://www.w3.org/2002/07/owl#Ontology".freeze,
642
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
665
643
  label: "imports".freeze,
666
- range: "owl:Ontology".freeze,
667
- type: "owl:OntologyProperty".freeze
644
+ range: "http://www.w3.org/2002/07/owl#Ontology".freeze,
645
+ type: "http://www.w3.org/2002/07/owl#OntologyProperty".freeze
668
646
  property :incompatibleWith,
669
- comment: %(The annotation property that indicates that a given ontology is incompatible with another ontology.).freeze,
670
- domain: "owl:Ontology".freeze,
671
- isDefinedBy: "owl:".freeze,
647
+ comment: "The annotation property that indicates that a given ontology is incompatible with another ontology.".freeze,
648
+ domain: "http://www.w3.org/2002/07/owl#Ontology".freeze,
649
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
672
650
  label: "incompatibleWith".freeze,
673
- range: "owl:Ontology".freeze,
674
- type: ["owl:AnnotationProperty".freeze, "owl:OntologyProperty".freeze]
651
+ range: "http://www.w3.org/2002/07/owl#Ontology".freeze,
652
+ type: ["http://www.w3.org/2002/07/owl#AnnotationProperty".freeze, "http://www.w3.org/2002/07/owl#OntologyProperty".freeze]
675
653
  property :intersectionOf,
676
- comment: %(The property that determines the collection of classes or data ranges that build an intersection.).freeze,
677
- domain: "rdfs:Class".freeze,
678
- isDefinedBy: "owl:".freeze,
654
+ comment: "The property that determines the collection of classes or data ranges that build an intersection.".freeze,
655
+ domain: "http://www.w3.org/2000/01/rdf-schema#Class".freeze,
656
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
679
657
  label: "intersectionOf".freeze,
680
- range: "rdf:List".freeze,
681
- type: "rdf:Property".freeze
658
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze,
659
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
682
660
  property :inverseOf,
683
- comment: %(The property that determines that two given properties are inverse.).freeze,
684
- domain: "owl:ObjectProperty".freeze,
685
- isDefinedBy: "owl:".freeze,
661
+ comment: "The property that determines that two given properties are inverse.".freeze,
662
+ domain: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze,
663
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
686
664
  label: "inverseOf".freeze,
687
- range: "owl:ObjectProperty".freeze,
688
- type: "rdf:Property".freeze
665
+ range: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze,
666
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
689
667
  property :maxCardinality,
690
- comment: %(The property that determines the cardinality of a maximum cardinality restriction.).freeze,
691
- domain: "owl:Restriction".freeze,
692
- isDefinedBy: "owl:".freeze,
668
+ comment: "The property that determines the cardinality of a maximum cardinality restriction.".freeze,
669
+ domain: "http://www.w3.org/2002/07/owl#Restriction".freeze,
670
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
693
671
  label: "maxCardinality".freeze,
694
- range: "xsd:nonNegativeInteger".freeze,
695
- type: "rdf:Property".freeze
672
+ range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze,
673
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
696
674
  property :maxQualifiedCardinality,
697
- comment: %(The property that determines the cardinality of a maximum qualified cardinality restriction.).freeze,
698
- domain: "owl:Restriction".freeze,
699
- isDefinedBy: "owl:".freeze,
675
+ comment: "The property that determines the cardinality of a maximum qualified cardinality restriction.".freeze,
676
+ domain: "http://www.w3.org/2002/07/owl#Restriction".freeze,
677
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
700
678
  label: "maxQualifiedCardinality".freeze,
701
- range: "xsd:nonNegativeInteger".freeze,
702
- type: "rdf:Property".freeze
679
+ range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze,
680
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
703
681
  property :members,
704
- comment: %(The property that determines the collection of members in either a owl:AllDifferent, owl:AllDisjointClasses or owl:AllDisjointProperties axiom.).freeze,
705
- domain: "rdfs:Resource".freeze,
706
- isDefinedBy: "owl:".freeze,
682
+ comment: "The property that determines the collection of members in either a owl:AllDifferent, owl:AllDisjointClasses or owl:AllDisjointProperties axiom.".freeze,
683
+ domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
684
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
707
685
  label: "members".freeze,
708
- range: "rdf:List".freeze,
709
- type: "rdf:Property".freeze
686
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze,
687
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
710
688
  property :minCardinality,
711
- comment: %(The property that determines the cardinality of a minimum cardinality restriction.).freeze,
712
- domain: "owl:Restriction".freeze,
713
- isDefinedBy: "owl:".freeze,
689
+ comment: "The property that determines the cardinality of a minimum cardinality restriction.".freeze,
690
+ domain: "http://www.w3.org/2002/07/owl#Restriction".freeze,
691
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
714
692
  label: "minCardinality".freeze,
715
- range: "xsd:nonNegativeInteger".freeze,
716
- type: "rdf:Property".freeze
693
+ range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze,
694
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
717
695
  property :minQualifiedCardinality,
718
- comment: %(The property that determines the cardinality of a minimum qualified cardinality restriction.).freeze,
719
- domain: "owl:Restriction".freeze,
720
- isDefinedBy: "owl:".freeze,
696
+ comment: "The property that determines the cardinality of a minimum qualified cardinality restriction.".freeze,
697
+ domain: "http://www.w3.org/2002/07/owl#Restriction".freeze,
698
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
721
699
  label: "minQualifiedCardinality".freeze,
722
- range: "xsd:nonNegativeInteger".freeze,
723
- type: "rdf:Property".freeze
700
+ range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze,
701
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
724
702
  property :onClass,
725
- comment: %(The property that determines the class that a qualified object cardinality restriction refers to.).freeze,
726
- domain: "owl:Restriction".freeze,
727
- isDefinedBy: "owl:".freeze,
703
+ comment: "The property that determines the class that a qualified object cardinality restriction refers to.".freeze,
704
+ domain: "http://www.w3.org/2002/07/owl#Restriction".freeze,
705
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
728
706
  label: "onClass".freeze,
729
- range: "owl:Class".freeze,
730
- type: "rdf:Property".freeze
707
+ range: "http://www.w3.org/2002/07/owl#Class".freeze,
708
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
731
709
  property :onDataRange,
732
- comment: %(The property that determines the data range that a qualified data cardinality restriction refers to.).freeze,
733
- domain: "owl:Restriction".freeze,
734
- isDefinedBy: "owl:".freeze,
710
+ comment: "The property that determines the data range that a qualified data cardinality restriction refers to.".freeze,
711
+ domain: "http://www.w3.org/2002/07/owl#Restriction".freeze,
712
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
735
713
  label: "onDataRange".freeze,
736
- range: "rdfs:Datatype".freeze,
737
- type: "rdf:Property".freeze
714
+ range: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze,
715
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
738
716
  property :onDatatype,
739
- comment: %(The property that determines the datatype that a datatype restriction refers to.).freeze,
740
- domain: "rdfs:Datatype".freeze,
741
- isDefinedBy: "owl:".freeze,
717
+ comment: "The property that determines the datatype that a datatype restriction refers to.".freeze,
718
+ domain: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze,
719
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
742
720
  label: "onDatatype".freeze,
743
- range: "rdfs:Datatype".freeze,
744
- type: "rdf:Property".freeze
721
+ range: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze,
722
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
745
723
  property :onProperties,
746
- comment: %(The property that determines the n-tuple of properties that a property restriction on an n-ary data range refers to.).freeze,
747
- domain: "owl:Restriction".freeze,
748
- isDefinedBy: "owl:".freeze,
724
+ comment: "The property that determines the n-tuple of properties that a property restriction on an n-ary data range refers to.".freeze,
725
+ domain: "http://www.w3.org/2002/07/owl#Restriction".freeze,
726
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
749
727
  label: "onProperties".freeze,
750
- range: "rdf:List".freeze,
751
- type: "rdf:Property".freeze
728
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze,
729
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
752
730
  property :onProperty,
753
- comment: %(The property that determines the property that a property restriction refers to.).freeze,
754
- domain: "owl:Restriction".freeze,
755
- isDefinedBy: "owl:".freeze,
731
+ comment: "The property that determines the property that a property restriction refers to.".freeze,
732
+ domain: "http://www.w3.org/2002/07/owl#Restriction".freeze,
733
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
756
734
  label: "onProperty".freeze,
757
- range: "rdf:Property".freeze,
758
- type: "rdf:Property".freeze
735
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze,
736
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
759
737
  property :oneOf,
760
- comment: %(The property that determines the collection of individuals or data values that build an enumeration.).freeze,
761
- domain: "rdfs:Class".freeze,
762
- isDefinedBy: "owl:".freeze,
738
+ comment: "The property that determines the collection of individuals or data values that build an enumeration.".freeze,
739
+ domain: "http://www.w3.org/2000/01/rdf-schema#Class".freeze,
740
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
763
741
  label: "oneOf".freeze,
764
- range: "rdf:List".freeze,
765
- type: "rdf:Property".freeze
742
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze,
743
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
766
744
  property :priorVersion,
767
- comment: %(The annotation property that indicates the predecessor ontology of a given ontology.).freeze,
768
- domain: "owl:Ontology".freeze,
769
- isDefinedBy: "owl:".freeze,
745
+ comment: "The annotation property that indicates the predecessor ontology of a given ontology.".freeze,
746
+ domain: "http://www.w3.org/2002/07/owl#Ontology".freeze,
747
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
770
748
  label: "priorVersion".freeze,
771
- range: "owl:Ontology".freeze,
772
- type: ["owl:AnnotationProperty".freeze, "owl:OntologyProperty".freeze]
749
+ range: "http://www.w3.org/2002/07/owl#Ontology".freeze,
750
+ type: ["http://www.w3.org/2002/07/owl#AnnotationProperty".freeze, "http://www.w3.org/2002/07/owl#OntologyProperty".freeze]
773
751
  property :propertyChainAxiom,
774
- comment: %(The property that determines the n-tuple of properties that build a sub property chain of a given property.).freeze,
775
- domain: "owl:ObjectProperty".freeze,
776
- isDefinedBy: "owl:".freeze,
752
+ comment: "The property that determines the n-tuple of properties that build a sub property chain of a given property.".freeze,
753
+ domain: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze,
754
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
777
755
  label: "propertyChainAxiom".freeze,
778
- range: "rdf:List".freeze,
779
- type: "rdf:Property".freeze
756
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze,
757
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
780
758
  property :propertyDisjointWith,
781
- comment: %(The property that determines that two given properties are disjoint.).freeze,
782
- domain: "rdf:Property".freeze,
783
- isDefinedBy: "owl:".freeze,
759
+ comment: "The property that determines that two given properties are disjoint.".freeze,
760
+ domain: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze,
761
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
784
762
  label: "propertyDisjointWith".freeze,
785
- range: "rdf:Property".freeze,
786
- type: "rdf:Property".freeze
763
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze,
764
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
787
765
  property :qualifiedCardinality,
788
- comment: %(The property that determines the cardinality of an exact qualified cardinality restriction.).freeze,
789
- domain: "owl:Restriction".freeze,
790
- isDefinedBy: "owl:".freeze,
766
+ comment: "The property that determines the cardinality of an exact qualified cardinality restriction.".freeze,
767
+ domain: "http://www.w3.org/2002/07/owl#Restriction".freeze,
768
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
791
769
  label: "qualifiedCardinality".freeze,
792
- range: "xsd:nonNegativeInteger".freeze,
793
- type: "rdf:Property".freeze
770
+ range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze,
771
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
794
772
  property :sameAs,
795
- comment: %(The property that determines that two given individuals are equal.).freeze,
796
- domain: "owl:Thing".freeze,
797
- isDefinedBy: "owl:".freeze,
773
+ comment: "The property that determines that two given individuals are equal.".freeze,
774
+ domain: "http://www.w3.org/2002/07/owl#Thing".freeze,
775
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
798
776
  label: "sameAs".freeze,
799
- range: "owl:Thing".freeze,
800
- type: "rdf:Property".freeze
777
+ range: "http://www.w3.org/2002/07/owl#Thing".freeze,
778
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
801
779
  property :someValuesFrom,
802
- comment: %(The property that determines the class that an existential property restriction refers to.).freeze,
803
- domain: "owl:Restriction".freeze,
804
- isDefinedBy: "owl:".freeze,
780
+ comment: "The property that determines the class that an existential property restriction refers to.".freeze,
781
+ domain: "http://www.w3.org/2002/07/owl#Restriction".freeze,
782
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
805
783
  label: "someValuesFrom".freeze,
806
- range: "rdfs:Class".freeze,
807
- type: "rdf:Property".freeze
784
+ range: "http://www.w3.org/2000/01/rdf-schema#Class".freeze,
785
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
808
786
  property :sourceIndividual,
809
- comment: %(The property that determines the subject of a negative property assertion.).freeze,
810
- domain: "owl:NegativePropertyAssertion".freeze,
811
- isDefinedBy: "owl:".freeze,
787
+ comment: "The property that determines the subject of a negative property assertion.".freeze,
788
+ domain: "http://www.w3.org/2002/07/owl#NegativePropertyAssertion".freeze,
789
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
812
790
  label: "sourceIndividual".freeze,
813
- range: "owl:Thing".freeze,
814
- type: "rdf:Property".freeze
791
+ range: "http://www.w3.org/2002/07/owl#Thing".freeze,
792
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
815
793
  property :targetIndividual,
816
- comment: %(The property that determines the object of a negative object property assertion.).freeze,
817
- domain: "owl:NegativePropertyAssertion".freeze,
818
- isDefinedBy: "owl:".freeze,
794
+ comment: "The property that determines the object of a negative object property assertion.".freeze,
795
+ domain: "http://www.w3.org/2002/07/owl#NegativePropertyAssertion".freeze,
796
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
819
797
  label: "targetIndividual".freeze,
820
- range: "owl:Thing".freeze,
821
- type: "rdf:Property".freeze
798
+ range: "http://www.w3.org/2002/07/owl#Thing".freeze,
799
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
822
800
  property :targetValue,
823
- comment: %(The property that determines the value of a negative data property assertion.).freeze,
824
- domain: "owl:NegativePropertyAssertion".freeze,
825
- isDefinedBy: "owl:".freeze,
801
+ comment: "The property that determines the value of a negative data property assertion.".freeze,
802
+ domain: "http://www.w3.org/2002/07/owl#NegativePropertyAssertion".freeze,
803
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
826
804
  label: "targetValue".freeze,
827
- range: "rdfs:Literal".freeze,
828
- type: "rdf:Property".freeze
805
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
806
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
829
807
  property :topDataProperty,
830
- comment: %(The data property that relates every individual to every data value.).freeze,
831
- domain: "owl:Thing".freeze,
832
- isDefinedBy: "owl:".freeze,
808
+ comment: "The data property that relates every individual to every data value.".freeze,
809
+ domain: "http://www.w3.org/2002/07/owl#Thing".freeze,
810
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
833
811
  label: "topDataProperty".freeze,
834
- range: "rdfs:Literal".freeze,
835
- type: "owl:DatatypeProperty".freeze
812
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
813
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
836
814
  property :topObjectProperty,
837
- comment: %(The object property that relates every two individuals.).freeze,
838
- domain: "owl:Thing".freeze,
839
- isDefinedBy: "owl:".freeze,
815
+ comment: "The object property that relates every two individuals.".freeze,
816
+ domain: "http://www.w3.org/2002/07/owl#Thing".freeze,
817
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
840
818
  label: "topObjectProperty".freeze,
841
- range: "owl:Thing".freeze,
842
- type: "owl:ObjectProperty".freeze
819
+ range: "http://www.w3.org/2002/07/owl#Thing".freeze,
820
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
843
821
  property :unionOf,
844
- comment: %(The property that determines the collection of classes or data ranges that build a union.).freeze,
845
- domain: "rdfs:Class".freeze,
846
- isDefinedBy: "owl:".freeze,
822
+ comment: "The property that determines the collection of classes or data ranges that build a union.".freeze,
823
+ domain: "http://www.w3.org/2000/01/rdf-schema#Class".freeze,
824
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
847
825
  label: "unionOf".freeze,
848
- range: "rdf:List".freeze,
849
- type: "rdf:Property".freeze
826
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze,
827
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
850
828
  property :versionIRI,
851
- comment: %(The property that identifies the version IRI of an ontology.).freeze,
852
- domain: "owl:Ontology".freeze,
853
- isDefinedBy: "owl:".freeze,
829
+ comment: "The property that identifies the version IRI of an ontology.".freeze,
830
+ domain: "http://www.w3.org/2002/07/owl#Ontology".freeze,
831
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
854
832
  label: "versionIRI".freeze,
855
- range: "owl:Ontology".freeze,
856
- type: "owl:OntologyProperty".freeze
833
+ range: "http://www.w3.org/2002/07/owl#Ontology".freeze,
834
+ type: "http://www.w3.org/2002/07/owl#OntologyProperty".freeze
857
835
  property :versionInfo,
858
- comment: %(The annotation property that provides version information for an ontology or another OWL construct.).freeze,
859
- domain: "rdfs:Resource".freeze,
860
- isDefinedBy: "owl:".freeze,
836
+ comment: "The annotation property that provides version information for an ontology or another OWL construct.".freeze,
837
+ domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
838
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
861
839
  label: "versionInfo".freeze,
862
- range: "rdfs:Resource".freeze,
863
- type: "owl:AnnotationProperty".freeze
840
+ range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze,
841
+ type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze
864
842
  property :withRestrictions,
865
- comment: %(The property that determines the collection of facet-value pairs that define a datatype restriction.).freeze,
866
- domain: "rdfs:Datatype".freeze,
867
- isDefinedBy: "owl:".freeze,
843
+ comment: "The property that determines the collection of facet-value pairs that define a datatype restriction.".freeze,
844
+ domain: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze,
845
+ isDefinedBy: "http://www.w3.org/2002/07/owl#".freeze,
868
846
  label: "withRestrictions".freeze,
869
- range: "rdf:List".freeze,
870
- type: "rdf:Property".freeze
847
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze,
848
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
871
849
  end
872
850
  end