rdf-vocab 2.2.9 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (71) hide show
  1. checksums.yaml +5 -5
  2. data/VERSION +1 -1
  3. data/lib/rdf/vocab.rb +21 -2
  4. data/lib/rdf/vocab/acl.rb +21 -5
  5. data/lib/rdf/vocab/bf2.rb +812 -812
  6. data/lib/rdf/vocab/bibframe.rb +78 -78
  7. data/lib/rdf/vocab/bibo.rb +239 -247
  8. data/lib/rdf/vocab/cc.rb +4 -9
  9. data/lib/rdf/vocab/cert.rb +44 -45
  10. data/lib/rdf/vocab/cnt.rb +5 -5
  11. data/lib/rdf/vocab/crm.rb +344 -344
  12. data/lib/rdf/vocab/datacite.rb +152 -58
  13. data/lib/rdf/vocab/dc.rb +439 -439
  14. data/lib/rdf/vocab/dc11.rb +93 -93
  15. data/lib/rdf/vocab/dcat.rb +152 -101
  16. data/lib/rdf/vocab/dcmitype.rb +75 -75
  17. data/lib/rdf/vocab/disco.rb +169 -101
  18. data/lib/rdf/vocab/doap.rb +179 -159
  19. data/lib/rdf/vocab/dwc.rb +1648 -1648
  20. data/lib/rdf/vocab/ebucore.rb +373 -124
  21. data/lib/rdf/vocab/edm.rb +216 -139
  22. data/lib/rdf/vocab/exif.rb +208 -208
  23. data/lib/rdf/vocab/fcrepo4.rb +57 -134
  24. data/lib/rdf/vocab/foaf.rb +166 -166
  25. data/lib/rdf/vocab/geo.rb +3 -5
  26. data/lib/rdf/vocab/geojson.rb +16 -16
  27. data/lib/rdf/vocab/geonames.rb +2827 -3455
  28. data/lib/rdf/vocab/gr.rb +699 -254
  29. data/lib/rdf/vocab/gs1.rb +1765 -1761
  30. data/lib/rdf/vocab/ht.rb +23 -23
  31. data/lib/rdf/vocab/hydra.rb +104 -104
  32. data/lib/rdf/vocab/ical.rb +674 -127
  33. data/lib/rdf/vocab/identifiers.rb +120 -212
  34. data/lib/rdf/vocab/iiif.rb +25 -37
  35. data/lib/rdf/vocab/jsonld.rb +11 -11
  36. data/lib/rdf/vocab/ldp.rb +79 -69
  37. data/lib/rdf/vocab/lrmi.rb +63 -63
  38. data/lib/rdf/vocab/ma.rb +47 -132
  39. data/lib/rdf/vocab/mads.rb +83 -28
  40. data/lib/rdf/vocab/marc_relators.rb +12 -2201
  41. data/lib/rdf/vocab/mo.rb +920 -836
  42. data/lib/rdf/vocab/mods.rb +6 -13
  43. data/lib/rdf/vocab/oa.rb +82 -72
  44. data/lib/rdf/vocab/og.rb +50 -50
  45. data/lib/rdf/vocab/ogc.rb +9 -8
  46. data/lib/rdf/vocab/ore.rb +22 -19
  47. data/lib/rdf/vocab/org.rb +217 -167
  48. data/lib/rdf/vocab/pplan.rb +45 -45
  49. data/lib/rdf/vocab/premis.rb +855 -582
  50. data/lib/rdf/vocab/premis_event_type.rb +148 -70
  51. data/lib/rdf/vocab/prov.rb +842 -806
  52. data/lib/rdf/vocab/rightsstatements.rb +140 -157
  53. data/lib/rdf/vocab/rsa.rb +16 -13
  54. data/lib/rdf/vocab/rss.rb +10 -10
  55. data/lib/rdf/vocab/schema.rb +1448 -1448
  56. data/lib/rdf/vocab/sioc.rb +158 -159
  57. data/lib/rdf/vocab/sioc_services.rb +14 -14
  58. data/lib/rdf/vocab/sioct.rb +70 -70
  59. data/lib/rdf/vocab/skos.rb +97 -93
  60. data/lib/rdf/vocab/skosxl.rb +29 -24
  61. data/lib/rdf/vocab/v.rb +88 -90
  62. data/lib/rdf/vocab/vcard.rb +340 -196
  63. data/lib/rdf/vocab/vmd.rb +88 -90
  64. data/lib/rdf/vocab/vs.rb +15 -15
  65. data/lib/rdf/vocab/wdrs.rb +30 -30
  66. data/lib/rdf/vocab/wot.rb +47 -47
  67. data/lib/rdf/vocab/xhtml.rb +3 -3
  68. data/lib/rdf/vocab/xhv.rb +37 -123
  69. data/lib/rdf/vocab/xkos.rb +110 -107
  70. data/spec/vocab_spec.rb +6 -6
  71. metadata +19 -31
@@ -11,132 +11,132 @@ module RDF::Vocab
11
11
 
12
12
  # Ontology definition
13
13
  ontology :"http://purl.org/dc/dcmitype/",
