rdf-vocab 3.1.2 → 3.1.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (87) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +1 -1
  3. data/README.md +69 -45
  4. data/VERSION +1 -1
  5. data/lib/rdf/vocab.rb +60 -40
  6. data/lib/rdf/vocab/acl.rb +104 -61
  7. data/lib/rdf/vocab/as.rb +556 -91
  8. data/lib/rdf/vocab/bf2.rb +1791 -475
  9. data/lib/rdf/vocab/bibframe.rb +1 -2
  10. data/lib/rdf/vocab/bibo.rb +616 -124
  11. data/lib/rdf/vocab/cc.rb +125 -48
  12. data/lib/rdf/vocab/cert.rb +68 -1
  13. data/lib/rdf/vocab/cnt.rb +79 -1
  14. data/lib/rdf/vocab/crm.rb +1543 -776
  15. data/lib/rdf/vocab/datacite.rb +1 -1
  16. data/lib/rdf/vocab/dbo.rb +10463 -1
  17. data/lib/rdf/vocab/dc.rb +485 -99
  18. data/lib/rdf/vocab/dc11.rb +93 -31
  19. data/lib/rdf/vocab/dcat.rb +236 -88
  20. data/lib/rdf/vocab/dcmitype.rb +63 -13
  21. data/lib/rdf/vocab/disco.rb +286 -59
  22. data/lib/rdf/vocab/doap.rb +175 -1
  23. data/lib/rdf/vocab/dwc.rb +941 -189
  24. data/lib/rdf/vocab/earl.rb +324 -0
  25. data/lib/rdf/vocab/ebucore.rb +7255 -2184
  26. data/lib/rdf/vocab/edm.rb +202 -76
  27. data/lib/rdf/vocab/exif.rb +650 -1
  28. data/lib/rdf/vocab/extensions.rb +257 -203
  29. data/lib/rdf/vocab/fcrepo4.rb +398 -22
  30. data/lib/rdf/vocab/foaf.rb +380 -76
  31. data/lib/rdf/vocab/geo.rb +47 -110
  32. data/lib/rdf/vocab/geojson.rb +82 -17
  33. data/lib/rdf/vocab/geonames.rb +1508 -1351
  34. data/lib/rdf/vocab/gr.rb +861 -565
  35. data/lib/rdf/vocab/gs1.rb +1597 -1
  36. data/lib/rdf/vocab/ht.rb +204 -41
  37. data/lib/rdf/vocab/hydra.rb +335 -60
  38. data/lib/rdf/vocab/iana.rb +301 -114
  39. data/lib/rdf/vocab/ical.rb +534 -121
  40. data/lib/rdf/vocab/identifiers.rb +459 -499
  41. data/lib/rdf/vocab/iiif.rb +161 -26
  42. data/lib/rdf/vocab/jsonld.rb +179 -53
  43. data/lib/rdf/vocab/ldp.rb +130 -1
  44. data/lib/rdf/vocab/lrmi.rb +85 -17
  45. data/lib/rdf/vocab/ma.rb +460 -80
  46. data/lib/rdf/vocab/mads.rb +610 -22
  47. data/lib/rdf/vocab/{marc_relators.rb → marcrelators.rb} +813 -4
  48. data/lib/rdf/vocab/mo.rb +1115 -540
  49. data/lib/rdf/vocab/mods.rb +635 -124
  50. data/lib/rdf/vocab/nfo.rb +1 -1
  51. data/lib/rdf/vocab/oa.rb +343 -73
  52. data/lib/rdf/vocab/og.rb +100 -1
  53. data/lib/rdf/vocab/ogc.rb +42 -9
  54. data/lib/rdf/vocab/ore.rb +69 -14
  55. data/lib/rdf/vocab/org.rb +235 -47
  56. data/lib/rdf/vocab/pcdm.rb +58 -34
  57. data/lib/rdf/vocab/pplan.rb +21 -136
  58. data/lib/rdf/vocab/premis.rb +1171 -779
  59. data/lib/rdf/vocab/{premis_event_type.rb → premiseventtype.rb} +156 -2
  60. data/lib/rdf/vocab/prov.rb +700 -107
  61. data/lib/rdf/vocab/ptr.rb +172 -37
  62. data/lib/rdf/vocab/rightsstatements.rb +17 -13
  63. data/lib/rdf/vocab/rsa.rb +30 -1
  64. data/lib/rdf/vocab/rss.rb +52 -11
  65. data/lib/rdf/vocab/schema.rb +14970 -3993
  66. data/lib/rdf/vocab/schemas.rb +27066 -0
  67. data/lib/rdf/vocab/sd.rb +372 -0
  68. data/lib/rdf/vocab/sh.rb +919 -184
  69. data/lib/rdf/vocab/sioc.rb +498 -98
  70. data/lib/rdf/vocab/{sioc_services.rb → siocservices.rb} +46 -9
  71. data/lib/rdf/vocab/sioctypes.rb +434 -0
  72. data/lib/rdf/vocab/skos.rb +160 -44
  73. data/lib/rdf/vocab/skosxl.rb +40 -11
  74. data/lib/rdf/vocab/v.rb +323 -37
  75. data/lib/rdf/vocab/vcard.rb +625 -119
  76. data/lib/rdf/vocab/vmd.rb +323 -37
  77. data/lib/rdf/vocab/void.rb +147 -27
  78. data/lib/rdf/vocab/vs.rb +23 -5
  79. data/lib/rdf/vocab/wdrs.rb +112 -23
  80. data/lib/rdf/vocab/wot.rb +96 -19
  81. data/lib/rdf/vocab/xhtml.rb +2 -1
  82. data/lib/rdf/vocab/xhv.rb +422 -201
  83. data/lib/rdf/vocab/xkos.rb +156 -7
  84. data/spec/extensions_spec.rb +68 -0
  85. data/spec/vocab_spec.rb +10 -0
  86. metadata +20 -11
  87. data/lib/rdf/vocab/sioct.rb +0 -277
@@ -5,9 +5,59 @@ require 'rdf'
5
5
  module RDF::Vocab
6
6
  # @!parse
7
7
  # # Vocabulary for <http://purl.org/dc/dcmitype/>
8
+ # #
9
+ # # DCMI Type Vocabulary
8
10
  # class DCMIType < RDF::StrictVocabulary
11
+ # # An aggregation of resources.
12
+ # # @return [RDF::Vocabulary::Term]
13
+ # attr_reader :Collection
14
+ #
15
+ # # Data encoded in a defined structure.
16
+ # # @return [RDF::Vocabulary::Term]
17
+ # attr_reader :Dataset
18
+ #
19
+ # # A non-persistent, time-based occurrence.
20
+ # # @return [RDF::Vocabulary::Term]
21
+ # attr_reader :Event
22
+ #
23
+ # # A visual representation other than text.
24
+ # # @return [RDF::Vocabulary::Term]
25
+ # attr_reader :Image
26
+ #
27
+ # # A resource requiring interaction from the user to be understood, executed, or experienced.
28
+ # # @return [RDF::Vocabulary::Term]
29
+ # attr_reader :InteractiveResource
30
+ #
31
+ # # A series of visual representations imparting an impression of motion when shown in succession.
32
+ # # @return [RDF::Vocabulary::Term]
33
+ # attr_reader :MovingImage
34
+ #
35
+ # # An inanimate, three-dimensional object or substance.
36
+ # # @return [RDF::Vocabulary::Term]
37
+ # attr_reader :PhysicalObject
38
+ #
39
+ # # A system that provides one or more functions.
40
+ # # @return [RDF::Vocabulary::Term]
41
+ # attr_reader :Service
42
+ #
43
+ # # A computer program in source or compiled form.
44
+ # # @return [RDF::Vocabulary::Term]
45
+ # attr_reader :Software
46
+ #
47
+ # # A resource primarily intended to be heard.
48
+ # # @return [RDF::Vocabulary::Term]
49
+ # attr_reader :Sound
50
+ #
51
+ # # A static visual representation.
52
+ # # @return [RDF::Vocabulary::Term]
53
+ # attr_reader :StillImage
54
+ #
55
+ # # A resource consisting primarily of words for reading.
56
+ # # @return [RDF::Vocabulary::Term]
57
+ # attr_reader :Text
58
+ #
9
59
  # end
