rdf-vocab 2.1.0 → 2.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (59) hide show
  1. checksums.yaml +4 -4
  2. data/lib/rdf/vocab.rb +11 -5
  3. data/lib/rdf/vocab/acl.rb +15 -3
  4. data/lib/rdf/vocab/bibframe.rb +6 -7
  5. data/lib/rdf/vocab/bibo.rb +123 -122
  6. data/lib/rdf/vocab/cc.rb +5 -0
  7. data/lib/rdf/vocab/cert.rb +35 -35
  8. data/lib/rdf/vocab/cnt.rb +10 -0
  9. data/lib/rdf/vocab/datacite.rb +16 -15
  10. data/lib/rdf/vocab/dc.rb +6 -5
  11. data/lib/rdf/vocab/dc11.rb +6 -7
  12. data/lib/rdf/vocab/dcat.rb +13 -0
  13. data/lib/rdf/vocab/dcmitype.rb +6 -7
  14. data/lib/rdf/vocab/disco.rb +14 -2
  15. data/lib/rdf/vocab/doap.rb +10 -11
  16. data/lib/rdf/vocab/dwc.rb +7 -8
  17. data/lib/rdf/vocab/ebucore.rb +17 -0
  18. data/lib/rdf/vocab/edm.rb +44 -45
  19. data/lib/rdf/vocab/exif.rb +11 -0
  20. data/lib/rdf/vocab/extensions.rb +1 -1
  21. data/lib/rdf/vocab/fcrepo4.rb +8 -8
  22. data/lib/rdf/vocab/foaf.rb +6 -7
  23. data/lib/rdf/vocab/geo.rb +58 -58
  24. data/lib/rdf/vocab/geonames.rb +28 -0
  25. data/lib/rdf/vocab/gr.rb +26 -0
  26. data/lib/rdf/vocab/ht.rb +10 -0
  27. data/lib/rdf/vocab/hydra.rb +13 -0
  28. data/lib/rdf/vocab/ical.rb +7 -0
  29. data/lib/rdf/vocab/identifiers.rb +8 -0
  30. data/lib/rdf/vocab/iiif.rb +5 -4
  31. data/lib/rdf/vocab/jsonld.rb +6 -0
  32. data/lib/rdf/vocab/ldp.rb +22 -12
  33. data/lib/rdf/vocab/lrmi.rb +10 -11
  34. data/lib/rdf/vocab/ma.rb +8 -0
  35. data/lib/rdf/vocab/marc_relators.rb +12 -0
  36. data/lib/rdf/vocab/mo.rb +15 -14
  37. data/lib/rdf/vocab/mods.rb +5 -0
  38. data/lib/rdf/vocab/oa.rb +15 -34
  39. data/lib/rdf/vocab/ore.rb +8 -8
  40. data/lib/rdf/vocab/org.rb +12 -10
  41. data/lib/rdf/vocab/pplan.rb +14 -15
  42. data/lib/rdf/vocab/premis.rb +11 -0
  43. data/lib/rdf/vocab/premis_event_type.rb +10 -0
  44. data/lib/rdf/vocab/prov.rb +16 -14
  45. data/lib/rdf/vocab/rightsstatements.rb +247 -0
  46. data/lib/rdf/vocab/rsa.rb +9 -0
  47. data/lib/rdf/vocab/sioc.rb +9 -10
  48. data/lib/rdf/vocab/sioc_services.rb +8 -9
  49. data/lib/rdf/vocab/skos.rb +9 -0
  50. data/lib/rdf/vocab/skosxl.rb +10 -0
  51. data/lib/rdf/vocab/vcard.rb +7 -0
  52. data/lib/rdf/vocab/vs.rb +13 -0
  53. data/lib/rdf/vocab/wdrs.rb +8 -0
  54. data/lib/rdf/vocab/wot.rb +9 -10
  55. data/lib/rdf/vocab/xhtml.rb +5 -0
  56. data/lib/rdf/vocab/xhv.rb +4 -0
  57. data/lib/rdf/vocab/xkos.rb +245 -0
  58. data/spec/extensions_spec.rb +12 -0
  59. metadata +5 -3