14
- :"dc:modified" => %(2012-06-14).freeze,
15
- :"dc:publisher" => %(http://purl.org/dc/aboutdcmi#DCMI).freeze,
16
- :"dc:title" => %(DCMI Type Vocabulary).freeze
14
+ "dc:modified": "2012-06-14".freeze,
15
+ "dc:publisher": "http://purl.org/dc/aboutdcmi#DCMI".freeze,
16
+ "dc:title": "DCMI Type Vocabulary".freeze
17
17
 
18
18
  # Class definitions
19
19
  term :Collection,
20
20
  comment: %(An aggregation of resources.).freeze,
21
- :"dc:description" => %(A collection is described as a group; its parts may also be separately described.).freeze,
22
- :"dc:hasVersion" => %(http://dublincore.org/usage/terms/history/#Collection-003).freeze,
23
- :"dc:issued" => %(2000-07-11).freeze,
24
- :"dc:modified" => %(2008-01-14).freeze,
25
- :"http://purl.org/dc/dcam/memberOf" => %(dc:DCMIType).freeze,
21
+ "dc:description": "A collection is described as a group; its parts may also be separately described.".freeze,
22
+ "dc:hasVersion": "http://dublincore.org/usage/terms/history/#Collection-003".freeze,
23
+ "dc:issued": "2000-07-11".freeze,
24
+ "dc:modified": "2008-01-14".freeze,
25
+ "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
26
+ isDefinedBy: "dcmitype:".freeze,
26
27
  label: "Collection".freeze,
27
- :"rdfs:isDefinedBy" => %(dcmitype:).freeze,
28
28
  type: "rdfs:Class".freeze
29
29
  term :Dataset,
30
30
  comment: %(Data encoded in a defined structure.).freeze,
31
- :"dc:description" => %(Examples include lists, tables, and databases. A dataset may be useful for direct machine processing.).freeze,
32
- :"dc:hasVersion" => %(http://dublincore.org/usage/terms/history/#Dataset-003).freeze,
33
- :"dc:issued" => %(2000-07-11).freeze,
34
- :"dc:modified" => %(2008-01-14).freeze,
35
- :"http://purl.org/dc/dcam/memberOf" => %(dc:DCMIType).freeze,
31
+ "dc:description": "Examples include lists, tables, and databases. A dataset may be useful for direct machine processing.".freeze,
32
+ "dc:hasVersion": "http://dublincore.org/usage/terms/history/#Dataset-003".freeze,
33
+ "dc:issued": "2000-07-11".freeze,
34
+ "dc:modified": "2008-01-14".freeze,
35
+ "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
36
+ isDefinedBy: "dcmitype:".freeze,
36
37
  label: "Dataset".freeze,
37
- :"rdfs:isDefinedBy" => %(dcmitype:).freeze,
38
38
  type: "rdfs:Class".freeze
39
39
  term :Event,
40
40
  comment: %(A non-persistent, time-based occurrence.).freeze,
41
- :"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,
42
- :"dc:hasVersion" => %(http://dublincore.org/usage/terms/history/#Event-003).freeze,
43
- :"dc:issued" => %(2000-07-11).freeze,
44
- :"dc:modified" => %(2008-01-14).freeze,
45
- :"http://purl.org/dc/dcam/memberOf" => %(dc:DCMIType).freeze,
41
+ "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,
42
+ "dc:hasVersion": "http://dublincore.org/usage/terms/history/#Event-003".freeze,
43
+ "dc:issued": "2000-07-11".freeze,
44
+ "dc:modified": "2008-01-14".freeze,
45
+ "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
46
+ isDefinedBy: "dcmitype:".freeze,
46
47
  label: "Event".freeze,
47
- :"rdfs:isDefinedBy" => %(dcmitype:).freeze,
48
48
  type: "rdfs:Class".freeze
49
49
  term :Image,
50
50
  comment: %(A visual representation other than text.).freeze,
51
- :"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,
52
- :"dc:hasVersion" => %(http://dublincore.org/usage/terms/history/#Image-004).freeze,
53
- :"dc:issued" => %(2000-07-11).freeze,
54
- :"dc:modified" => %(2008-01-14).freeze,
55
- :"http://purl.org/dc/dcam/memberOf" => %(dc:DCMIType).freeze,
51
+ "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,
52
+ "dc:hasVersion": "http://dublincore.org/usage/terms/history/#Image-004".freeze,
53
+ "dc:issued": "2000-07-11".freeze,
54
+ "dc:modified": "2008-01-14".freeze,
55
+ "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
56
+ isDefinedBy: "dcmitype:".freeze,
56
57
  label: "Image".freeze,
57
- :"rdfs:isDefinedBy" => %(dcmitype:).freeze,
58
58
  type: "rdfs:Class".freeze
59
59
  term :InteractiveResource,
60
60
  comment: %(A resource requiring interaction from the user to be understood, executed, or experienced.).freeze,
61
- :"dc:description" => %(Examples include forms on Web pages, applets, multimedia learning objects, chat services, or virtual reality environments.).freeze,
62
- :"dc:hasVersion" => %(http://dublincore.org/usage/terms/history/#InteractiveResource-003).freeze,
63
- :"dc:issued" => %(2000-07-11).freeze,
64
- :"dc:modified" => %(2008-01-14).freeze,
65
- :"http://purl.org/dc/dcam/memberOf" => %(dc:DCMIType).freeze,
61
+ "dc:description": "Examples include forms on Web pages, applets, multimedia learning objects, chat services, or virtual reality environments.".freeze,
62
+ "dc:hasVersion": "http://dublincore.org/usage/terms/history/#InteractiveResource-003".freeze,
63
+ "dc:issued": "2000-07-11".freeze,
64
+ "dc:modified": "2008-01-14".freeze,
65
+ "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
66
+ isDefinedBy: "dcmitype:".freeze,
66
67
  label: "Interactive Resource".freeze,
67
- :"rdfs:isDefinedBy" => %(dcmitype:).freeze,
68
68
  type: "rdfs:Class".freeze
69
69
  term :MovingImage,
70
70
  comment: %(A series of visual representations imparting an impression of motion when shown in succession.).freeze,
71
- :"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,
72
- :"dc:hasVersion" => %(http://dublincore.org/usage/terms/history/#MovingImage-003).freeze,
73
- :"dc:issued" => %(2003-11-18).freeze,
74
- :"dc:modified" => %(2008-01-14).freeze,
75
- :"http://purl.org/dc/dcam/memberOf" => %(dc:DCMIType).freeze,
71
+ "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,
72
+ "dc:hasVersion": "http://dublincore.org/usage/terms/history/#MovingImage-003".freeze,
73
+ "dc:issued": "2003-11-18".freeze,
74
+ "dc:modified": "2008-01-14".freeze,
75
+ "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
76
+ isDefinedBy: "dcmitype:".freeze,
76
77
  label: "Moving Image".freeze,
77
- :"rdfs:isDefinedBy" => %(dcmitype:).freeze,
78
78
  subClassOf: "dcmitype:Image".freeze,
79
79
  type: "rdfs:Class".freeze
80
80
  term :PhysicalObject,
81
81
  comment: %(An inanimate, three-dimensional object or substance.).freeze,
82
- :"dc:description" => %(Note that digital representations of, or surrogates for, these objects should use Image, Text or one of the other types.).freeze,
83
- :"dc:hasVersion" => %(http://dublincore.org/usage/terms/history/#PhysicalObject-003).freeze,
84
- :"dc:issued" => %(2002-07-13).freeze,
85
- :"dc:modified" => %(2008-01-14).freeze,
86
- :"http://purl.org/dc/dcam/memberOf" => %(dc:DCMIType).freeze,
82
+ "dc:description": "Note that digital representations of, or surrogates for, these objects should use Image, Text or one of the other types.".freeze,
83
+ "dc:hasVersion": "http://dublincore.org/usage/terms/history/#PhysicalObject-003".freeze,
84
+ "dc:issued": "2002-07-13".freeze,
85
+ "dc:modified": "2008-01-14".freeze,
86
+ "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
87
+ isDefinedBy: "dcmitype:".freeze,
87
88
  label: "Physical Object".freeze,
88
- :"rdfs:isDefinedBy" => %(dcmitype:).freeze,
89
89
  type: "rdfs:Class".freeze
90
90
  term :Service,
91
91
  comment: %(A system that provides one or more functions.).freeze,
92
- :"dc:description" => %(Examples include a photocopying service, a banking service, an authentication service, interlibrary loans, a Z39.50 or Web server.).freeze,
93
- :"dc:hasVersion" => %(http://dublincore.org/usage/terms/history/#Service-003).freeze,
94
- :"dc:issued" => %(2000-07-11).freeze,
95
- :"dc:modified" => %(2008-01-14).freeze,
96
- :"http://purl.org/dc/dcam/memberOf" => %(dc:DCMIType).freeze,
92
+ "dc:description": "Examples include a photocopying service, a banking service, an authentication service, interlibrary loans, a Z39.50 or Web server.".freeze,
93
+ "dc:hasVersion": "http://dublincore.org/usage/terms/history/#Service-003".freeze,
94
+ "dc:issued": "2000-07-11".freeze,
95
+ "dc:modified": "2008-01-14".freeze,
96
+ "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
97
+ isDefinedBy: "dcmitype:".freeze,
97
98
  label: "Service".freeze,
98
- :"rdfs:isDefinedBy" => %(dcmitype:).freeze,
99
99
  type: "rdfs:Class".freeze
100
100
  term :Software,
101
101
  comment: %(A computer program in source or compiled form.).freeze,
102
- :"dc:description" => %(Examples include a C source file, MS-Windows .exe executable, or Perl script.).freeze,
103
- :"dc:hasVersion" => %(http://dublincore.org/usage/terms/history/#Software-003).freeze,
104
- :"dc:issued" => %(2000-07-11).freeze,
105
- :"dc:modified" => %(2008-01-14).freeze,
106
- :"http://purl.org/dc/dcam/memberOf" => %(dc:DCMIType).freeze,
102
+ "dc:description": "Examples include a C source file, MS-Windows .exe executable, or Perl script.".freeze,
103
+ "dc:hasVersion": "http://dublincore.org/usage/terms/history/#Software-003".freeze,
104
+ "dc:issued": "2000-07-11".freeze,
105
+ "dc:modified": "2008-01-14".freeze,
106
+ "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
107
+ isDefinedBy: "dcmitype:".freeze,
107
108
  label: "Software".freeze,
108
- :"rdfs:isDefinedBy" => %(dcmitype:).freeze,
109
109
  type: "rdfs:Class".freeze
110
110
  term :Sound,
111
111
  comment: %(A resource primarily intended to be heard.).freeze,
112
- :"dc:description" => %(Examples include a music playback file format, an audio compact disc, and recorded speech or sounds.).freeze,
113
- :"dc:hasVersion" => %(http://dublincore.org/usage/terms/history/#Sound-003).freeze,
114
- :"dc:issued" => %(2000-07-11).freeze,
115
- :"dc:modified" => %(2008-01-14).freeze,
116
- :"http://purl.org/dc/dcam/memberOf" => %(dc:DCMIType).freeze,
112
+ "dc:description": "Examples include a music playback file format, an audio compact disc, and recorded speech or sounds.".freeze,
113
+ "dc:hasVersion": "http://dublincore.org/usage/terms/history/#Sound-003".freeze,
114
+ "dc:issued": "2000-07-11".freeze,
115
+ "dc:modified": "2008-01-14".freeze,
116
+ "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
117
+ isDefinedBy: "dcmitype:".freeze,
117
118
  label: "Sound".freeze,
118
- :"rdfs:isDefinedBy" => %(dcmitype:).freeze,
119
119
  type: "rdfs:Class".freeze
120
120
  term :StillImage,
121
121
  comment: %(A static visual representation.).freeze,
122
- :"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,
123
- :"dc:hasVersion" => %(http://dublincore.org/usage/terms/history/#StillImage-003).freeze,
124
- :"dc:issued" => %(2003-11-18).freeze,
125
- :"dc:modified" => %(2008-01-14).freeze,
126
- :"http://purl.org/dc/dcam/memberOf" => %(dc:DCMIType).freeze,
122
+ "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,
123
+ "dc:hasVersion": "http://dublincore.org/usage/terms/history/#StillImage-003".freeze,
124
+ "dc:issued": "2003-11-18".freeze,
125
+ "dc:modified": "2008-01-14".freeze,
126
+ "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
127
+ isDefinedBy: "dcmitype:".freeze,
127
128
  label: "Still Image".freeze,
128
- :"rdfs:isDefinedBy" => %(dcmitype:).freeze,
129
129
  subClassOf: "dcmitype:Image".freeze,
130
130
  type: "rdfs:Class".freeze
131
131
  term :Text,
132
132
  comment: %(A resource consisting primarily of words for reading.).freeze,
133
- :"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,
134
- :"dc:hasVersion" => %(http://dublincore.org/usage/terms/history/#Text-003).freeze,
135
- :"dc:issued" => %(2000-07-11).freeze,
136
- :"dc:modified" => %(2008-01-14).freeze,
137
- :"http://purl.org/dc/dcam/memberOf" => %(dc:DCMIType).freeze,
133
+ "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,
134
+ "dc:hasVersion": "http://dublincore.org/usage/terms/history/#Text-003".freeze,
135
+ "dc:issued": "2000-07-11".freeze,
136
+ "dc:modified": "2008-01-14".freeze,
137
+ "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze,
138
+ isDefinedBy: "dcmitype:".freeze,
138
139
  label: "Text".freeze,
139
- :"rdfs:isDefinedBy" => %(dcmitype:).freeze,
140
140
  type: "rdfs:Class".freeze
141
141
  end
142
142
  end
@@ -10,104 +10,108 @@ module RDF::Vocab
10
10
  class DISCO < RDF::StrictVocabulary("http://rdf-vocabulary.ddialliance.org/discovery#")
11
11
 
12
12
  # Ontology definition
13
- ontology :"http://rdf-vocabulary.ddialliance.org/discovery",
13
+ ontology :"http://rdf-vocabulary.ddialliance.org/discovery#",
14
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,
15
- :"dc11:contributor" => [%(Benjamin Zapilko).freeze, %(Joachim Wackerow).freeze, %(Richard Cyganiak).freeze, %(Thomas Bosch).freeze],
16
- :"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
- :"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,
18
- :"dc11:title" => %(DDI-RDF Discovery Vocabulary).freeze,
19
- :"owl:versionInfo" => %(Version 0.6 - 2013-09-30).freeze,
15
+ "dc11:contributor": ["Benjamin Zapilko".freeze, "Joachim Wackerow".freeze, "Richard Cyganiak".freeze, "Thomas Bosch".freeze],
16
+ "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
+ "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,
18
+ "dc11:title": "DDI-RDF Discovery Vocabulary".freeze,
19
+ "owl:versionInfo": "Version 0.6 - 2013-09-30".freeze,
20
20
  type: "owl:Ontology".freeze
21
21
 
22
22
  # Class definitions
23
23
  term :AnalysisUnit,
24
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,
25
- label: "Analysis Unit".freeze,
26
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
25
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
26
+ label: ["Analyseeinheit".freeze, "Analysis Unit".freeze],
27
27
  subClassOf: "skos:Concept".freeze,
28
28
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
29
29
  term :CategoryStatistics,
30
30
  comment: %(For CategoryStatistics, frequencies, percentages, and weighted percentages can be defined.).freeze,
31
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
31
32
  label: "Category statistics".freeze,
32
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
33
33
  subClassOf: "disco:DescriptiveStatistics".freeze,
34
34
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
35
35
  term :DataFile,
36
36
  comment: %(The class DataFile, which is also a dcterms:Dataset, represents all the data files containing the microdata datasets.).freeze,
37
- label: "Data file".freeze,
38
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
37
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
38
+ label: ["Data file".freeze, "Fichier de données".freeze],
39
39
  subClassOf: ["dcat:Distribution".freeze, "dcmitype:Dataset".freeze],
40
40
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
41
41
  term :DescriptiveStatistics,
42
42
  comment: %(SummaryStatistics pointing to variables and CategoryStatistics pointing to categories and codes are both DescriptiveStatistics.).freeze,
43
- label: "Descriptive statistics".freeze,
44
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
43
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
44
+ label: ["Descriptive statistics".freeze, "Statistique descriptive".freeze],
45
45
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
46
46
  term :Instrument,
47
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,
48
- label: "Instrument".freeze,
49
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
48
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
49
+ label: ["Instrument de collecte".freeze, "Instrument".freeze],
50
50
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
51
51
  term :LogicalDataSet,
52
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,
53
- label: "LogicalDataSet".freeze,
54
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
53
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
54
+ label: ["Ensemble de données".freeze, "LogicalDataSet".freeze],
55
55
  subClassOf: ["dcat:Dataset".freeze, "skos:Concept".freeze],
56
56
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
57
57
  term :Mapping,
58
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,
59
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
59
60
  label: "Mapping".freeze,
60
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
61
61
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
62
62
  term :Question,
63
63
  comment: %(A Question is designed to get information upon a subject, or sequence of subjects, from a respondent.).freeze,
64
- label: "Question".freeze,
65
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
64
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
65
+ label: ["Question".freeze, "Question".freeze],
66
66
  subClassOf: "skos:Concept".freeze,
67
67
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
68
68
  term :Questionnaire,
69
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,
70
- label: "Questionnaire".freeze,
71
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
70
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
71
+ label: ["Fragebogen".freeze, "Questionnaire".freeze],
72
72
  subClassOf: "disco:Instrument".freeze,
73
73
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
74
74
  term :Representation,
75
75
  comment: %(Representation of a variable, question, or variable definition.).freeze,
76
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
76
77
  label: "Representation of a variable, question, or variable definition.".freeze,
77
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
78
+ subClassOf: term(
79
+ unionOf: list("rdfs:Datatype".freeze, "skos:ConceptScheme".freeze, "skos:OrderedCollection".freeze),
80
+ type: "owl:Class".freeze
81
+ ),
78
82
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
79
83
  term :RepresentedVariable,
80
84
  comment: %(RepresentedVariables encompasse study-independent, re-usable parts of variables like occupation classification.).freeze,
81
- label: "Data element".freeze,
82
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
85
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
86
+ label: ["Data element".freeze, "Élément de donnée".freeze],
83
87
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
84
88
  term :Study,
85
89
  comment: %(A Study represents the process by which a data set was generated or collected.).freeze,
86
- label: "Study".freeze,
87
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
90
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
91
+ label: ["Study".freeze, "Étude".freeze],
88
92
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
89
93
  term :StudyGroup,
90
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,
91
- label: "Study Group".freeze,
92
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
95
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
96
+ label: ["Studiengruppe".freeze, "Study Group".freeze],
93
97
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
94
98
  term :SummaryStatistics,
95
99
  comment: %(For SummaryStatistics, maximum values, minimum values, and standard deviations can be defined.).freeze,
100
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
96
101
  label: "Summary statistics".freeze,
97
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
98
102
  subClassOf: "disco:DescriptiveStatistics".freeze,
99
103
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
100
104
  term :Universe,
101
105
  comment: %(A Universe is the total membership or population of a defined class of people, objects or events.).freeze,
102
- label: "Universe".freeze,
103
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
106
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
107
+ label: ["Univers".freeze, "Universe".freeze],
104
108
  subClassOf: "skos:Concept".freeze,
105
109
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
106
110
  term :Variable,
107
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,
108
- label: "Variable".freeze,
109
- :"owl:equivalentClass" => %(http://semanticscience.org/resource/SIO_000367).freeze,
110
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
112
+ equivalentClass: "http://semanticscience.org/resource/SIO_000367".freeze,
113
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
114
+ label: ["Variable".freeze, "Variable".freeze],
111
115
  subClassOf: "skos:Concept".freeze,
112
116
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
113
117
 
@@ -115,267 +119,331 @@ module RDF::Vocab
115
119
  property :aggregation,
116
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,
117
121
  domain: "disco:LogicalDataSet".freeze,
122
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
118
123
  label: "aggregation".freeze,
119
124
  range: "http://purl.org/linked-data/cube#DataSet".freeze,
120
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
121
125
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
122
126
  property :analysisUnit,
123
127
  comment: %(This property links to the analysis unit of a Study, a StudyGroup, or a Variable.).freeze,
124
- label: "analysis unit".freeze,
128
+ domain: term(
129
+ unionOf: list("disco:Study".freeze, "disco:StudyGroup".freeze, "disco:Variable".freeze),
130
+ type: "owl:Class".freeze
131
+ ),
132
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
133
+ label: ["Analyseeinheit".freeze, "analysis unit".freeze],
125
134
  range: "disco:AnalysisUnit".freeze,
126
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
127
135
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
128
136
  property :basedOn,
129
137
  comment: %(This property points to the RepresentedVariable the Variable is based on.).freeze,
130
138
  domain: "disco:Variable".freeze,
131
- label: "based on".freeze,
139
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
140
+ label: ["based on".freeze, "utilise l'élément de donnée".freeze],
132
141
  range: "disco:RepresentedVariable".freeze,
133
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
134
142
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
135
143
  property :caseQuantity,
136
144
  comment: %(This property is used for representing the case quantity of a DataFile.).freeze,
137
145
  domain: "disco:DataFile".freeze,
138
- label: "number of cases".freeze,
146
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
147
+ label: ["nombre d'observations".freeze, "number of cases".freeze],
139
148
  range: "xsd:nonNegativeInteger".freeze,
140
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
141
149
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
142
150
  property :collectionMode,
143
151
  comment: %(This property points to the mode of collection of a Questionnaire which is a skos:Concept.).freeze,
144
152
  domain: "disco:Questionnaire".freeze,
145
- label: "collection mode".freeze,
153
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
154
+ label: ["Datenerfassungsmodus".freeze, "collection mode".freeze],
146
155
  range: "skos:Concept".freeze,
147
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
148
156
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
149
157
  property :computationBase,
150
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,
151
159
  domain: "disco:CategoryStatistics".freeze,
152
- label: "computation base".freeze,
160
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
161
+ label: ["computation base".freeze, "pourcentage".freeze],
153
162
  range: "rdf:langString".freeze,
154
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
155
163
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
156
164
  property :concept,
157
165
  comment: %(This property points to the DDI concept of a RepresentedVariable, a Variable, or a Question).freeze,
158
- label: "concept".freeze,
166
+ domain: term(
167
+ unionOf: list("disco:RepresentedVariable".freeze, "disco:Question".freeze, "disco:Variable".freeze),
168
+ type: "owl:Class".freeze
169
+ ),
170
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
171
+ label: ["a pour concept".freeze, "concept".freeze],
159
172
  range: "skos:Concept".freeze,
160
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
161
173
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
162
174
  property :context,
163
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,
164
176
  domain: "disco:Mapping".freeze,
177
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
165
178
  label: "context specifies conditions which have to be fulfilled for specific mappings".freeze,
166
179
  range: "rdf:langString".freeze,
167
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
168
180
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
169
181
  property :cumulativePercentage,
170
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,
171
183
  domain: "disco:CategoryStatistics".freeze,
184
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
172
185
  label: "cumulative percentage".freeze,
173
186
  range: "xsd:double".freeze,
174
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
175
187
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
176
188
  property :dataFile,
177
189
  comment: %(This property points to the DataFile of a Study or a LogicalDataSet.).freeze,
178
- label: "data file".freeze,
190
+ domain: term(
191
+ unionOf: list("disco:Study".freeze, "disco:LogicalDataSet".freeze),
192
+ type: "owl:Class".freeze
193
+ ),
194
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
195
+ label: ["a pour fichier de données".freeze, "data file".freeze],
179
196
  range: "disco:DataFile".freeze,
180
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
181
197
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
182
198
  property :ddifile,
183
199
  comment: %(This property points from a Study or a StudyGroup to the original DDI file which is a foaf:Document.).freeze,
184
- label: "DDI file".freeze,
200
+ domain: term(
201
+ unionOf: list("disco:Study".freeze, "disco:StudyGroup".freeze),
202
+ type: "owl:Class".freeze
203
+ ),
204
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
205
+ label: ["DDI file".freeze, "DDI-Datei".freeze],
185
206
  range: "foaf:Document".freeze,
186
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
187
207
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
188
208
  property :endDate,
189
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,
190
210
  domain: "dc:PeriodOfTime".freeze,
211
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
191
212
  label: "end date".freeze,
192
213
  range: "xsd:date".freeze,
193
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
194
214
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
195
215
  property :externalDocumentation,
196
216
  comment: %(This property points from an Instrument to a foaf:Document which is the external documentation of the Instrument.).freeze,
197
217
  domain: "disco:Instrument".freeze,
198
- label: "external documentation".freeze,
218
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
219
+ label: ["external documentation".freeze, "externe Dokumentation".freeze],
199
220
  range: "foaf:Document".freeze,
200
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
201
221
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
202
222
  property :frequency,
203
223
  comment: %(This property is used to describe the frequencies within category statistics. See Sections 6 and 7 more more details and examples.).freeze,
204
224
  domain: "disco:CategoryStatistics".freeze,
205
- label: "frequency".freeze,
225
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
226
+ label: ["frequency".freeze, "fréquence".freeze],
206
227
  range: "xsd:nonNegativeInteger".freeze,
207
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
208
228
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
209
229
  property :fundedBy,
210
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,
231
+ domain: term(
232
+ unionOf: list("disco:Study".freeze, "disco:StudyGroup".freeze),
233
+ type: "owl:Class".freeze
234
+ ),
235
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
211
236
  label: "funded by".freeze,
212
237
  range: "foaf:Agent".freeze,
213
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
214
238
  subPropertyOf: "dc:contributor".freeze,
215
239
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
216
240
  property :inGroup,
217
241
  comment: %(This property points from a Study to the StudyGroup which contains the Study.).freeze,
218
242
  domain: "disco:Study".freeze,
243
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
219
244
  label: "in group".freeze,
220
245
  range: "disco:StudyGroup".freeze,
221
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
222
246
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
223
247
  property :inputVariable,
224
248
  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,
225
249
  domain: "http://purl.org/linked-data/cube#DataSet".freeze,
226
- label: "input variable".freeze,
250
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
251
+ label: ["input variable".freeze, "variable en entrée".freeze],
227
252
  range: "disco:Variable".freeze,
228
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
229
253
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
230
254
  property :instrument,
231
255
  comment: %(This property indicates the Instrument of a Study or a LogicalDataSet.).freeze,
232
- label: "instrument".freeze,
256
+ domain: term(
257
+ unionOf: list("disco:Study".freeze, "disco:LogicalDataSet".freeze),
258
+ type: "owl:Class".freeze
259
+ ),
260
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
261
+ label: ["a comme instrument".freeze, "instrument".freeze],
233
262
  range: "disco:Instrument".freeze,
234
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
235
263
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
236
264
  property :isPublic,
237
265
  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,
238
266
  domain: "disco:LogicalDataSet".freeze,
239
- label: "is public".freeze,
267
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
268
+ label: ["is public".freeze, "ist öffentlich".freeze],
240
269
  range: "xsd:boolean".freeze,
241
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
242
270
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
243
271
  property :isValid,
244
272
  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,
245
273
  domain: "skos:Concept".freeze,
274
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
246
275
  label: "is valid".freeze,
247
276
  range: "xsd:boolean".freeze,
248
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
249
277
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
250
278
  property :kindOfData,
251
279
  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,
280
+ domain: term(
281
+ unionOf: list("disco:Study".freeze, "disco:StudyGroup".freeze),
282
+ type: "owl:Class".freeze
283
+ ),
284
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
252
285
  label: "kind of data".freeze,
253
286
  range: "skos:Concept".freeze,
254
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
255
287
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
256
288
  property :"mappingDDI-C",
257
289
  comment: %(Mapping from and to DDI-C. See Section 10 in the specification for more details and examples.).freeze,
258
290
  domain: "disco:Mapping".freeze,
291
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
259
292
  label: "Mapping from and to DDI-C".freeze,
260
293
  range: "rdf:langString".freeze,
261
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
262
294
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
263
295
  property :"mappingDDI-L",
264
296
  comment: %(Mapping from and to DDI-L. See Section 10 in the specification for more details and examples.).freeze,
265
297
  domain: "disco:Mapping".freeze,
298
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
266
299
  label: "Mapping from and to DDI-L".freeze,
267
300
  range: "rdf:langString".freeze,
268
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
269
301
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
270
302
  property :percentage,
271
303
  comment: %(This property is used to describe the percentages within category statistics. See Sections 6 and 7 more more details and examples.).freeze,
272
304
  domain: "disco:CategoryStatistics".freeze,
273
- label: "percentage".freeze,
305
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
306
+ label: ["percentage".freeze, "pourcentage".freeze],
274
307
  range: "xsd:double".freeze,
275
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
276
308
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
277
309
  property :product,
278
310
  comment: %(This property indicates the LogicalDataSets of a Study.).freeze,
279
311
  domain: "disco:Study".freeze,
280
- label: "product".freeze,
312
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
313
+ label: ["Produkt".freeze, "product".freeze],
281
314
  range: "http://purl.org/linked-data/cube#LogicalDataSet".freeze,
282
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
283
315
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
284
316
  property :purpose,
285
317
  comment: %(The purpose of a Study of a StudyGroup.).freeze,
286
- label: "purpose".freeze,
318
+ domain: term(
319
+ unionOf: list("disco:Study".freeze, "disco:StudyGroup".freeze),
320
+ type: "owl:Class".freeze
321
+ ),
322
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
323
+ label: ["Grund".freeze, "purpose".freeze],
287
324
  range: "rdf:langString".freeze,
288
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
289
325
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
290
326
  property :question,
291
327
  comment: %(This property indicates the Questions associated to Variables or contained in Questionnaires.).freeze,
292
- label: "question".freeze,
328
+ domain: term(
329
+ unionOf: list("disco:Variable".freeze, "disco:Questionnaire".freeze),
330
+ type: "owl:Class".freeze
331
+ ),
332
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
333
+ label: ["a comme question".freeze, "question".freeze],
293
334
  range: "disco:Question".freeze,
294
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
295
335
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
296
336
  property :questionText,
297
337
  comment: %(This property contains the actual text of a question as string. See Section 8.2 for examples.).freeze,
298
338
  domain: "disco:Question".freeze,
299
- label: "question text".freeze,
339
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
340
+ label: ["Fragetext".freeze, "question text".freeze],
300
341
  range: "rdf:langString".freeze,
301
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
302
342
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
303
343
  property :representation,
304
344
  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,
305
- label: "representation".freeze,
306
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
345
+ domain: term(
346
+ unionOf: list("disco:RepresentedVariable".freeze, "disco:Variable".freeze, "disco:Question".freeze),
347
+ type: "owl:Class".freeze
348
+ ),
349
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
350
+ label: ["a pour représentation".freeze, "representation".freeze],
351
+ range: term(
352
+ unionOf: list("skos:ConceptScheme".freeze, "rdfs:Datatype".freeze),
353
+ type: "owl:Class".freeze
354
+ ),
307
355
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
308
356
  property :responseDomain,
309
357
  comment: %(The response domain of questions. The response domain has to be an instance of the class Representation.).freeze,
310
358
  domain: "disco:Question".freeze,
359
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
311
360
  label: "responseDomain".freeze,
312
361
  range: "disco:Representation".freeze,
313
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
314
362
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
315
363
  property :startDate,
316
364
  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,
317
365
  domain: "dc:PeriodOfTime".freeze,
366
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
318
367
  label: "start date".freeze,
319
368
  range: "xsd:date".freeze,
320
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
321
369
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
322
370
  property :statisticsCategory,
323
371
  comment: %(This property points to the skos:Concept \(representing codes and categories\) of a specific CategoryStatistics individual.).freeze,
324
372
  domain: "disco:CategoryStatistics".freeze,
325
- label: "statistics category".freeze,
373
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
374
+ label: ["a pour concept statistique".freeze, "statistics category".freeze],
326
375
  range: "skos:Concept".freeze,
327
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
328
376
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
329
377
  property :statisticsDataFile,
330
378
  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,
331
379
  domain: "disco:DescriptiveStatistics".freeze,
332
- label: "statistics data file".freeze,
380
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
381
+ label: ["a pour fichier statistique".freeze, "statistics data file".freeze],
333
382
  range: "disco:DataFile".freeze,
334
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
335
383
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
336
384
  property :statisticsVariable,
337
385
  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,
338
386
  domain: "disco:SummaryStatistics".freeze,
339
- label: "statistics variable".freeze,
387
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
388
+ label: ["a pour variable statistique".freeze, "statistics variable".freeze],
340
389
  range: "disco:Variable".freeze,
341
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
342
390
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
343
391
  property :subtitle,
344
392
  comment: %(The sub-title of a Study of a StudyGroup.).freeze,
345
- label: "subtitle".freeze,
393
+ domain: term(
394
+ unionOf: list("disco:Study".freeze, "disco:StudyGroup".freeze),
395
+ type: "owl:Class".freeze
396
+ ),
397
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
398
+ label: ["Untertitel".freeze, "subtitle".freeze],
346
399
  range: "rdf:langString".freeze,
347
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
348
400
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
349
401
  property :summaryStatisticsType,
350
402
  comment: %(This property points to the summary statistics type of a Questionnaire which is a skos:Concept.).freeze,
351
403
  domain: "disco:SummaryStatistics".freeze,
404
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
352
405
  label: "summary statistics type".freeze,
353
406
  range: "skos:Concept".freeze,
354
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
355
407
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
356
408
  property :universe,
357
409
  comment: %(This property indicates the Universe\(s\) of Studies, StudyGrous, RepresentedVariables, Variables, Questions, and LogicalDataSets.).freeze,
358
- label: "universe".freeze,
410
+ domain: term(
411
+ unionOf: list("disco:Study".freeze, "disco:StudyGroup".freeze, "disco:RepresentedVariable".freeze, "disco:Variable".freeze, "disco:Question".freeze, "disco:LogicalDataSet".freeze),
412
+ type: "owl:Class".freeze
413
+ ),
414
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
415
+ label: ["a comme univers".freeze, "universe".freeze],
359
416
  range: "disco:Universe".freeze,
360
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
361
417
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
362
418
  property :variable,
363
419
  comment: %(This property indicates the Variable of a Study and points to Variable contained in the LogicalDataSet.).freeze,
364
- label: "variable".freeze,
420
+ domain: term(
421
+ unionOf: list("disco:Study".freeze, "disco:LogicalDataSet".freeze),
422
+ type: "owl:Class".freeze
423
+ ),
424
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
425
+ label: ["Variable".freeze, "variable".freeze],
365
426
  range: "disco:Variable".freeze,
366
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
367
427
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
368
428
  property :variableQuantity,
369
429
  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,
430
+ domain: term(
431
+ unionOf: list("disco:LogicalDataSet".freeze, "disco:DataFile".freeze),
432
+ type: "owl:Class".freeze
433
+ ),
434
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
370
435
  label: "variable quantity".freeze,
371
436
  range: "xsd:nonNegativeInteger".freeze,
372
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
373
437
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
374
438
  property :weightedBy,
375
439
  comment: %(SummaryStatistics or CategoryStatistics resources may be weighted by a specific Variable.).freeze,
376
- label: "weighted by".freeze,
440
+ domain: term(
441
+ unionOf: list("disco:SummaryStatistics".freeze, "disco:CategoryStatistics".freeze),
442
+ type: "owl:Class".freeze
443
+ ),
444
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
445
+ label: ["".freeze, "weighted by".freeze],
377
446
  range: "disco:Variable".freeze,
378
- :"rdfs:isDefinedBy" => %(http://rdf-vocabulary.ddialliance.org/discovery).freeze,
379
447
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
380
448
  end
381
449
  end