10
- class DCMIType < RDF::StrictVocabulary("http://purl.org/dc/dcmitype/")
60
+ DCMIType = Class.new(RDF::StrictVocabulary("http://purl.org/dc/dcmitype/")) do
11
61
 
12
62
  # Ontology definition
13
63
  ontology :"http://purl.org/dc/dcmitype/",
@@ -17,7 +67,7 @@ module RDF::Vocab
17
67
 
18
68
  # Class definitions
19
69
  term :Collection,
20
- comment: %(An aggregation of resources.).freeze,
70
+ comment: "An aggregation of resources.".freeze,
21
71
  "dc:description": "A collection is described as a group; its parts may also be separately described.".freeze,
22
72
  "dc:issued": "2000-07-11".freeze,
23
73
  "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
@@ -25,7 +75,7 @@ module RDF::Vocab
25
75
  label: "Collection".freeze,
26
76
  type: "rdfs:Class".freeze
27
77
  term :Dataset,
28
- comment: %(Data encoded in a defined structure.).freeze,
78
+ comment: "Data encoded in a defined structure.".freeze,
29
79
  "dc:description": "Examples include lists, tables, and databases. A dataset may be useful for direct machine processing.".freeze,
30
80
  "dc:issued": "2000-07-11".freeze,
31
81
  "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
@@ -33,7 +83,7 @@ module RDF::Vocab
33
83
  label: "Dataset".freeze,
34
84
  type: "rdfs:Class".freeze
35
85
  term :Event,
36
- comment: %(A non-persistent, time-based occurrence.).freeze,
86
+ comment: "A non-persistent, time-based occurrence.".freeze,
37
87
  "dc:description": "Metadata for an event provides descriptive information that is the basis for discovery of the purpose, location, duration, and responsible agents associated with an event. Examples include an exhibition, webcast, conference, workshop, open day, performance, battle, trial, wedding, tea party, conflagration.".freeze,
38
88
  "dc:issued": "2000-07-11".freeze,
39
89
  "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
@@ -41,7 +91,7 @@ module RDF::Vocab
41
91
  label: "Event".freeze,
42
92
  type: "rdfs:Class".freeze
43
93
  term :Image,
44
- comment: %(A visual representation other than text.).freeze,
94
+ comment: "A visual representation other than text.".freeze,
45
95
  "dc:description": "Examples include images and photographs of physical objects, paintings, prints, drawings, other images and graphics, animations and moving pictures, film, diagrams, maps, musical notation. Note that Image may include both electronic and physical representations.".freeze,
46
96
  "dc:issued": "2000-07-11".freeze,
47
97
  "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
@@ -49,7 +99,7 @@ module RDF::Vocab
49
99
  label: "Image".freeze,
50
100
  type: "rdfs:Class".freeze
51
101
  term :InteractiveResource,
52
- comment: %(A resource requiring interaction from the user to be understood, executed, or experienced.).freeze,
102
+ comment: "A resource requiring interaction from the user to be understood, executed, or experienced.".freeze,
53
103
  "dc:description": "Examples include forms on Web pages, applets, multimedia learning objects, chat services, or virtual reality environments.".freeze,
54
104
  "dc:issued": "2000-07-11".freeze,
55
105
  "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
@@ -57,7 +107,7 @@ module RDF::Vocab
57
107
  label: "Interactive Resource".freeze,
58
108
  type: "rdfs:Class".freeze
59
109
  term :MovingImage,
60
- comment: %(A series of visual representations imparting an impression of motion when shown in succession.).freeze,
110
+ comment: "A series of visual representations imparting an impression of motion when shown in succession.".freeze,
61
111
  "dc:description": "Examples include animations, movies, television programs, videos, zoetropes, or visual output from a simulation. Instances of the type Moving Image must also be describable as instances of the broader type Image.".freeze,
62
112
  "dc:issued": "2003-11-18".freeze,
63
113
  "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
@@ -66,7 +116,7 @@ module RDF::Vocab
66
116
  subClassOf: "dcmitype:Image".freeze,
67
117
  type: "rdfs:Class".freeze
68
118
  term :PhysicalObject,
69
- comment: %(An inanimate, three-dimensional object or substance.).freeze,
119
+ comment: "An inanimate, three-dimensional object or substance.".freeze,
70
120
  "dc:description": "Note that digital representations of, or surrogates for, these objects should use Image, Text or one of the other types.".freeze,
71
121
  "dc:issued": "2002-07-13".freeze,
72
122
  "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
@@ -74,7 +124,7 @@ module RDF::Vocab
74
124
  label: "Physical Object".freeze,
75
125
  type: "rdfs:Class".freeze
76
126
  term :Service,
77
- comment: %(A system that provides one or more functions.).freeze,
127
+ comment: "A system that provides one or more functions.".freeze,
78
128
  "dc:description": "Examples include a photocopying service, a banking service, an authentication service, interlibrary loans, a Z39.50 or Web server.".freeze,
79
129
  "dc:issued": "2000-07-11".freeze,
80
130
  "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
@@ -82,7 +132,7 @@ module RDF::Vocab
82
132
  label: "Service".freeze,
83
133
  type: "rdfs:Class".freeze
84
134
  term :Software,
85
- comment: %(A computer program in source or compiled form.).freeze,
135
+ comment: "A computer program in source or compiled form.".freeze,
86
136
  "dc:description": "Examples include a C source file, MS-Windows .exe executable, or Perl script.".freeze,
87
137
  "dc:issued": "2000-07-11".freeze,
88
138
  "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
@@ -90,7 +140,7 @@ module RDF::Vocab
90
140
  label: "Software".freeze,
91
141
  type: "rdfs:Class".freeze
92
142
  term :Sound,
93
- comment: %(A resource primarily intended to be heard.).freeze,
143
+ comment: "A resource primarily intended to be heard.".freeze,
94
144
  "dc:description": "Examples include a music playback file format, an audio compact disc, and recorded speech or sounds.".freeze,
95
145
  "dc:issued": "2000-07-11".freeze,
96
146
  "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
@@ -98,7 +148,7 @@ module RDF::Vocab
98
148
  label: "Sound".freeze,
99
149
  type: "rdfs:Class".freeze
100
150
  term :StillImage,
101
- comment: %(A static visual representation.).freeze,
151
+ comment: "A static visual representation.".freeze,
102
152
  "dc:description": "Examples include paintings, drawings, graphic designs, plans and maps. Recommended best practice is to assign the type Text to images of textual materials. Instances of the type Still Image must also be describable as instances of the broader type Image.".freeze,
103
153
  "dc:issued": "2003-11-18".freeze,
104
154
  "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
@@ -107,7 +157,7 @@ module RDF::Vocab
107
157
  subClassOf: "dcmitype:Image".freeze,
108
158
  type: "rdfs:Class".freeze
109
159
  term :Text,
110
- comment: %(A resource consisting primarily of words for reading.).freeze,
160
+ comment: "A resource consisting primarily of words for reading.".freeze,
111
161
  "dc:description": "Examples include books, letters, dissertations, poems, newspapers, articles, archives of mailing lists. Note that facsimiles or images of texts are still of the genre Text.".freeze,