data/lib/rdf/vocab/rsa.rb CHANGED
@@ -9,6 +9,15 @@ module RDF::Vocab
9
9
  # end
10
10
  class RSA < RDF::StrictVocabulary("http://www.w3.org/ns/auth/rsa#")
11
11
 
12
+ # Ontology definition
13
+ ontology :"http://www.w3.org/ns/auth/rsa",
14
+ comment: %(ontology for the RSA public private keys ).freeze,
15
+ :"dc:created" => %(2008-11-13).freeze,
16
+ :"foaf:maker" => %(http://bblfish.net/people/henry/card#me).freeze,
17
+ :"rdfs:seeAlso" => [%(http://en.wikipedia.org/wiki/RSA).freeze, %(http://lists.foaf-project.org/mailman/listinfo/foaf-protocols).freeze, %(http://www.w3.org/ns/auth/X509Uml.svg).freeze],
18
+ type: "owl:Ontology".freeze,
19
+ :"vs:term_status" => %(unstable).freeze
20
+
12
21
  # Class definitions
13
22
  term :RSAKey,
14
23
  comment: %(
@@ -9,6 +9,15 @@ module RDF::Vocab
9
9
  # end
10
10
  class SIOC < RDF::StrictVocabulary("http://rdfs.org/sioc/ns#")
11
11
 
12
+ # Ontology definition
13
+ ontology :"http://rdfs.org/sioc/ns#",
14
+ :"dc:description" => %(SIOC \(Semantically-Interlinked Online Communities\) is an ontology for describing the information in online communities.
15
+ This information can be used to export information from online communities and to link them together. The scope of the application areas that SIOC can be used for includes \(and is not limited to\) weblogs, message boards, mailing lists and chat channels.).freeze,
16
+ :"dc:title" => %(SIOC Core Ontology Namespace).freeze,
17
+ :"owl:versionInfo" => %(Revision: 1.35).freeze,
18
+ :"rdfs:seeAlso" => %(http://rdfs.org/sioc/spec).freeze,
19
+ type: ["owl:Ontology".freeze, "owl:Thing".freeze]
20
+
12
21
  # Class definitions
13
22
  term :Community,
14
23
  comment: %(Community is a high-level concept that defines an online community and what it consists of.).freeze,
@@ -659,15 +668,5 @@ module RDF::Vocab
659
668
  range: "sioc:Space".freeze,
660
669
  :"rdfs:isDefinedBy" => %(sioc:).freeze,
661
670
  type: "owl:ObjectProperty".freeze
662
-
663
- # Extra definitions
664
- term :"",
665
- :"dc:description" => %(SIOC \(Semantically-Interlinked Online Communities\) is an ontology for describing the information in online communities.
666
- This information can be used to export information from online communities and to link them together. The scope of the application areas that SIOC can be used for includes \(and is not limited to\) weblogs, message boards, mailing lists and chat channels.).freeze,
667
- :"dc:title" => %(SIOC Core Ontology Namespace).freeze,
668
- label: "".freeze,
669
- :"owl:versionInfo" => %(Revision: 1.35).freeze,
670
- :"rdfs:seeAlso" => %(http://rdfs.org/sioc/spec).freeze,
671
- type: ["owl:Ontology".freeze, "owl:Thing".freeze]
672
671
  end
673
672
  end
@@ -9,6 +9,14 @@ module RDF::Vocab
9
9
  # end
10
10
  class SiocServices < RDF::StrictVocabulary("http://rdfs.org/sioc/services#")
11
11
 
12
+ # Ontology definition
13
+ ontology :"http://rdfs.org/sioc/services#",
14
+ :"dc:description" => %(Extends the SIOC Core Ontology \(Semantically-Interlinked Online Communities\) by defining basic information on community-related web services.).freeze,
15
+ :"dc:title" => %(SIOC Services Ontology Module Namespace).freeze,
16
+ :"owl:imports" => %(sioc:).freeze,
17
+ :"rdfs:seeAlso" => %(http://rdfs.org/sioc/spec/#sec-modules).freeze,
18
+ type: ["owl:Ontology".freeze, "owl:Thing".freeze]
19
+
12
20
  # Class definitions
13
21
  term :Service,
14
22
  comment: %(A Service is web service associated with a Site or part of it.).freeze,
@@ -62,14 +70,5 @@ module RDF::Vocab
62
70
  label: "service protocol".freeze,
63
71
  :"rdfs:isDefinedBy" => %(siocservices:).freeze,
64
72
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
65
-
66
- # Extra definitions
67
- term :"",
68
- :"dc:description" => %(Extends the SIOC Core Ontology \(Semantically-Interlinked Online Communities\) by defining basic information on community-related web services.).freeze,
69
- :"dc:title" => %(SIOC Services Ontology Module Namespace).freeze,
70
- label: "".freeze,
71
- :"owl:imports" => %(sioc:).freeze,
72
- :"rdfs:seeAlso" => %(http://rdfs.org/sioc/spec/#sec-modules).freeze,
73
- type: ["owl:Ontology".freeze, "owl:Thing".freeze]
74
73
  end
75
74
  end
@@ -9,6 +9,15 @@ module RDF::Vocab
9
9
  # end
10
10
  class SKOS < RDF::StrictVocabulary("http://www.w3.org/2004/02/skos/core#")
11
11
 
12
+ # Ontology definition
13
+ ontology :"http://www.w3.org/2004/02/skos/core",
14
+ :"dc:contributor" => [%(Dave Beckett).freeze, %(Nikki Rogers).freeze, %(Participants in W3C's Semantic Web Deployment Working Group.).freeze],
15
+ :"dc:creator" => [%(Alistair Miles).freeze, %(Sean Bechhofer).freeze],
16
+ :"dc:description" => %(An RDF vocabulary for describing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading lists, taxonomies, 'folksonomies', other types of controlled vocabulary, and also concept schemes embedded in glossaries and terminologies.).freeze,
17
+ :"dc:title" => %(SKOS Vocabulary).freeze,
18
+ :"rdfs:seeAlso" => %(http://www.w3.org/TR/skos-reference/).freeze,
19
+ type: "owl:Ontology".freeze
20
+
12
21
  # Class definitions
13
22
  term :Collection,
14
23
  label: "Collection".freeze,
@@ -9,6 +9,16 @@ module RDF::Vocab
9
9
  # end
10
10
  class SKOSXL < RDF::StrictVocabulary("http://www.w3.org/2008/05/skos-xl#")
11
11
 
12
+ # Ontology definition
13
+ ontology :"http://www.w3.org/2008/05/skos-xl",
14
+ :"dc:contributor" => %(Participants in W3C's Semantic Web Deployment Working Group.).freeze,
15
+ :"dc:creator" => [%(Alistair Miles).freeze, %(Sean Bechhofer).freeze],
16
+ :"dc:description" => %(An RDF vocabulary extending SKOS and allowing the description and linking of lexical entities.).freeze,
17
+ :"dc:title" => %(SKOS XL Vocabulary).freeze,
18
+ :"owl:imports" => %(http://www.w3.org/2004/02/skos/core).freeze,
19
+ :"rdfs:seeAlso" => %(http://www.w3.org/2008/05/skos).freeze,
20
+ type: "owl:Ontology".freeze
21
+
12
22
  # Class definitions
13
23
  term :Label,
14
24
  label: "Label".freeze,
@@ -9,6 +9,13 @@ module RDF::Vocab
9
9
  # end
10
10
  class VCARD < RDF::StrictVocabulary("http://www.w3.org/2006/vcard/ns#")
11
11
 
12
+ # Ontology definition
13
+ ontology :"http://www.w3.org/2006/vcard/ns",
14
+ comment: %(Ontology for vCard based on RFC6350).freeze,
15
+ label: "Ontology for vCard".freeze,
16
+ :"owl:versionInfo" => %(Final).freeze,
17
+ type: "owl:Ontology".freeze
18
+
12
19
  # Class definitions
13
20
  term :Acquaintance,
14
21
  label: "Acquaintance".freeze,
data/lib/rdf/vocab/vs.rb CHANGED
@@ -9,6 +9,19 @@ module RDF::Vocab
9
9
  # end
10
10
  class VS < RDF::StrictVocabulary("http://www.w3.org/2003/06/sw-vocab-status/ns#")
11
11
 
12
+ # Ontology definition
13
+ ontology :"http://www.w3.org/2003/06/sw-vocab-status/ns",
14
+ comment: %(This vocabulary was created in the FOAF project, based on experience with FOAF, Dublin Core and other early RDF vocabularies. Deployment experience shows that changing namespace URIs is expensive and unrewarding, so this vocabulary provides terms to support in-place evolution of structured data vocabularies. By indicating status at the level of terms rather than vocabularies, dictionary-style, fine grained improvements become easier. Different organizations and parties can agree or disagree on the status of a vocabulary term; however the status published alongside the term may deserve special attention. Future work could include patterns for citing announcements and decisions, or using SKOS to decentralise the extension of the basic status levels.).freeze,
15
+ :"dc11:contributor" => %(Pierre-Yves Vandenbussche).freeze,
16
+ :"dc11:creator" => [%(Dan Brickley).freeze, %(Leigh Dodds).freeze, %(Libby Miller).freeze],
17
+ :"dc11:description" => %(An RDF vocabulary for relating SW vocabulary terms to their status.).freeze,
18
+ :"dc11:issued" => %(2003-06-01).freeze,
19
+ :"dc11:modified" => %(2011-12-12).freeze,
20
+ :"dc11:title" => %(SemWeb Vocab Status ontology).freeze,
21
+ :"http://purl.org/vocab/vann/preferredNamespacePrefix" => %(vs).freeze,
22
+ :"http://purl.org/vocab/vann/preferredNamespaceUri" => %(http://www.w3.org/2003/06/sw-vocab-status/ns#).freeze,
23
+ type: "owl:Ontology".freeze
24
+
12
25
  # Property definitions
13
26
  property :moreinfo,
14
27
  comment: %(more information about the status etc of a term, typically human oriented).freeze,
@@ -9,6 +9,14 @@ module RDF::Vocab
9
9
  # end
10
10
  class WDRS < RDF::StrictVocabulary("http://www.w3.org/2007/05/powder-s#")
11
11
 
12
+ # Ontology definition
13
+ ontology :"http://www.w3.org/2007/05/powder-s",
14
+ comment: %(This file specifies the set of classes and properties used in the RDF/OWL version of POWDER documents.).freeze,
15
+ label: "POWDER-S Vocabulary".freeze,
16
+ :"owl:priorVersion" => %(http://www.w3.org/2007/05/powder-s).freeze,
17
+ :"owl:versionInfo" => %(8 November 2010).freeze,
18
+ type: "owl:Ontology".freeze
19
+
12
20
  # Class definitions
13
21
  term :Document,
14
22
  comment: %(A POWDER document.).freeze,
data/lib/rdf/vocab/wot.rb CHANGED
@@ -9,6 +9,15 @@ module RDF::Vocab
9
9
  # end
10
10
  class WOT < RDF::StrictVocabulary("http://xmlns.com/wot/0.1/")
11
11
 
12
+ # Ontology definition
13
+ ontology :"http://xmlns.com/wot/0.1/",
14
+ :"dc11:date" => %(2004-02-23).freeze,
15
+ :"dc11:description" => %(Web Of Trust \(wot\) RDF vocabulary, described using W3C RDF Schema and the Web Ontology Language.).freeze,
16
+ :"dc11:title" => %(Web Of Trust vocabulary).freeze,
17
+ :"owl:imports" => [%(http://www.w3.org/2000/01/rdf-schema).freeze, %(http://www.w3.org/2002/07/owl).freeze],
18
+ :"rdfs:seeAlso" => %(foaf:).freeze,
19
+ type: "owl:Ontology".freeze
20
+
12
21
  # Class definitions
13
22
  term :EncryptedDocument,
14
23
  comment: %(An encrypted document intended for a set of recipients.).freeze,
@@ -157,15 +166,5 @@ module RDF::Vocab
157
166
  :"rdfs:isDefinedBy" => %(wot:).freeze,
158
167
  type: "owl:DatatypeProperty".freeze,
159
168
  :"vs:term_status" => %(unstable).freeze
160
-
161
- # Extra definitions
162
- term :"",
163
- :"dc11:date" => %(2004-02-23).freeze,
164
- :"dc11:description" => %(Web Of Trust \(wot\) RDF vocabulary, described using W3C RDF Schema and the Web Ontology Language.).freeze,
165
- :"dc11:title" => %(Web Of Trust vocabulary).freeze,
166
- label: "".freeze,
167
- :"owl:imports" => [%(http://www.w3.org/2000/01/rdf-schema).freeze, %(http://www.w3.org/2002/07/owl).freeze],
168
- :"rdfs:seeAlso" => %(foaf:).freeze,
169
- type: "owl:Ontology".freeze
170
169
  end
171
170
  end
@@ -8,5 +8,10 @@ module RDF::Vocab
8
8
  # class XHTML < RDF::Vocabulary
9
9
  # end
10
10
  class XHTML < RDF::Vocabulary("http://www.w3.org/1999/xhtml#")
11
+
12
+ # Ontology definition
13
+ ontology :"http://www.w3.org/1999/xhtml",
14
+ :"http://www.w3.org/2003/g/data-view#namespaceTransformation" => %(http://www.w3.org/2008/07/rdfa-xslt).freeze,
15
+ :"xhv:stylesheet" => %(http://www.w3.org/StyleSheets/TR/base).freeze
11
16
  end
12
17
  end
data/lib/rdf/vocab/xhv.rb CHANGED
@@ -9,6 +9,10 @@ module RDF::Vocab
9
9
  # end
10
10
  class XHV < RDF::Vocabulary("http://www.w3.org/1999/xhtml/vocab#")
11
11
 
12
+ # Ontology definition
13
+ ontology :"http://www.w3.org/1999/xhtml/vocab",
14
+ :"xhv:stylesheet" => %(http://www.w3.org/StyleSheets/TR/base.css).freeze
15
+
12
16
  # Property definitions
13
17
  property :alert,
14
18
  comment: %(A message
@@ -0,0 +1,245 @@
1
+ # -*- encoding: utf-8 -*-
2
+ # frozen_string_literal: true
3
+ # This file generated automatically using rdf vocabulary format from http://rdf-vocabulary.ddialliance.org/xkos#
4
+ require 'rdf'
5
+ module RDF::Vocab
6
+ # @!parse
7
+ # # Vocabulary for <http://rdf-vocabulary.ddialliance.org/xkos#>
8
+ # class XKOS < RDF::StrictVocabulary
9
+ # end
10
+ class XKOS < RDF::StrictVocabulary("http://rdf-vocabulary.ddialliance.org/xkos#")
11
+
12
+ # Ontology definition
13
+ ontology :"http://rdf-vocabulary.ddialliance.org/xkos",
14
+ :"cc:license" => %(http://creativecommons.org/licenses/by-nc-sa/3.0/us/).freeze,
15
+ comment: [%(Cette ontologie est basée sur le travail commencé à Dagstuhl Schloss en septembre 2011).freeze, %(This ontology is based on work initiated at Dagstuhl Schloss in September 2011).freeze],
16
+ :"dc11:contributor" => [%(Daniel Gillman).freeze, %(Jannik Jensen).freeze, %(R.T.A.M. Grim).freeze, %(Richard Cyganiak).freeze, %(Thomas Bosch).freeze, %(Wendy L. Thomas).freeze, %(Yves Jaques).freeze],
17
+ :"dc11:creator" => %(Franck Cotton).freeze,
18
+ :"dc11:rights" => %(Copyright © 2012-2014 The DDI Alliance).freeze,
19
+ :"dc11:title" => %(XKOS: an SKOS extension for representing statistical classifications).freeze,
20
+ :"http://purl.org/vocab/vann/preferredNamespacePrefix" => %(xkos).freeze,
21
+ :"http://purl.org/vocab/vann/preferredNamespaceUri" => %(xkos:).freeze,
22
+ :"http://purl.org/vocommons/voaf#classNumber" => %(3).freeze,
23
+ :"http://purl.org/vocommons/voaf#extends" => %(http://www.w3.org/2004/02/skos/core).freeze,
24
+ :"http://purl.org/vocommons/voaf#propertyNumber" => %(36).freeze,
25
+ :"owl:versionInfo" => %(Version 1.0 - 2014-05-20).freeze,
26
+ type: ["http://purl.org/vocommons/voaf#Vocabulary".freeze, "owl:Ontology".freeze]
27
+
28
+ # Class definitions
29
+ term :ClassificationLevel,
30
+ label: "Classification level".freeze,
31
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
32
+ subClassOf: "skos:Collection".freeze,
33
+ type: ["owl:Class".freeze, "rdfs:Class".freeze]
34
+ term :ConceptAssociation,
35
+ label: "Concept association".freeze,
36
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
37
+ type: ["owl:Class".freeze, "rdfs:Class".freeze]
38
+ term :Correspondence,
39
+ label: "Correspondence".freeze,
40
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
41
+ type: ["owl:Class".freeze, "rdfs:Class".freeze]
42
+
43
+ # Property definitions
44
+ property :additionalContentNote,
45
+ label: "additional content".freeze,
46
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
47
+ subPropertyOf: "xkos:inclusionNote".freeze,
48
+ type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze]
49
+ property :after,
50
+ label: "after".freeze,
51
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
52
+ subPropertyOf: "xkos:temporal".freeze,
53
+ type: ["owl:TransitiveProperty".freeze, "rdf:Property".freeze]
54
+ property :before,
55
+ label: "before".freeze,
56
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
57
+ subPropertyOf: "xkos:temporal".freeze,
58
+ type: ["owl:TransitiveProperty".freeze, "rdf:Property".freeze]
59
+ property :belongsTo,
60
+ domain: "skos:ConceptScheme".freeze,
61
+ label: "belongs to".freeze,
62
+ range: "skos:Concept".freeze,
63
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
64
+ type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
65
+ property :causal,
66
+ label: "has causal".freeze,
67
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
68
+ subPropertyOf: "skos:related".freeze,
69
+ type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
70
+ property :causedBy,
71
+ label: "caused by".freeze,
72
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
73
+ subPropertyOf: "xkos:causal".freeze,
74
+ type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
75
+ property :causes,
76
+ label: "causes".freeze,
77
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
78
+ subPropertyOf: "xkos:causal".freeze,
79
+ type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
80
+ property :classifiedUnder,
81
+ domain: "rdfs:Resource".freeze,
82
+ label: "classified under".freeze,
83
+ range: "skos:Concept".freeze,
84
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
85
+ type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
86
+ property :coreContentNote,
87
+ label: "core content".freeze,
88
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
89
+ subPropertyOf: "xkos:inclusionNote".freeze,
90
+ type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze]
91
+ property :covers,
92
+ label: "covers".freeze,
93
+ range: "skos:Concept".freeze,
94
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
95
+ type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
96
+ property :coversExhaustively,
97
+ label: "covers exhaustively".freeze,
98
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
99
+ subPropertyOf: "xkos:covers".freeze,
100
+ type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
101
+ property :coversMutuallyExclusively,
102
+ label: "covers mutually exclusively".freeze,
103
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
104
+ subPropertyOf: "xkos:covers".freeze,
105
+ type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
106
+ property :depth,
107
+ domain: "xkos:ClassificationLevel".freeze,
108
+ label: "depth".freeze,
109
+ range: "xsd:positiveInteger".freeze,
110
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
111
+ type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
112
+ property :disjoint,
113
+ label: "disjoint from".freeze,
114
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
115
+ subPropertyOf: "skos:related".freeze,
116
+ type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
117
+ property :exclusionNote,
118
+ label: "exclusions".freeze,
119
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
120
+ subPropertyOf: "skos:scopeNote".freeze,
121
+ type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze]
122
+ property :follows,
123
+ domain: "skos:ConceptScheme".freeze,
124
+ label: "follows".freeze,
125
+ range: "skos:ConceptScheme".freeze,
126
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
127
+ type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
128
+ property :generalizes,
129
+ label: "generalizes".freeze,
130
+ :"owl:inverseOf" => %(xkos:specializes).freeze,
131
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
132
+ subPropertyOf: "skos:broader".freeze,
133
+ type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
134
+ property :hasPart,
135
+ label: "has part".freeze,
136
+ :"owl:inverseOf" => %(xkos:isPartOf).freeze,
137
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
138
+ subPropertyOf: "skos:broader".freeze,
139
+ type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
140
+ property :inclusionNote,
141
+ label: "inclusions".freeze,
142
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
143
+ subPropertyOf: "skos:scopeNote".freeze,
144
+ type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze]
145
+ property :isPartOf,
146
+ label: "is a part of".freeze,
147
+ :"owl:inverseOf" => %(xkos:hasPart).freeze,
148
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
149
+ subPropertyOf: "skos:narrower".freeze,
150
+ type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
151
+ property :levels,
152
+ domain: "skos:ConceptScheme".freeze,
153
+ label: "level list".freeze,
154
+ range: "rdf:List".freeze,
155
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
156
+ type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
157
+ property :madeOf,
158
+ domain: "xkos:Correspondence".freeze,
159
+ label: "made of".freeze,
160
+ range: "xkos:ConceptAssociation".freeze,
161
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
162
+ type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
163
+ property :maxLength,
164
+ domain: "skosxl:Label".freeze,
165
+ label: "maximum length".freeze,
166
+ range: "xsd:positiveInteger".freeze,
167
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
168
+ type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
169
+ property :next,
170
+ comment: [%(immediate successor in the sequence).freeze, %(successeur immédiat dans la séquence).freeze],
171
+ label: "next".freeze,
172
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
173
+ subPropertyOf: "xkos:succeeds".freeze,
174
+ type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
175
+ property :numberOfLevels,
176
+ domain: "skos:ConceptScheme".freeze,
177
+ label: "number of levels".freeze,
178
+ range: "xsd:positiveInteger".freeze,
179
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
180
+ type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
181
+ property :organizedBy,
182
+ domain: "xkos:ClassificationLevel".freeze,
183
+ label: "organized by".freeze,
184
+ range: "skos:Concept".freeze,
185
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
186
+ type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
187
+ property :precedes,
188
+ comment: %(predecessor in the sequence).freeze,
189
+ label: "precedes".freeze,
190
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
191
+ subPropertyOf: "xkos:sequential".freeze,
192
+ type: ["owl:TransitiveProperty".freeze, "rdf:Property".freeze]
193
+ property :previous,
194
+ comment: %(immediate predecessor in the sequence).freeze,
195
+ label: "previous".freeze,
196
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
197
+ subPropertyOf: "xkos:precedes".freeze,
198
+ type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
199
+ property :sequential,
200
+ label: "has sequential".freeze,
201
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
202
+ subPropertyOf: "skos:related".freeze,
203
+ type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
204
+ property :sourceConcept,
205
+ domain: "xkos:ConceptAssociation".freeze,
206
+ label: "source concept".freeze,
207
+ range: "skos:Concept".freeze,
208
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
209
+ type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
210
+ property :specializes,
211
+ label: "specializes".freeze,
212
+ :"owl:inverseOf" => %(xkos:generalizes).freeze,
213
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
214
+ subPropertyOf: "skos:narrower".freeze,
215
+ type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
216
+ property :succeeds,
217
+ comment: [%(successeur dans la séquence).freeze, %(successor in the sequence).freeze],
218
+ label: "succeeds".freeze,
219
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
220
+ subPropertyOf: "xkos:sequential".freeze,
221
+ type: ["owl:TransitiveProperty".freeze, "rdf:Property".freeze]
222
+ property :supersedes,
223
+ label: "supersedes".freeze,
224
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
225
+ subPropertyOf: "xkos:follows".freeze,
226
+ type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
227
+ property :targetConcept,
228
+ domain: "xkos:ConceptAssociation".freeze,
229
+ label: "target concept".freeze,
230
+ range: "skos:Concept".freeze,
231
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
232
+ type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
233
+ property :temporal,
234
+ label: "has temporal".freeze,
235
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
236
+ subPropertyOf: "xkos:sequential".freeze,
237
+ type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
238
+ property :variant,
239
+ domain: "skos:ConceptScheme".freeze,
240
+ label: "variant".freeze,
241
+ range: "skos:ConceptScheme".freeze,
242
+ :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/xkos).freeze,
243
+ type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
244
+ end
245
+ end