112
162
  "dc:issued": "2000-07-11".freeze,
113
163
  "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
@@ -5,13 +5,240 @@ require 'rdf'
5
5
  module RDF::Vocab
6
6
  # @!parse
7
7
  # # Vocabulary for <http://rdf-vocabulary.ddialliance.org/discovery#>
8
+ # #
9
+ # # DDI-RDF Discovery Vocabulary
10
+ # #
11
+ # # This specification defines the DDI Discovery Vocabulary, an RDF Schema vocabulary that enables discovery of research and survey data on the Web. It is based on DDI (Data Documentation Initiative) XML formats.
12
+ # #
13
+ # # This specification defines the DDI Discovery Vocabulary, an RDF Schema vocabulary that enables discovery of research and survey data on the Web. It is based on DDI (Data Documentation Initiative) XML formats.
14
+ # # @version Version 0.6 - 2013-09-30
8
15
  # class DISCO < RDF::StrictVocabulary
16
+ # # The process collecting data is focusing on the analysis of a particular type of subject. If, for example, the adult population of Finland is being studied, the AnalysisUnit would be individuals or persons.
17
+ # # @return [RDF::Vocabulary::Term]
18
+ # attr_reader :AnalysisUnit
19
+ #
20
+ # # For CategoryStatistics, frequencies, percentages, and weighted percentages can be defined.
21
+ # # @return [RDF::Vocabulary::Term]
22
+ # attr_reader :CategoryStatistics
23
+ #
24
+ # # The class DataFile, which is also a dcmitype:Dataset, represents all the data files containing the microdata datasets.
25
+ # # @return [RDF::Vocabulary::Term]
26
+ # attr_reader :DataFile
27
+ #
28
+ # # SummaryStatistics pointing to variables and CategoryStatistics pointing to categories and codes are both DescriptiveStatistics.
29
+ # # @return [RDF::Vocabulary::Term]
30
+ # attr_reader :DescriptiveStatistics
31
+ #
32
+ # # The data for the study are collected by an Instrument. The purpose of an Instrument, i.e. an interview, a questionnaire or another entity used as a means of data collection, is in the case of a survey to record the flow of a questionnaire, its use of questions, and additional component parts. A questionnaire contains a flow of questions.
33
+ # # @return [RDF::Vocabulary::Term]
34
+ # attr_reader :Instrument
35
+ #
36
+ # # Each study has a set of logical metadata associated with the processing of data, at the time of collection or later during cleaning, and re-coding. LogicalDataSet represents the microdata dataset.
37
+ # # @return [RDF::Vocabulary::Term]
38
+ # attr_reader :LogicalDataSet
39
+ #
40
+ # # This class is for representing mappings betwenn DDI-RDF and DDI-XML. See Section 10 in the specification for more details and examples.
41
+ # # @return [RDF::Vocabulary::Term]
42
+ # attr_reader :Mapping
43
+ #
44
+ # # A Question is designed to get information upon a subject, or sequence of subjects, from a respondent.
45
+ # # @return [RDF::Vocabulary::Term]
46
+ # attr_reader :Question
47
+ #
48
+ # # A questionnaire contains a flow of questions. Questionnaires must contain 1 to n questions using the object property question. Particular questions may be contained in 0 to n questionnaires.
49
+ # # @return [RDF::Vocabulary::Term]
50
+ # attr_reader :Questionnaire
51
+ #
52
+ # # Representation of a variable or question definition.
53
+ # # @return [RDF::Vocabulary::Term]
54
+ # attr_reader :Representation
55
+ #
56
+ # # RepresentedVariables encompasse study-independent, re-usable parts of variables like occupation classification.
57
+ # # @return [RDF::Vocabulary::Term]
58
+ # attr_reader :RepresentedVariable
59
+ #
60
+ # # A Study represents the process by which a data set was generated or collected.
61
+ # # @return [RDF::Vocabulary::Term]
62
+ # attr_reader :Study
63
+ #
64
+ # # In some cases, where data collection is cyclic or on-going, data sets may be released as a StudyGroup, where each cycle or wave of the data collection activity produces one or more data sets. This is typical for longitudinal studies, panel studies, and other types of series (to use the DDI term). In this case, a number of Study objects would be collected into a single StudyGroup.
65
+ # # @return [RDF::Vocabulary::Term]
66
+ # attr_reader :StudyGroup
67
+ #
68
+ # # For SummaryStatistics, maximum values, minimum values, and standard deviations can be defined.
69
+ # # @return [RDF::Vocabulary::Term]
70
+ # attr_reader :SummaryStatistics
71
+ #
72
+ # # A Universe is the total membership or population of a defined class of people, objects or events.
73
+ # # @return [RDF::Vocabulary::Term]
74
+ # attr_reader :Universe
75
+ #
76
+ # # Variables provide a definition of the column in a rectangular data file. Variable is a characteristic of a unit being observed. A variable might be the answer of a question, have an administrative source, or be derived from other variables.
77
+ # # @return [RDF::Vocabulary::Term]
78
+ # attr_reader :Variable
79
+ #
80
+ # # This property points to the aggregated data set of a microdata data set. The aggregated data set is a qb:DataSet of the RDF Data Cube Vocabulary.
81
+ # # @return [RDF::Vocabulary::Term]
82
+ # attr_reader :aggregation
83
+ #
84
+ # # This property links to the analysis unit of a Study, a StudyGroup, or a Variable.
85
+ # # @return [RDF::Vocabulary::Term]
86
+ # attr_reader :analysisUnit
87
+ #
88
+ # # This property points to the RepresentedVariable the Variable is based on.
89
+ # # @return [RDF::Vocabulary::Term]
90
+ # attr_reader :basedOn
91
+ #
92
+ # # This property is used for representing the case quantity of a DataFile.
93
+ # # @return [RDF::Vocabulary::Term]
94
+ # attr_reader :caseQuantity
95
+ #
96
+ # # This property points to the mode of collection of a Questionnaire which is a skos:Concept.
97
+ # # @return [RDF::Vocabulary::Term]
98
+ # attr_reader :collectionMode
99
+ #
100
+ # # computationBase expresses if the cases - which are the basis of the computation of a statistics value - are valid, invalid or the total of both. The usage of computationBase for frequency differs from the usage for the percentage statistics and the summary statistics. A distinction regarding computationBase doesn’t apply to frequency as category statistic. Please find more details in Section 6.3 of the specification.
101
+ # # @return [RDF::Vocabulary::Term]
102
+ # attr_reader :computationBase
103
+ #
104
+ # # This property points to the DDI concept of a RepresentedVariable, a Variable, or a Question
105
+ # # @return [RDF::Vocabulary::Term]
106
+ # attr_reader :concept
107
+ #
108
+ # # context specifies conditions which have to be fulfilled for particular mappings. Context information can be either a SPARQL query or an informal description as plain literal.
109
+ # # @return [RDF::Vocabulary::Term]
110
+ # attr_reader :context
111
+ #
112
+ # # This property is used to describe the cumulative percentages within category statistics. See Sections 6 and 7 more more details and examples.
113
+ # # @return [RDF::Vocabulary::Term]
114
+ # attr_reader :cumulativePercentage
115
+ #
116
+ # # This property points to the DataFile of a Study or a LogicalDataSet.
117
+ # # @return [RDF::Vocabulary::Term]
118
+ # attr_reader :dataFile
119
+ #
120
+ # # This property points from a Study or a StudyGroup to the original DDI file which is a foaf:Document.
121
+ # # @return [RDF::Vocabulary::Term]
122
+ # attr_reader :ddifile
123
+ #
124
+ # # Defines the end date of a period of time. Please note that this property is a feature at risk, since the domain is not a class of Disco. Maintainers of the domain ontology may define their own property.
125
+ # # @return [RDF::Vocabulary::Term]
126
+ # attr_reader :endDate
127
+ #
128
+ # # This property points from an Instrument to a foaf:Document which is the external documentation of the Instrument.
129
+ # # @return [RDF::Vocabulary::Term]
130
+ # attr_reader :externalDocumentation
131
+ #
132
+ # # This property is used to describe the frequencies within category statistics. See Sections 6 and 7 more more details and examples.
133
+ # # @return [RDF::Vocabulary::Term]
134
+ # attr_reader :frequency
135
+ #
136
+ # # This property points from a Study or a StudyGroup to the funding foaf:Agent which is either a foaf:Person or a org:Organization.
137
+ # # @return [RDF::Vocabulary::Term]
138
+ # attr_reader :fundedBy
139
+ #
140
+ # # This property indicates the role of an Agent, e.g. analyst, data modeler, programmer, co-investigator or others.
141
+ # # @return [RDF::Vocabulary::Term]
142
+ # attr_reader :hadRole
143
+ #
144
+ # # This property points from a Study to the StudyGroup which contains the Study.
145
+ # # @return [RDF::Vocabulary::Term]
146
+ # attr_reader :inGroup
147
+ #
148
+ # # This property indicates the original Variable of an aggregated qb:DataSet. Please note that this property is a feature at risk, since the domain is not a class of Disco. Maintainers of the domain ontology may define their own property.
149
+ # # @return [RDF::Vocabulary::Term]
150
+ # attr_reader :inputVariable
151
+ #
152
+ # # This property indicates the Instrument of a Study or a LogicalDataSet.
153
+ # # @return [RDF::Vocabulary::Term]
154
+ # attr_reader :instrument
155
+ #
156
+ # # This property is used as a flag indicating if the microdata dataset is publicly available. The value true indicates that the dataset can be accessed (usually downloaded) by anyone.
157
+ # # @return [RDF::Vocabulary::Term]
158
+ # attr_reader :isPublic
159
+ #
160
+ # # Indicates if the code (represented by skos:Concept) is valid or missing. Please note that this property is a feature at risk, since the domain is not a class of Disco. Maintainers of the domain ontology may define their own property.
161
+ # # @return [RDF::Vocabulary::Term]
162
+ # attr_reader :isValid
163
+ #
164
+ # # The general kind of data (e.g. geospatial, register, survey) collected in this study, given either as a skos:Concept, or as a blank node with attached free-text rdfs:label.
165
+ # # @return [RDF::Vocabulary::Term]
166
+ # attr_reader :kindOfData
167
+ #
168
+ # # This property is used to describe the percentages within category statistics. See Sections 6 and 7 more more details and examples.
169
+ # # @return [RDF::Vocabulary::Term]
170
+ # attr_reader :percentage
171
+ #
172
+ # # This property indicates the LogicalDataSets of a Study.
173
+ # # @return [RDF::Vocabulary::Term]
174
+ # attr_reader :product
175
+ #
176
+ # # The purpose of a Study of a StudyGroup.
177
+ # # @return [RDF::Vocabulary::Term]
178
+ # attr_reader :purpose
179
+ #
180
+ # # This property indicates the Questions associated to Variables or contained in Questionnaires.
181
+ # # @return [RDF::Vocabulary::Term]
182
+ # attr_reader :question
183
+ #
184
+ # # This property contains the actual text of a question as string. See Section 8.2 for examples.
185
+ # # @return [RDF::Vocabulary::Term]
186
+ # attr_reader :questionText
187
+ #
188
+ # # RepresentedVariables and Variables can have a Representation whose individuals are either of the class rdfs:Datatype (to represent values) or skos:ConceptScheme (to represent code lists).
189
+ # # @return [RDF::Vocabulary::Term]
190
+ # attr_reader :representation
191
+ #
192
+ # # The response domain of questions. The response domain has to be an instance of the class Representation.
193
+ # # @return [RDF::Vocabulary::Term]
194
+ # attr_reader :responseDomain
195
+ #
196
+ # # Defines the start date of a period of time. Please note that this property is a feature at risk, since the domain is not a class of Disco. Maintainers of the domain ontology may define their own property.
197
+ # # @return [RDF::Vocabulary::Term]
198
+ # attr_reader :startDate
199
+ #
200
+ # # This property points to the skos:Concept (representing codes and categories) of a specific CategoryStatistics individual.
201
+ # # @return [RDF::Vocabulary::Term]
202
+ # attr_reader :statisticsCategory
203
+ #
204
+ # # This property indicates the DataFile of a specific DesciptiveStatistics individual. DescriptiveStatistics may have statisticsDataFile relations to 0 to n data files (DataFile) and data files (DataFile) may be in 0 to n statisticsDataFile relations to DescriptiveStatistics individuals.
205
+ # # @return [RDF::Vocabulary::Term]
206
+ # attr_reader :statisticsDataFile
207
+ #
208
+ # # This property indicates the Variable of a specific SummaryStatistics individual. SummaryStatistics point to 0 to n variables (Variable) using the object property statisticsVariable.
209
+ # # @return [RDF::Vocabulary::Term]
210
+ # attr_reader :statisticsVariable
211
+ #
212
+ # # The sub-title of a Study of a StudyGroup.
213
+ # # @return [RDF::Vocabulary::Term]
214
+ # attr_reader :subtitle
215
+ #
216
+ # # This property points to the summary statistics type of a Questionnaire which is a skos:Concept.
217
+ # # @return [RDF::Vocabulary::Term]
218
+ # attr_reader :summaryStatisticsType
219
+ #
220
+ # # This property indicates the Universe(s) of Studies, StudyGrous, RepresentedVariables, Variables, Questions, and LogicalDataSets.
221
+ # # @return [RDF::Vocabulary::Term]
222
+ # attr_reader :universe
223
+ #
224
+ # # This property indicates the Variable of a Study and points to Variable contained in the LogicalDataSet.
225
+ # # @return [RDF::Vocabulary::Term]
226
+ # attr_reader :variable
227
+ #
228
+ # # This property can be used when (1) no variable level information is available and when (2) only a stub of the RDF is requested e.g when returning basic information on a study of file, no information on potentially hundreds or thousands of variables references or metadata has to be returned.
229
+ # # @return [RDF::Vocabulary::Term]
230
+ # attr_reader :variableQuantity
231
+ #
232
+ # # SummaryStatistics or CategoryStatistics resources may be weighted by a specific Variable.
233
+ # # @return [RDF::Vocabulary::Term]
234
+ # attr_reader :weightedBy
235
+ #
9
236
  # end
10
- class DISCO < RDF::StrictVocabulary("http://rdf-vocabulary.ddialliance.org/discovery#")
237
+ DISCO = Class.new(RDF::StrictVocabulary("http://rdf-vocabulary.ddialliance.org/discovery#")) do
11
238
 
12
239
  # Ontology definition
13
240
  ontology :"http://rdf-vocabulary.ddialliance.org/discovery#",
14
- comment: %(This specification defines the DDI Discovery Vocabulary, an RDF Schema vocabulary that enables discovery of research and survey data on the Web. It is based on DDI \(Data Documentation Initiative\) XML formats.).freeze,
241
+ comment: "This specification defines the DDI Discovery Vocabulary, an RDF Schema vocabulary that enables discovery of research and survey data on the Web. It is based on DDI (Data Documentation Initiative) XML formats.".freeze,
15
242
  "dc11:contributor": ["Benjamin Zapilko".freeze, "Joachim Wackerow".freeze, "Richard Cyganiak".freeze, "Thomas Bosch".freeze],
16
243
  "dc11:creator": ["Arofan Gregory".freeze, "Benedikt Kämpgen".freeze, "Benjamin Zapilko".freeze, "Franck Cotton".freeze, "Heiko Paulheim".freeze, "Joachim Wackerow".freeze, "Olof Olsson".freeze, "Richard Cyganiak".freeze, "Sarven Capadisli".freeze, "Thomas Bosch".freeze],
17
244
  "dc11:description": "This specification defines the DDI Discovery Vocabulary, an RDF Schema vocabulary that enables discovery of research and survey data on the Web. It is based on DDI (Data Documentation Initiative) XML formats.".freeze,
@@ -21,58 +248,58 @@ module RDF::Vocab
21
248
 
22
249
  # Class definitions
23
250
  term :AnalysisUnit,
24
- comment: %(The process collecting data is focusing on the analysis of a particular type of subject. If, for example, the adult population of Finland is being studied, the AnalysisUnit would be individuals or persons.).freeze,
251
+ comment: "The process collecting data is focusing on the analysis of a particular type of subject. If, for example, the adult population of Finland is being studied, the AnalysisUnit would be individuals or persons.".freeze,
25
252
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
26
253
  label: "Analysis Unit".freeze,
27
254
  subClassOf: "skos:Concept".freeze,
28
255
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
29
256
  term :CategoryStatistics,
30
- comment: %(For CategoryStatistics, frequencies, percentages, and weighted percentages can be defined.).freeze,
257
+ comment: "For CategoryStatistics, frequencies, percentages, and weighted percentages can be defined.".freeze,
31
258
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
32
259
  label: "Category statistics".freeze,
33
260
  subClassOf: "disco:DescriptiveStatistics".freeze,
34
261
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
35
262
  term :DataFile,
36
- comment: %(The class DataFile, which is also a dcmitype:Dataset, represents all the data files containing the microdata datasets.).freeze,
263
+ comment: "The class DataFile, which is also a dcmitype:Dataset, represents all the data files containing the microdata datasets.".freeze,
37
264
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
38
265
  label: "Data file".freeze,
39
266
  subClassOf: ["dc:DCMITypeDataset".freeze, "dcat:Distribution".freeze],
40
267
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
41
268
  term :DescriptiveStatistics,
42
- comment: %(SummaryStatistics pointing to variables and CategoryStatistics pointing to categories and codes are both DescriptiveStatistics.).freeze,
269
+ comment: "SummaryStatistics pointing to variables and CategoryStatistics pointing to categories and codes are both DescriptiveStatistics.".freeze,
43
270
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
44
271
  label: "Descriptive statistics".freeze,
45
272
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
46
273
  term :Instrument,
47
- comment: %(The data for the study are collected by an Instrument. The purpose of an Instrument, i.e. an interview, a questionnaire or another entity used as a means of data collection, is in the case of a survey to record the flow of a questionnaire, its use of questions, and additional component parts. A questionnaire contains a flow of questions.).freeze,
274
+ comment: "The data for the study are collected by an Instrument. The purpose of an Instrument, i.e. an interview, a questionnaire or another entity used as a means of data collection, is in the case of a survey to record the flow of a questionnaire, its use of questions, and additional component parts. A questionnaire contains a flow of questions.".freeze,
48
275
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
49
276
  label: "Instrument".freeze,
50
277
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
51
278
  term :LogicalDataSet,
52
- comment: %(Each study has a set of logical metadata associated with the processing of data, at the time of collection or later during cleaning, and re-coding. LogicalDataSet represents the microdata dataset.).freeze,
279
+ comment: "Each study has a set of logical metadata associated with the processing of data, at the time of collection or later during cleaning, and re-coding. LogicalDataSet represents the microdata dataset.".freeze,
53
280
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
54
281
  label: "LogicalDataSet".freeze,
55
282
  subClassOf: ["dcat:Dataset".freeze, "skos:Concept".freeze],
56
283
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
57
284
  term :Mapping,
58
- comment: %(This class is for representing mappings betwenn DDI-RDF and DDI-XML. See Section 10 in the specification for more details and examples.).freeze,
285
+ comment: "This class is for representing mappings betwenn DDI-RDF and DDI-XML. See Section 10 in the specification for more details and examples.".freeze,
59
286
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
60
287
  label: "Mapping".freeze,
61
288
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
62
289
  term :Question,
63
- comment: %(A Question is designed to get information upon a subject, or sequence of subjects, from a respondent.).freeze,
290
+ comment: "A Question is designed to get information upon a subject, or sequence of subjects, from a respondent.".freeze,
64
291
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
65
292
  label: "Question".freeze,
66
293
  subClassOf: "skos:Concept".freeze,
67
294
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
68
295
  term :Questionnaire,
69
- comment: %(A questionnaire contains a flow of questions. Questionnaires must contain 1 to n questions using the object property question. Particular questions may be contained in 0 to n questionnaires.).freeze,
296
+ comment: "A questionnaire contains a flow of questions. Questionnaires must contain 1 to n questions using the object property question. Particular questions may be contained in 0 to n questionnaires.".freeze,
70
297
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
71
298
  label: "Questionnaire".freeze,
72
299
  subClassOf: "disco:Instrument".freeze,
73
300
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
74
301
  term :Representation,
75
- comment: %(Representation of a variable or question definition.).freeze,
302
+ comment: "Representation of a variable or question definition.".freeze,
76
303
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
77
304
  label: "Representation of a variable or question definition.".freeze,
78
305
  subClassOf: term(
@@ -81,34 +308,34 @@ module RDF::Vocab
81
308
  ),
82
309
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
83
310
  term :RepresentedVariable,
84
- comment: %(RepresentedVariables encompasse study-independent, re-usable parts of variables like occupation classification.).freeze,
311
+ comment: "RepresentedVariables encompasse study-independent, re-usable parts of variables like occupation classification.".freeze,
85
312
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
86
313
  label: "Data element".freeze,
87
314
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
88
315
  term :Study,
89
- comment: %(A Study represents the process by which a data set was generated or collected.).freeze,
316
+ comment: "A Study represents the process by which a data set was generated or collected.".freeze,
90
317
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
91
318
  label: "Study".freeze,
92
319
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
93
320
  term :StudyGroup,
94
- comment: %(In some cases, where data collection is cyclic or on-going, data sets may be released as a StudyGroup, where each cycle or wave of the data collection activity produces one or more data sets. This is typical for longitudinal studies, panel studies, and other types of series \(to use the DDI term\). In this case, a number of Study objects would be collected into a single StudyGroup.).freeze,
321
+ comment: "In some cases, where data collection is cyclic or on-going, data sets may be released as a StudyGroup, where each cycle or wave of the data collection activity produces one or more data sets. This is typical for longitudinal studies, panel studies, and other types of series (to use the DDI term). In this case, a number of Study objects would be collected into a single StudyGroup.".freeze,
95
322
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
96
323
  label: "Study Group".freeze,
97
324
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
98
325
  term :SummaryStatistics,
99
- comment: %(For SummaryStatistics, maximum values, minimum values, and standard deviations can be defined.).freeze,
326
+ comment: "For SummaryStatistics, maximum values, minimum values, and standard deviations can be defined.".freeze,
100
327
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
101
328
  label: "Summary statistics".freeze,
102
329
  subClassOf: "disco:DescriptiveStatistics".freeze,
103
330
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
104
331
  term :Universe,
105
- comment: %(A Universe is the total membership or population of a defined class of people, objects or events.).freeze,
332
+ comment: "A Universe is the total membership or population of a defined class of people, objects or events.".freeze,
106
333
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
107
334
  label: "Universe".freeze,
108
335
  subClassOf: "skos:Concept".freeze,
109
336
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
110
337
  term :Variable,
111
- comment: %(Variables provide a definition of the column in a rectangular data file. Variable is a characteristic of a unit being observed. A variable might be the answer of a question, have an administrative source, or be derived from other variables.).freeze,
338
+ comment: "Variables provide a definition of the column in a rectangular data file. Variable is a characteristic of a unit being observed. A variable might be the answer of a question, have an administrative source, or be derived from other variables.".freeze,
112
339
  equivalentClass: "http://semanticscience.org/resource/SIO_000367".freeze,
113
340
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
114
341
  label: "Variable".freeze,
@@ -117,14 +344,14 @@ module RDF::Vocab
117
344
 
118
345
  # Property definitions
119
346
  property :aggregation,
120
- comment: %(This property points to the aggregated data set of a microdata data set. The aggregated data set is a qb:DataSet of the RDF Data Cube Vocabulary.).freeze,
347
+ comment: "This property points to the aggregated data set of a microdata data set. The aggregated data set is a qb:DataSet of the RDF Data Cube Vocabulary.".freeze,
121
348
  domain: "disco:LogicalDataSet".freeze,
122
349
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
123
350
  label: "aggregation".freeze,
124
351
  range: "http://purl.org/linked-data/cube#DataSet".freeze,
125
352
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
126
353
  property :analysisUnit,
127
- comment: %(This property links to the analysis unit of a Study, a StudyGroup, or a Variable.).freeze,
354
+ comment: "This property links to the analysis unit of a Study, a StudyGroup, or a Variable.".freeze,
128
355
  domain: term(
129
356
  type: "owl:Class".freeze,
130
357
  unionOf: list("disco:Study".freeze, "disco:StudyGroup".freeze, "disco:Variable".freeze)
@@ -134,35 +361,35 @@ module RDF::Vocab
134
361
  range: "disco:AnalysisUnit".freeze,
135
362
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
136
363
  property :basedOn,
137
- comment: %(This property points to the RepresentedVariable the Variable is based on.).freeze,
364
+ comment: "This property points to the RepresentedVariable the Variable is based on.".freeze,
138
365
  domain: "disco:Variable".freeze,
139
366
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
140
367
  label: "based on".freeze,
141
368
  range: "disco:RepresentedVariable".freeze,
142
369
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
143
370
  property :caseQuantity,
144
- comment: %(This property is used for representing the case quantity of a DataFile.).freeze,
371
+ comment: "This property is used for representing the case quantity of a DataFile.".freeze,
145
372
  domain: "disco:DataFile".freeze,
146
373
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
147
374
  label: "number of cases".freeze,
148
375
  range: "xsd:nonNegativeInteger".freeze,
149
376
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
150
377
  property :collectionMode,
151
- comment: %(This property points to the mode of collection of a Questionnaire which is a skos:Concept.).freeze,
378
+ comment: "This property points to the mode of collection of a Questionnaire which is a skos:Concept.".freeze,
152
379
  domain: "disco:Questionnaire".freeze,
153
380
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
154
381
  label: "collection mode".freeze,
155
382
  range: "skos:Concept".freeze,
156
383
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
157
384
  property :computationBase,
158
- comment: %(computationBase expresses if the cases - which are the basis of the computation of a statistics value - are valid, invalid or the total of both. The usage of computationBase for frequency differs from the usage for the percentage statistics and the summary statistics. A distinction regarding computationBase doesn’t apply to frequency as category statistic. Please find more details in Section 6.3 of the specification.).freeze,
385
+ comment: "computationBase expresses if the cases - which are the basis of the computation of a statistics value - are valid, invalid or the total of both. The usage of computationBase for frequency differs from the usage for the percentage statistics and the summary statistics. A distinction regarding computationBase doesn’t apply to frequency as category statistic. Please find more details in Section 6.3 of the specification.".freeze,
159
386
  domain: "disco:CategoryStatistics".freeze,
160
387
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
161
388
  label: "computation base".freeze,
162
389
  range: "rdf:langString".freeze,
163
390
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
164
391
  property :concept,
165
- comment: %(This property points to the DDI concept of a RepresentedVariable, a Variable, or a Question).freeze,
392
+ comment: "This property points to the DDI concept of a RepresentedVariable, a Variable, or a Question".freeze,
166
393
  domain: term(
167
394
  type: "owl:Class".freeze,
168
395
  unionOf: list("disco:RepresentedVariable".freeze, "disco:Question".freeze, "disco:Variable".freeze)
@@ -172,21 +399,21 @@ module RDF::Vocab
172
399
  range: "skos:Concept".freeze,
173
400
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
174
401
  property :context,
175
- comment: %(context specifies conditions which have to be fulfilled for particular mappings. Context information can be either a SPARQL query or an informal description as plain literal.).freeze,
402
+ comment: "context specifies conditions which have to be fulfilled for particular mappings. Context information can be either a SPARQL query or an informal description as plain literal.".freeze,
176
403
  domain: "disco:Mapping".freeze,
177
404
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
178
405
  label: "context specifies conditions which have to be fulfilled for specific mappings".freeze,
179
406
  range: "rdf:langString".freeze,
180
407
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
181
408
  property :cumulativePercentage,
182
- comment: %(This property is used to describe the cumulative percentages within category statistics. See Sections 6 and 7 more more details and examples.).freeze,
409
+ comment: "This property is used to describe the cumulative percentages within category statistics. See Sections 6 and 7 more more details and examples.".freeze,
183
410
  domain: "disco:CategoryStatistics".freeze,
184
411
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
185
412
  label: "cumulative percentage".freeze,
186
413
  range: "xsd:double".freeze,
187
414
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
188
415
  property :dataFile,
189
- comment: %(This property points to the DataFile of a Study or a LogicalDataSet.).freeze,
416
+ comment: "This property points to the DataFile of a Study or a LogicalDataSet.".freeze,
190
417
  domain: term(
191
418
  type: "owl:Class".freeze,
192
419
  unionOf: list("disco:Study".freeze, "disco:LogicalDataSet".freeze)
@@ -196,7 +423,7 @@ module RDF::Vocab
196
423
  range: "disco:DataFile".freeze,
197
424
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
198
425
  property :ddifile,
199
- comment: %(This property points from a Study or a StudyGroup to the original DDI file which is a foaf:Document.).freeze,
426
+ comment: "This property points from a Study or a StudyGroup to the original DDI file which is a foaf:Document.".freeze,
200
427
  domain: term(
201
428
  type: "owl:Class".freeze,
202
429
  unionOf: list("disco:Study".freeze, "disco:StudyGroup".freeze)
@@ -206,28 +433,28 @@ module RDF::Vocab
206
433
  range: "foaf:Document".freeze,
207
434
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
208
435
  property :endDate,
209
- comment: %(Defines the end date of a period of time. Please note that this property is a feature at risk, since the domain is not a class of Disco. Maintainers of the domain ontology may define their own property.).freeze,
436
+ comment: "Defines the end date of a period of time. Please note that this property is a feature at risk, since the domain is not a class of Disco. Maintainers of the domain ontology may define their own property.".freeze,
210
437
  domain: "dc:PeriodOfTime".freeze,
211
438
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
212
439
  label: "end date".freeze,
213
440
  range: "xsd:date".freeze,
214
441
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
215
442
  property :externalDocumentation,
216
- comment: %(This property points from an Instrument to a foaf:Document which is the external documentation of the Instrument.).freeze,
443
+ comment: "This property points from an Instrument to a foaf:Document which is the external documentation of the Instrument.".freeze,
217
444
  domain: "disco:Instrument".freeze,
218
445
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
219
446
  label: "external documentation".freeze,
220
447
  range: "foaf:Document".freeze,
221
448
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
222
449
  property :frequency,
223
- comment: %(This property is used to describe the frequencies within category statistics. See Sections 6 and 7 more more details and examples.).freeze,
450
+ comment: "This property is used to describe the frequencies within category statistics. See Sections 6 and 7 more more details and examples.".freeze,
224
451
  domain: "disco:CategoryStatistics".freeze,
225
452
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
226
453
  label: "frequency".freeze,
227
454
  range: "xsd:nonNegativeInteger".freeze,
228
455
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
229
456
  property :fundedBy,
230
- comment: %(This property points from a Study or a StudyGroup to the funding foaf:Agent which is either a foaf:Person or a org:Organization.).freeze,
457
+ comment: "This property points from a Study or a StudyGroup to the funding foaf:Agent which is either a foaf:Person or a org:Organization.".freeze,
231
458
  domain: term(
232
459
  type: "owl:Class".freeze,
233
460
  unionOf: list("disco:Study".freeze, "disco:StudyGroup".freeze)
@@ -238,28 +465,28 @@ module RDF::Vocab
238
465
  subPropertyOf: "dc:contributor".freeze,
239
466
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
240
467
  property :hadRole,
241
- comment: %(This property indicates the role of an Agent, e.g. analyst, data modeler, programmer, co-investigator or others.).freeze,
468
+ comment: "This property indicates the role of an Agent, e.g. analyst, data modeler, programmer, co-investigator or others.".freeze,
242
469
  domain: "foaf:Agent".freeze,
243
470
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
244
471
  label: "had role".freeze,
245
472
  range: "skos:Concept".freeze,
246
473
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
247
474
  property :inGroup,
248
- comment: %(This property points from a Study to the StudyGroup which contains the Study.).freeze,
475
+ comment: "This property points from a Study to the StudyGroup which contains the Study.".freeze,
249
476
  domain: "disco:Study".freeze,
250
477
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
251
478
  label: "in group".freeze,
252
479
  range: "disco:StudyGroup".freeze,
253
480
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
254
481
  property :inputVariable,
255
- comment: %(This property indicates the original Variable of an aggregated qb:DataSet. Please note that this property is a feature at risk, since the domain is not a class of Disco. Maintainers of the domain ontology may define their own property.).freeze,
482
+ comment: "This property indicates the original Variable of an aggregated qb:DataSet. Please note that this property is a feature at risk, since the domain is not a class of Disco. Maintainers of the domain ontology may define their own property.".freeze,
256
483
  domain: "http://purl.org/linked-data/cube#DataSet".freeze,
257
484
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
258
485
  label: "input variable".freeze,
259
486
  range: "disco:Variable".freeze,
260
487
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
261
488
  property :instrument,
262
- comment: %(This property indicates the Instrument of a Study or a LogicalDataSet.).freeze,
489
+ comment: "This property indicates the Instrument of a Study or a LogicalDataSet.".freeze,
263
490
  domain: term(
264
491
  type: "owl:Class".freeze,
265
492
  unionOf: list("disco:Study".freeze, "disco:LogicalDataSet".freeze)
@@ -269,21 +496,21 @@ module RDF::Vocab
269
496
  range: "disco:Instrument".freeze,
270
497
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
271
498
  property :isPublic,
272
- comment: %(This property is used as a flag indicating if the microdata dataset is publicly available. The value true indicates that the dataset can be accessed \(usually downloaded\) by anyone.).freeze,
499
+ comment: "This property is used as a flag indicating if the microdata dataset is publicly available. The value true indicates that the dataset can be accessed (usually downloaded) by anyone.".freeze,
273
500
  domain: "disco:LogicalDataSet".freeze,
274
501
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
275
502
  label: "is public".freeze,
276
503
  range: "xsd:boolean".freeze,
277
504
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
278
505
  property :isValid,
279
- comment: %(Indicates if the code \(represented by skos:Concept\) is valid or missing. Please note that this property is a feature at risk, since the domain is not a class of Disco. Maintainers of the domain ontology may define their own property.).freeze,
506
+ comment: "Indicates if the code (represented by skos:Concept) is valid or missing. Please note that this property is a feature at risk, since the domain is not a class of Disco. Maintainers of the domain ontology may define their own property.".freeze,
280
507
  domain: "skos:Concept".freeze,
281
508
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
282
509
  label: "is valid".freeze,
283
510
  range: "xsd:boolean".freeze,
284
511
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
285
512
  property :kindOfData,
286
- comment: %(The general kind of data \(e.g. geospatial, register, survey\) collected in this study, given either as a skos:Concept, or as a blank node with attached free-text rdfs:label.).freeze,
513
+ comment: "The general kind of data (e.g. geospatial, register, survey) collected in this study, given either as a skos:Concept, or as a blank node with attached free-text rdfs:label.".freeze,
287
514
  domain: term(
288
515
  type: "owl:Class".freeze,
289
516
  unionOf: list("disco:Study".freeze, "disco:StudyGroup".freeze)
@@ -293,35 +520,35 @@ module RDF::Vocab
293
520
  range: "skos:Concept".freeze,
294
521
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
295
522
  property :"mappingDDI-C",
296
- comment: %(Mapping from and to DDI-C. See Section 10 in the specification for more details and examples.).freeze,
523
+ comment: "Mapping from and to DDI-C. See Section 10 in the specification for more details and examples.".freeze,
297
524
  domain: "disco:Mapping".freeze,
298
525
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
299
526
  label: "Mapping from and to DDI-C".freeze,
300
527
  range: "rdf:langString".freeze,
301
528
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
302
529
  property :"mappingDDI-L",
303
- comment: %(Mapping from and to DDI-L. See Section 10 in the specification for more details and examples.).freeze,
530
+ comment: "Mapping from and to DDI-L. See Section 10 in the specification for more details and examples.".freeze,
304
531
  domain: "disco:Mapping".freeze,
305
532
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
306
533
  label: "Mapping from and to DDI-L".freeze,
307
534
  range: "rdf:langString".freeze,
308
535
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
309
536
  property :percentage,
310
- comment: %(This property is used to describe the percentages within category statistics. See Sections 6 and 7 more more details and examples.).freeze,
537
+ comment: "This property is used to describe the percentages within category statistics. See Sections 6 and 7 more more details and examples.".freeze,
311
538
  domain: "disco:CategoryStatistics".freeze,
312
539
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
313
540
  label: "percentage".freeze,
314
541
  range: "xsd:double".freeze,
315
542
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
316
543
  property :product,
317
- comment: %(This property indicates the LogicalDataSets of a Study.).freeze,
544
+ comment: "This property indicates the LogicalDataSets of a Study.".freeze,
318
545
  domain: "disco:Study".freeze,
319
546
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
320
547
  label: "product".freeze,
321
548
  range: "http://purl.org/linked-data/cube#LogicalDataSet".freeze,
322
549
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
323
550
  property :purpose,
324
- comment: %(The purpose of a Study of a StudyGroup.).freeze,
551
+ comment: "The purpose of a Study of a StudyGroup.".freeze,
325
552
  domain: term(
326
553
  type: "owl:Class".freeze,
327
554
  unionOf: list("disco:Study".freeze, "disco:StudyGroup".freeze)
@@ -331,7 +558,7 @@ module RDF::Vocab
331
558
  range: "rdf:langString".freeze,
332
559
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
333
560
  property :question,
334
- comment: %(This property indicates the Questions associated to Variables or contained in Questionnaires.).freeze,
561
+ comment: "This property indicates the Questions associated to Variables or contained in Questionnaires.".freeze,
335
562
  domain: term(
336
563
  type: "owl:Class".freeze,
337
564
  unionOf: list("disco:Variable".freeze, "disco:Questionnaire".freeze)
@@ -341,14 +568,14 @@ module RDF::Vocab
341
568
  range: "disco:Question".freeze,
342
569
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
343
570
  property :questionText,
344
- comment: %(This property contains the actual text of a question as string. See Section 8.2 for examples.).freeze,
571
+ comment: "This property contains the actual text of a question as string. See Section 8.2 for examples.".freeze,
345
572
  domain: "disco:Question".freeze,
346
573
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
347
574
  label: "question text".freeze,
348
575
  range: "rdf:langString".freeze,
349
576
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
350
577
  property :representation,
351
- comment: %(RepresentedVariables and Variables can have a Representation whose individuals are either of the class rdfs:Datatype \(to represent values\) or skos:ConceptScheme \(to represent code lists\).).freeze,
578
+ comment: "RepresentedVariables and Variables can have a Representation whose individuals are either of the class rdfs:Datatype (to represent values) or skos:ConceptScheme (to represent code lists).".freeze,
352
579
  domain: term(
353
580
  type: "owl:Class".freeze,
354
581
  unionOf: list("disco:RepresentedVariable".freeze, "disco:Variable".freeze, "disco:Question".freeze)
@@ -361,42 +588,42 @@ module RDF::Vocab
361
588
  ),
362
589
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
363
590
  property :responseDomain,
364
- comment: %(The response domain of questions. The response domain has to be an instance of the class Representation.).freeze,
591
+ comment: "The response domain of questions. The response domain has to be an instance of the class Representation.".freeze,
365
592
  domain: "disco:Question".freeze,
366
593
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
367
594
  label: "responseDomain".freeze,
368
595
  range: "disco:Representation".freeze,
369
596
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
370
597
  property :startDate,
371
- comment: %(Defines the start date of a period of time. Please note that this property is a feature at risk, since the domain is not a class of Disco. Maintainers of the domain ontology may define their own property.).freeze,
598
+ comment: "Defines the start date of a period of time. Please note that this property is a feature at risk, since the domain is not a class of Disco. Maintainers of the domain ontology may define their own property.".freeze,
372
599
  domain: "dc:PeriodOfTime".freeze,
373
600
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
374
601
  label: "start date".freeze,
375
602
  range: "xsd:date".freeze,
376
603
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
377
604
  property :statisticsCategory,
378
- comment: %(This property points to the skos:Concept \(representing codes and categories\) of a specific CategoryStatistics individual.).freeze,
605
+ comment: "This property points to the skos:Concept (representing codes and categories) of a specific CategoryStatistics individual.".freeze,
379
606
  domain: "disco:CategoryStatistics".freeze,
380
607
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
381
608
  label: "statistics category".freeze,
382
609
  range: "skos:Concept".freeze,
383
610
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
384
611
  property :statisticsDataFile,
385
- comment: %(This property indicates the DataFile of a specific DesciptiveStatistics individual. DescriptiveStatistics may have statisticsDataFile relations to 0 to n data files \(DataFile\) and data files \(DataFile\) may be in 0 to n statisticsDataFile relations to DescriptiveStatistics individuals.).freeze,
612
+ comment: "This property indicates the DataFile of a specific DesciptiveStatistics individual. DescriptiveStatistics may have statisticsDataFile relations to 0 to n data files (DataFile) and data files (DataFile) may be in 0 to n statisticsDataFile relations to DescriptiveStatistics individuals.".freeze,
386
613
  domain: "disco:DescriptiveStatistics".freeze,
387
614
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
388
615
  label: "statistics data file".freeze,
389
616
  range: "disco:DataFile".freeze,
390
617
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
391
618
  property :statisticsVariable,
392
- comment: %(This property indicates the Variable of a specific SummaryStatistics individual. SummaryStatistics point to 0 to n variables \(Variable\) using the object property statisticsVariable.).freeze,
619
+ comment: "This property indicates the Variable of a specific SummaryStatistics individual. SummaryStatistics point to 0 to n variables (Variable) using the object property statisticsVariable.".freeze,
393
620
  domain: "disco:SummaryStatistics".freeze,
394
621
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
395
622
  label: "statistics variable".freeze,
396
623
  range: "disco:Variable".freeze,
397
624
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
398
625
  property :subtitle,
399
- comment: %(The sub-title of a Study of a StudyGroup.).freeze,
626
+ comment: "The sub-title of a Study of a StudyGroup.".freeze,
400
627
  domain: term(
401
628
  type: "owl:Class".freeze,
402
629
  unionOf: list("disco:Study".freeze, "disco:StudyGroup".freeze)
@@ -406,14 +633,14 @@ module RDF::Vocab
406
633
  range: "rdf:langString".freeze,
407
634
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
408
635
  property :summaryStatisticsType,
409
- comment: %(This property points to the summary statistics type of a Questionnaire which is a skos:Concept.).freeze,
636
+ comment: "This property points to the summary statistics type of a Questionnaire which is a skos:Concept.".freeze,
410
637
  domain: "disco:SummaryStatistics".freeze,
411
638
  isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
412
639
  label: "summary statistics type".freeze,
413
640
  range: "skos:Concept".freeze,
414
641
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
415
642
  property :universe,
416
- comment: %(This property indicates the Universe\(s\) of Studies, StudyGrous, RepresentedVariables, Variables, Questions, and LogicalDataSets.).freeze,
643
+ comment: "This property indicates the Universe(s) of Studies, StudyGrous, RepresentedVariables, Variables, Questions, and LogicalDataSets.".freeze,
417
644
  domain: term(
418
645
  type: "owl:Class".freeze,
419
646
  unionOf: list("disco:Study".freeze, "disco:StudyGroup".freeze, "disco:RepresentedVariable".freeze, "disco:Variable".freeze, "disco:Question".freeze, "disco:LogicalDataSet".freeze)
@@ -423,7 +650,7 @@ module RDF::Vocab
423
650
  range: "disco:Universe".freeze,
424
651
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
425
652
  property :variable,
426
- comment: %(This property indicates the Variable of a Study and points to Variable contained in the LogicalDataSet.).freeze,
653
+ comment: "This property indicates the Variable of a Study and points to Variable contained in the LogicalDataSet.".freeze,
427
654
  domain: term(
428
655
  type: "owl:Class".freeze,
429
656
  unionOf: list("disco:Study".freeze, "disco:LogicalDataSet".freeze)
@@ -433,7 +660,7 @@ module RDF::Vocab
433
660
  range: "disco:Variable".freeze,
434
661
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
435
662
  property :variableQuantity,
436
- comment: %(This property can be used when \(1\) no variable level information is available and when \(2\) only a stub of the RDF is requested e.g when returning basic information on a study of file, no information on potentially hundreds or thousands of variables references or metadata has to be returned.).freeze,
663
+ comment: "This property can be used when (1) no variable level information is available and when (2) only a stub of the RDF is requested e.g when returning basic information on a study of file, no information on potentially hundreds or thousands of variables references or metadata has to be returned.".freeze,
437
664
  domain: term(
438
665
  type: "owl:Class".freeze,
439
666
  unionOf: list("disco:LogicalDataSet".freeze, "disco:DataFile".freeze)
@@ -443,7 +670,7 @@ module RDF::Vocab
443
670
  range: "xsd:nonNegativeInteger".freeze,
444
671
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
445
672
  property :weightedBy,
446
- comment: %(SummaryStatistics or CategoryStatistics resources may be weighted by a specific Variable.).freeze,
673
+ comment: "SummaryStatistics or CategoryStatistics resources may be weighted by a specific Variable.".freeze,
447
674
  domain: term(
448
675
  type: "owl:Class".freeze,
449
676
  unionOf: list("disco:SummaryStatistics".freeze, "disco:CategoryStatistics".freeze)