rdf-vocab 3.2.0 → 3.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -4
  3. data/VERSION +1 -1
  4. data/lib/rdf/vocab/acl.rb +91 -89
  5. data/lib/rdf/vocab/as.rb +624 -622
  6. data/lib/rdf/vocab/bf2.rb +2241 -2239
  7. data/lib/rdf/vocab/bibframe.rb +2241 -2239
  8. data/lib/rdf/vocab/bibo.rb +943 -941
  9. data/lib/rdf/vocab/cc.rb +102 -100
  10. data/lib/rdf/vocab/cert.rb +107 -105
  11. data/lib/rdf/vocab/cnt.rb +92 -90
  12. data/lib/rdf/vocab/crm.rb +1793 -1791
  13. data/lib/rdf/vocab/datacite.rb +261 -263
  14. data/lib/rdf/vocab/dbo.rb +4307 -4305
  15. data/lib/rdf/vocab/dc.rb +665 -663
  16. data/lib/rdf/vocab/dc11.rb +109 -107
  17. data/lib/rdf/vocab/dcat.rb +373 -356
  18. data/lib/rdf/vocab/dcmitype.rb +91 -89
  19. data/lib/rdf/vocab/disco.rb +348 -346
  20. data/lib/rdf/vocab/doap.rb +304 -302
  21. data/lib/rdf/vocab/dwc.rb +2244 -2242
  22. data/lib/rdf/vocab/earl.rb +146 -144
  23. data/lib/rdf/vocab/ebucore.rb +4945 -4941
  24. data/lib/rdf/vocab/edm.rb +310 -308
  25. data/lib/rdf/vocab/exif.rb +777 -775
  26. data/lib/rdf/vocab/extensions.rb +2 -2
  27. data/lib/rdf/vocab/fcrepo4.rb +307 -305
  28. data/lib/rdf/vocab/foaf.rb +525 -523
  29. data/lib/rdf/vocab/geo.rb +34 -32
  30. data/lib/rdf/vocab/geojson.rb +66 -64
  31. data/lib/rdf/vocab/geonames.rb +3656 -3654
  32. data/lib/rdf/vocab/gr.rb +1204 -1202
  33. data/lib/rdf/vocab/gs1.rb +5881 -5879
  34. data/lib/rdf/vocab/ht.rb +194 -192
  35. data/lib/rdf/vocab/hydra.rb +439 -437
  36. data/lib/rdf/vocab/iana.rb +215 -213
  37. data/lib/rdf/vocab/ical.rb +726 -724
  38. data/lib/rdf/vocab/identifiers.rb +219 -217
  39. data/lib/rdf/vocab/iiif.rb +132 -130
  40. data/lib/rdf/vocab/jsonld.rb +205 -203
  41. data/lib/rdf/vocab/ldp.rb +193 -191
  42. data/lib/rdf/vocab/lrmi.rb +188 -186
  43. data/lib/rdf/vocab/ma.rb +318 -316
  44. data/lib/rdf/vocab/mads.rb +670 -668
  45. data/lib/rdf/vocab/marcrelators.rb +543 -541
  46. data/lib/rdf/vocab/mo.rb +1823 -1821
  47. data/lib/rdf/vocab/mods.rb +636 -634
  48. data/lib/rdf/vocab/nfo.rb +482 -480
  49. data/lib/rdf/vocab/oa.rb +333 -331
  50. data/lib/rdf/vocab/og.rb +198 -196
  51. data/lib/rdf/vocab/ogc.rb +43 -41
  52. data/lib/rdf/vocab/ore.rb +79 -77
  53. data/lib/rdf/vocab/org.rb +322 -320
  54. data/lib/rdf/vocab/pcdm.rb +73 -71
  55. data/lib/rdf/vocab/pplan.rb +97 -95
  56. data/lib/rdf/vocab/premis.rb +903 -901
  57. data/lib/rdf/vocab/premiseventtype.rb +143 -141
  58. data/lib/rdf/vocab/prov.rb +1360 -1358
  59. data/lib/rdf/vocab/ptr.rb +147 -145
  60. data/lib/rdf/vocab/rdau.rb +9447 -9438
  61. data/lib/rdf/vocab/rightsstatements.rb +123 -121
  62. data/lib/rdf/vocab/rsa.rb +44 -42
  63. data/lib/rdf/vocab/rss.rb +46 -44
  64. data/lib/rdf/vocab/schema.rb +14700 -14698
  65. data/lib/rdf/vocab/schemas.rb +14700 -14698
  66. data/lib/rdf/vocab/sd.rb +165 -163
  67. data/lib/rdf/vocab/sh.rb +1096 -1094
  68. data/lib/rdf/vocab/sioc.rb +615 -613
  69. data/lib/rdf/vocab/siocservices.rb +49 -47
  70. data/lib/rdf/vocab/sioctypes.rb +224 -222
  71. data/lib/rdf/vocab/skos.rb +202 -200
  72. data/lib/rdf/vocab/skosxl.rb +51 -49
  73. data/lib/rdf/vocab/v.rb +233 -231
  74. data/lib/rdf/vocab/vcard.rb +776 -774
  75. data/lib/rdf/vocab/vmd.rb +233 -231
  76. data/lib/rdf/vocab/void.rb +145 -143
  77. data/lib/rdf/vocab/vs.rb +27 -25
  78. data/lib/rdf/vocab/wdrs.rb +112 -110
  79. data/lib/rdf/vocab/wot.rb +135 -133
  80. data/lib/rdf/vocab/xhtml.rb +4 -2
  81. data/lib/rdf/vocab/xhv.rb +208 -206
  82. data/lib/rdf/vocab/xkos.rb +220 -218
  83. data/lib/rdf/vocab.rb +2 -0
  84. metadata +14 -3
@@ -3,450 +3,452 @@
3
3
  # This file generated automatically using rdf vocabulary format from http://rdf-vocabulary.ddialliance.org/discovery#
4
4
  require 'rdf'
5
5
  module RDF::Vocab
6
+ # Vocabulary for <http://rdf-vocabulary.ddialliance.org/discovery#>
7
+ # @!visibility private
6
8
  DISCO = Class.new(RDF::StrictVocabulary("http://rdf-vocabulary.ddialliance.org/discovery#")) do
7
9
 
8
10
  # Ontology definition
9
11
  ontology :"http://rdf-vocabulary.ddialliance.org/discovery#",
10
- 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,
11
- "http://purl.org/dc/elements/1.1/contributor": ["Benjamin Zapilko".freeze, "Joachim Wackerow".freeze, "Richard Cyganiak".freeze, "Thomas Bosch".freeze],
12
- "http://purl.org/dc/elements/1.1/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],
13
- "http://purl.org/dc/elements/1.1/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,
14
- "http://purl.org/dc/elements/1.1/title": "DDI-RDF Discovery Vocabulary".freeze,
15
- "http://www.w3.org/2002/07/owl#versionInfo": "Version 0.6 - 2013-09-30".freeze,
16
- type: "http://www.w3.org/2002/07/owl#Ontology".freeze
12
+ comment: {en: "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."},
13
+ "http://purl.org/dc/elements/1.1/contributor": ["Benjamin Zapilko", "Joachim Wackerow", "Richard Cyganiak", "Thomas Bosch"],
14
+ "http://purl.org/dc/elements/1.1/creator": ["Arofan Gregory", "Benedikt Kämpgen", "Benjamin Zapilko", "Franck Cotton", "Heiko Paulheim", "Joachim Wackerow", "Olof Olsson", "Richard Cyganiak", "Sarven Capadisli", "Thomas Bosch"],
15
+ "http://purl.org/dc/elements/1.1/description": {en: "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."},
16
+ "http://purl.org/dc/elements/1.1/title": {en: "DDI-RDF Discovery Vocabulary"},
17
+ "http://www.w3.org/2002/07/owl#versionInfo": "Version 0.6 - 2013-09-30",
18
+ type: "http://www.w3.org/2002/07/owl#Ontology"
17
19
 
18
20
  # Class definitions
19
21
  term :AnalysisUnit,
20
- 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,
21
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
22
- label: "Analysis Unit".freeze,
23
- subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze,
24
- type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze]
22
+ comment: {en: "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."},
23
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
24
+ label: {en: "Analysis Unit", de: "Analyseeinheit"},
25
+ subClassOf: "http://www.w3.org/2004/02/skos/core#Concept",
26
+ type: ["http://www.w3.org/2000/01/rdf-schema#Class", "http://www.w3.org/2002/07/owl#Class"]
25
27
  term :CategoryStatistics,
26
- comment: "For CategoryStatistics, frequencies, percentages, and weighted percentages can be defined.".freeze,
27
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
28
- label: "Category statistics".freeze,
29
- subClassOf: "http://rdf-vocabulary.ddialliance.org/discovery#DescriptiveStatistics".freeze,
30
- type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze]
28
+ comment: {en: "For CategoryStatistics, frequencies, percentages, and weighted percentages can be defined."},
29
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
30
+ label: {en: "Category statistics"},
31
+ subClassOf: "http://rdf-vocabulary.ddialliance.org/discovery#DescriptiveStatistics",
32
+ type: ["http://www.w3.org/2000/01/rdf-schema#Class", "http://www.w3.org/2002/07/owl#Class"]
31
33
  term :DataFile,
32
- comment: "The class DataFile, which is also a dcmitype:Dataset, represents all the data files containing the microdata datasets.".freeze,
33
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
34
- label: "Data file".freeze,
35
- subClassOf: ["http://purl.org/dc/terms/DCMITypeDataset".freeze, "http://www.w3.org/ns/dcat#Distribution".freeze],
36
- type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze]
34
+ comment: {en: "The class DataFile, which is also a dcmitype:Dataset, represents all the data files containing the microdata datasets."},
35
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
36
+ label: {en: "Data file", fr: "Fichier de données"},
37
+ subClassOf: ["http://purl.org/dc/terms/DCMITypeDataset", "http://www.w3.org/ns/dcat#Distribution"],
38
+ type: ["http://www.w3.org/2000/01/rdf-schema#Class", "http://www.w3.org/2002/07/owl#Class"]
37
39
  term :DescriptiveStatistics,
38
- comment: "SummaryStatistics pointing to variables and CategoryStatistics pointing to categories and codes are both DescriptiveStatistics.".freeze,
39
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
40
- label: "Descriptive statistics".freeze,
41
- type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze]
40
+ comment: {en: "SummaryStatistics pointing to variables and CategoryStatistics pointing to categories and codes are both DescriptiveStatistics."},
41
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
42
+ label: {en: "Descriptive statistics", fr: "Statistique descriptive"},
43
+ type: ["http://www.w3.org/2000/01/rdf-schema#Class", "http://www.w3.org/2002/07/owl#Class"]
42
44
  term :Instrument,
43
- 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,
44
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
45
- label: "Instrument".freeze,
46
- type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze]
45
+ comment: {en: "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."},
46
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
47
+ label: {en: "Instrument", fr: "Instrument de collecte"},
48
+ type: ["http://www.w3.org/2000/01/rdf-schema#Class", "http://www.w3.org/2002/07/owl#Class"]
47
49
  term :LogicalDataSet,
48
- 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,
49
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
50
- label: "LogicalDataSet".freeze,
51
- subClassOf: ["http://www.w3.org/2004/02/skos/core#Concept".freeze, "http://www.w3.org/ns/dcat#Dataset".freeze],
52
- type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze]
50
+ comment: {en: "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."},
51
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
52
+ label: {en: "LogicalDataSet", fr: "Ensemble de données"},
53
+ subClassOf: ["http://www.w3.org/2004/02/skos/core#Concept", "http://www.w3.org/ns/dcat#Dataset"],
54
+ type: ["http://www.w3.org/2000/01/rdf-schema#Class", "http://www.w3.org/2002/07/owl#Class"]
53
55
  term :Mapping,
54
- 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,
55
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
56
- label: "Mapping".freeze,
57
- type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze]
56
+ comment: {en: "This class is for representing mappings betwenn DDI-RDF and DDI-XML. See Section 10 in the specification for more details and examples."},
57
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
58
+ label: {en: "Mapping"},
59
+ type: ["http://www.w3.org/2000/01/rdf-schema#Class", "http://www.w3.org/2002/07/owl#Class"]
58
60
  term :Question,
59
- comment: "A Question is designed to get information upon a subject, or sequence of subjects, from a respondent.".freeze,
60
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
61
- label: "Question".freeze,
62
- subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze,
63
- type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze]
61
+ comment: {en: "A Question is designed to get information upon a subject, or sequence of subjects, from a respondent."},
62
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
63
+ label: {en: "Question", fr: "Question"},
64
+ subClassOf: "http://www.w3.org/2004/02/skos/core#Concept",
65
+ type: ["http://www.w3.org/2000/01/rdf-schema#Class", "http://www.w3.org/2002/07/owl#Class"]
64
66
  term :Questionnaire,
65
- 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,
66
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
67
- label: "Questionnaire".freeze,
68
- subClassOf: "http://rdf-vocabulary.ddialliance.org/discovery#Instrument".freeze,
69
- type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze]
67
+ comment: {en: "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."},
68
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
69
+ label: {en: "Questionnaire", de: "Fragebogen"},
70
+ subClassOf: "http://rdf-vocabulary.ddialliance.org/discovery#Instrument",
71
+ type: ["http://www.w3.org/2000/01/rdf-schema#Class", "http://www.w3.org/2002/07/owl#Class"]
70
72
  term :Representation,
71
- comment: "Representation of a variable or question definition.".freeze,
72
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
73
- label: "Representation of a variable or question definition.".freeze,
73
+ comment: {en: "Representation of a variable or question definition."},
74
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
75
+ label: {en: "Representation of a variable or question definition."},
74
76
  subClassOf: term(
75
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
76
- unionOf: list("http://www.w3.org/2000/01/rdf-schema#Datatype".freeze, "http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze, "http://www.w3.org/2004/02/skos/core#OrderedCollection".freeze)
77
+ type: "http://www.w3.org/2002/07/owl#Class",
78
+ unionOf: list("http://www.w3.org/2000/01/rdf-schema#Datatype", "http://www.w3.org/2004/02/skos/core#ConceptScheme", "http://www.w3.org/2004/02/skos/core#OrderedCollection")
77
79
  ),
78
- type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze]
80
+ type: ["http://www.w3.org/2000/01/rdf-schema#Class", "http://www.w3.org/2002/07/owl#Class"]
79
81
  term :RepresentedVariable,
80
- comment: "RepresentedVariables encompasse study-independent, re-usable parts of variables like occupation classification.".freeze,
81
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
82
- label: "Data element".freeze,
83
- type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze]
82
+ comment: {en: "RepresentedVariables encompasse study-independent, re-usable parts of variables like occupation classification."},
83
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
84
+ label: {en: "Data element", fr: "Élément de donnée"},
85
+ type: ["http://www.w3.org/2000/01/rdf-schema#Class", "http://www.w3.org/2002/07/owl#Class"]
84
86
  term :Study,
85
- comment: "A Study represents the process by which a data set was generated or collected.".freeze,
86
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
87
- label: "Study".freeze,
88
- type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze]
87
+ comment: {en: "A Study represents the process by which a data set was generated or collected."},
88
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
89
+ label: {en: "Study", fr: "Étude"},
90
+ type: ["http://www.w3.org/2000/01/rdf-schema#Class", "http://www.w3.org/2002/07/owl#Class"]
89
91
  term :StudyGroup,
90
- 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
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
92
- label: "Study Group".freeze,
93
- type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze]
92
+ comment: {en: "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."},
93
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
94
+ label: {en: "Study Group", de: "Studiengruppe"},
95
+ type: ["http://www.w3.org/2000/01/rdf-schema#Class", "http://www.w3.org/2002/07/owl#Class"]
94
96
  term :SummaryStatistics,
95
- comment: "For SummaryStatistics, maximum values, minimum values, and standard deviations can be defined.".freeze,
96
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
97
- label: "Summary statistics".freeze,
98
- subClassOf: "http://rdf-vocabulary.ddialliance.org/discovery#DescriptiveStatistics".freeze,
99
- type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze]
97
+ comment: {en: "For SummaryStatistics, maximum values, minimum values, and standard deviations can be defined."},
98
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
99
+ label: {en: "Summary statistics"},
100
+ subClassOf: "http://rdf-vocabulary.ddialliance.org/discovery#DescriptiveStatistics",
101
+ type: ["http://www.w3.org/2000/01/rdf-schema#Class", "http://www.w3.org/2002/07/owl#Class"]
100
102
  term :Universe,
101
- comment: "A Universe is the total membership or population of a defined class of people, objects or events.".freeze,
102
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
103
- label: "Universe".freeze,
104
- subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze,
105
- type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze]
103
+ comment: {en: "A Universe is the total membership or population of a defined class of people, objects or events."},
104
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
105
+ label: {en: "Universe", fr: "Univers"},
106
+ subClassOf: "http://www.w3.org/2004/02/skos/core#Concept",
107
+ type: ["http://www.w3.org/2000/01/rdf-schema#Class", "http://www.w3.org/2002/07/owl#Class"]
106
108
  term :Variable,
107
- 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
- equivalentClass: "http://semanticscience.org/resource/SIO_000367".freeze,
109
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
110
- label: "Variable".freeze,
111
- subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze,
112
- type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze]
109
+ comment: {en: "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."},
110
+ equivalentClass: "http://semanticscience.org/resource/SIO_000367",
111
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
112
+ label: {en: "Variable", fr: "Variable"},
113
+ subClassOf: "http://www.w3.org/2004/02/skos/core#Concept",
114
+ type: ["http://www.w3.org/2000/01/rdf-schema#Class", "http://www.w3.org/2002/07/owl#Class"]
113
115
 
114
116
  # Property definitions
115
117
  property :aggregation,
116
- 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
- domain: "http://rdf-vocabulary.ddialliance.org/discovery#LogicalDataSet".freeze,
118
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
119
- label: "aggregation".freeze,
120
- range: "http://purl.org/linked-data/cube#DataSet".freeze,
121
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
118
+ comment: {en: "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."},
119
+ domain: "http://rdf-vocabulary.ddialliance.org/discovery#LogicalDataSet",
120
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
121
+ label: {en: "aggregation"},
122
+ range: "http://purl.org/linked-data/cube#DataSet",
123
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
122
124
  property :analysisUnit,
123
- comment: "This property links to the analysis unit of a Study, a StudyGroup, or a Variable.".freeze,
125
+ comment: {en: "This property links to the analysis unit of a Study, a StudyGroup, or a Variable."},
124
126
  domain: term(
125
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
126
- unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Study".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#StudyGroup".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#Variable".freeze)
127
+ type: "http://www.w3.org/2002/07/owl#Class",
128
+ unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Study", "http://rdf-vocabulary.ddialliance.org/discovery#StudyGroup", "http://rdf-vocabulary.ddialliance.org/discovery#Variable")
127
129
  ),
128
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
129
- label: "analysis unit".freeze,
130
- range: "http://rdf-vocabulary.ddialliance.org/discovery#AnalysisUnit".freeze,
131
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
130
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
131
+ label: {en: "analysis unit", de: "Analyseeinheit"},
132
+ range: "http://rdf-vocabulary.ddialliance.org/discovery#AnalysisUnit",
133
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
132
134
  property :basedOn,
133
- comment: "This property points to the RepresentedVariable the Variable is based on.".freeze,
134
- domain: "http://rdf-vocabulary.ddialliance.org/discovery#Variable".freeze,
135
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
136
- label: "based on".freeze,
137
- range: "http://rdf-vocabulary.ddialliance.org/discovery#RepresentedVariable".freeze,
138
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
135
+ comment: {en: "This property points to the RepresentedVariable the Variable is based on."},
136
+ domain: "http://rdf-vocabulary.ddialliance.org/discovery#Variable",
137
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
138
+ label: {en: "based on", fr: "utilise l'élément de donnée"},
139
+ range: "http://rdf-vocabulary.ddialliance.org/discovery#RepresentedVariable",
140
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
139
141
  property :caseQuantity,
140
- comment: "This property is used for representing the case quantity of a DataFile.".freeze,
141
- domain: "http://rdf-vocabulary.ddialliance.org/discovery#DataFile".freeze,
142
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
143
- label: "number of cases".freeze,
144
- range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze,
145
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze]
142
+ comment: {en: "This property is used for representing the case quantity of a DataFile."},
143
+ domain: "http://rdf-vocabulary.ddialliance.org/discovery#DataFile",
144
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
145
+ label: {en: "number of cases", fr: "nombre d'observations"},
146
+ range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
147
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#DatatypeProperty"]
146
148
  property :collectionMode,
147
- comment: "This property points to the mode of collection of a Questionnaire which is a skos:Concept.".freeze,
148
- domain: "http://rdf-vocabulary.ddialliance.org/discovery#Questionnaire".freeze,
149
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
150
- label: "collection mode".freeze,
151
- range: "http://www.w3.org/2004/02/skos/core#Concept".freeze,
152
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
149
+ comment: {en: "This property points to the mode of collection of a Questionnaire which is a skos:Concept."},
150
+ domain: "http://rdf-vocabulary.ddialliance.org/discovery#Questionnaire",
151
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
152
+ label: {en: "collection mode", de: "Datenerfassungsmodus"},
153
+ range: "http://www.w3.org/2004/02/skos/core#Concept",
154
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
153
155
  property :computationBase,
154
- 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,
155
- domain: "http://rdf-vocabulary.ddialliance.org/discovery#CategoryStatistics".freeze,
156
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
157
- label: "computation base".freeze,
158
- range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze,
159
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze]
156
+ comment: {en: "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."},
157
+ domain: "http://rdf-vocabulary.ddialliance.org/discovery#CategoryStatistics",
158
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
159
+ label: {en: "computation base", fr: "pourcentage"},
160
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString",
161
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#DatatypeProperty"]
160
162
  property :concept,
161
- comment: "This property points to the DDI concept of a RepresentedVariable, a Variable, or a Question".freeze,
163
+ comment: {en: "This property points to the DDI concept of a RepresentedVariable, a Variable, or a Question"},
162
164
  domain: term(
163
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
164
- unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#RepresentedVariable".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#Question".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#Variable".freeze)
165
+ type: "http://www.w3.org/2002/07/owl#Class",
166
+ unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#RepresentedVariable", "http://rdf-vocabulary.ddialliance.org/discovery#Question", "http://rdf-vocabulary.ddialliance.org/discovery#Variable")
165
167
  ),
166
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
167
- label: "concept".freeze,
168
- range: "http://www.w3.org/2004/02/skos/core#Concept".freeze,
169
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
168
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
169
+ label: {en: "concept", fr: "a pour concept"},
170
+ range: "http://www.w3.org/2004/02/skos/core#Concept",
171
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
170
172
  property :context,
171
- 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,
172
- domain: "http://rdf-vocabulary.ddialliance.org/discovery#Mapping".freeze,
173
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
174
- label: "context specifies conditions which have to be fulfilled for specific mappings".freeze,
175
- range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze,
176
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze]
173
+ comment: {en: "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."},
174
+ domain: "http://rdf-vocabulary.ddialliance.org/discovery#Mapping",
175
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
176
+ label: {en: "context specifies conditions which have to be fulfilled for specific mappings"},
177
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString",
178
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#DatatypeProperty"]
177
179
  property :cumulativePercentage,
178
- comment: "This property is used to describe the cumulative percentages within category statistics. See Sections 6 and 7 more more details and examples.".freeze,
179
- domain: "http://rdf-vocabulary.ddialliance.org/discovery#CategoryStatistics".freeze,
180
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
181
- label: "cumulative percentage".freeze,
182
- range: "http://www.w3.org/2001/XMLSchema#double".freeze,
183
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze]
180
+ comment: {en: "This property is used to describe the cumulative percentages within category statistics. See Sections 6 and 7 more more details and examples."},
181
+ domain: "http://rdf-vocabulary.ddialliance.org/discovery#CategoryStatistics",
182
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
183
+ label: {en: "cumulative percentage"},
184
+ range: "http://www.w3.org/2001/XMLSchema#double",
185
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#DatatypeProperty"]
184
186
  property :dataFile,
185
- comment: "This property points to the DataFile of a Study or a LogicalDataSet.".freeze,
187
+ comment: {en: "This property points to the DataFile of a Study or a LogicalDataSet."},
186
188
  domain: term(
187
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
188
- unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Study".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#LogicalDataSet".freeze)
189
+ type: "http://www.w3.org/2002/07/owl#Class",
190
+ unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Study", "http://rdf-vocabulary.ddialliance.org/discovery#LogicalDataSet")
189
191
  ),
190
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
191
- label: "data file".freeze,
192
- range: "http://rdf-vocabulary.ddialliance.org/discovery#DataFile".freeze,
193
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
192
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
193
+ label: {en: "data file", fr: "a pour fichier de données"},
194
+ range: "http://rdf-vocabulary.ddialliance.org/discovery#DataFile",
195
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
194
196
  property :ddifile,
195
- comment: "This property points from a Study or a StudyGroup to the original DDI file which is a foaf:Document.".freeze,
197
+ comment: {en: "This property points from a Study or a StudyGroup to the original DDI file which is a foaf:Document."},
196
198
  domain: term(
197
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
198
- unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Study".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#StudyGroup".freeze)
199
+ type: "http://www.w3.org/2002/07/owl#Class",
200
+ unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Study", "http://rdf-vocabulary.ddialliance.org/discovery#StudyGroup")
199
201
  ),
200
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
201
- label: "DDI file".freeze,
202
- range: "http://xmlns.com/foaf/0.1/Document".freeze,
203
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
202
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
203
+ label: {en: "DDI file", de: "DDI-Datei"},
204
+ range: "http://xmlns.com/foaf/0.1/Document",
205
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
204
206
  property :endDate,
205
- 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,
206
- domain: "http://purl.org/dc/terms/PeriodOfTime".freeze,
207
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
208
- label: "end date".freeze,
209
- range: "http://www.w3.org/2001/XMLSchema#date".freeze,
210
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze]
207
+ comment: {en: "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."},
208
+ domain: "http://purl.org/dc/terms/PeriodOfTime",
209
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
210
+ label: {en: "end date"},
211
+ range: "http://www.w3.org/2001/XMLSchema#date",
212
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#DatatypeProperty"]
211
213
  property :externalDocumentation,
212
- comment: "This property points from an Instrument to a foaf:Document which is the external documentation of the Instrument.".freeze,
213
- domain: "http://rdf-vocabulary.ddialliance.org/discovery#Instrument".freeze,
214
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
215
- label: "external documentation".freeze,
216
- range: "http://xmlns.com/foaf/0.1/Document".freeze,
217
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
214
+ comment: {en: "This property points from an Instrument to a foaf:Document which is the external documentation of the Instrument."},
215
+ domain: "http://rdf-vocabulary.ddialliance.org/discovery#Instrument",
216
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
217
+ label: {en: "external documentation", de: "externe Dokumentation"},
218
+ range: "http://xmlns.com/foaf/0.1/Document",
219
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
218
220
  property :frequency,
219
- comment: "This property is used to describe the frequencies within category statistics. See Sections 6 and 7 more more details and examples.".freeze,
220
- domain: "http://rdf-vocabulary.ddialliance.org/discovery#CategoryStatistics".freeze,
221
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
222
- label: "frequency".freeze,
223
- range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze,
224
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze]
221
+ comment: {en: "This property is used to describe the frequencies within category statistics. See Sections 6 and 7 more more details and examples."},
222
+ domain: "http://rdf-vocabulary.ddialliance.org/discovery#CategoryStatistics",
223
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
224
+ label: {en: "frequency", fr: "fréquence"},
225
+ range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
226
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#DatatypeProperty"]
225
227
  property :fundedBy,
226
- 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,
228
+ comment: {en: "This property points from a Study or a StudyGroup to the funding foaf:Agent which is either a foaf:Person or a org:Organization."},
227
229
  domain: term(
228
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
229
- unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Study".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#StudyGroup".freeze)
230
+ type: "http://www.w3.org/2002/07/owl#Class",
231
+ unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Study", "http://rdf-vocabulary.ddialliance.org/discovery#StudyGroup")
230
232
  ),
231
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
232
- label: "funded by".freeze,
233
- range: "http://xmlns.com/foaf/0.1/Agent".freeze,
234
- subPropertyOf: "http://purl.org/dc/terms/contributor".freeze,
235
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
233
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
234
+ label: {en: "funded by"},
235
+ range: "http://xmlns.com/foaf/0.1/Agent",
236
+ subPropertyOf: "http://purl.org/dc/terms/contributor",
237
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
236
238
  property :hadRole,
237
- comment: "This property indicates the role of an Agent, e.g. analyst, data modeler, programmer, co-investigator or others.".freeze,
238
- domain: "http://xmlns.com/foaf/0.1/Agent".freeze,
239
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
240
- label: "had role".freeze,
241
- range: "http://www.w3.org/2004/02/skos/core#Concept".freeze,
242
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
239
+ comment: {en: "This property indicates the role of an Agent, e.g. analyst, data modeler, programmer, co-investigator or others."},
240
+ domain: "http://xmlns.com/foaf/0.1/Agent",
241
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
242
+ label: {en: "had role"},
243
+ range: "http://www.w3.org/2004/02/skos/core#Concept",
244
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
243
245
  property :inGroup,
244
- comment: "This property points from a Study to the StudyGroup which contains the Study.".freeze,
245
- domain: "http://rdf-vocabulary.ddialliance.org/discovery#Study".freeze,
246
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
247
- label: "in group".freeze,
248
- range: "http://rdf-vocabulary.ddialliance.org/discovery#StudyGroup".freeze,
249
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
246
+ comment: {en: "This property points from a Study to the StudyGroup which contains the Study."},
247
+ domain: "http://rdf-vocabulary.ddialliance.org/discovery#Study",
248
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
249
+ label: {en: "in group"},
250
+ range: "http://rdf-vocabulary.ddialliance.org/discovery#StudyGroup",
251
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
250
252
  property :inputVariable,
251
- 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,
252
- domain: "http://purl.org/linked-data/cube#DataSet".freeze,
253
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
254
- label: "input variable".freeze,
255
- range: "http://rdf-vocabulary.ddialliance.org/discovery#Variable".freeze,
256
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
253
+ comment: {en: "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."},
254
+ domain: "http://purl.org/linked-data/cube#DataSet",
255
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
256
+ label: {en: "input variable", fr: "variable en entrée"},
257
+ range: "http://rdf-vocabulary.ddialliance.org/discovery#Variable",
258
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
257
259
  property :instrument,
258
- comment: "This property indicates the Instrument of a Study or a LogicalDataSet.".freeze,
260
+ comment: {en: "This property indicates the Instrument of a Study or a LogicalDataSet."},
259
261
  domain: term(
260
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
261
- unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Study".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#LogicalDataSet".freeze)
262
+ type: "http://www.w3.org/2002/07/owl#Class",
263
+ unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Study", "http://rdf-vocabulary.ddialliance.org/discovery#LogicalDataSet")
262
264
  ),
263
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
264
- label: "instrument".freeze,
265
- range: "http://rdf-vocabulary.ddialliance.org/discovery#Instrument".freeze,
266
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
265
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
266
+ label: {en: "instrument", fr: "a comme instrument"},
267
+ range: "http://rdf-vocabulary.ddialliance.org/discovery#Instrument",
268
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
267
269
  property :isPublic,
268
- 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,
269
- domain: "http://rdf-vocabulary.ddialliance.org/discovery#LogicalDataSet".freeze,
270
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
271
- label: "is public".freeze,
272
- range: "http://www.w3.org/2001/XMLSchema#boolean".freeze,
273
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze]
270
+ comment: {en: "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."},
271
+ domain: "http://rdf-vocabulary.ddialliance.org/discovery#LogicalDataSet",
272
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
273
+ label: {en: "is public", de: "ist öffentlich"},
274
+ range: "http://www.w3.org/2001/XMLSchema#boolean",
275
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#DatatypeProperty"]
274
276
  property :isValid,
275
- 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,
276
- domain: "http://www.w3.org/2004/02/skos/core#Concept".freeze,
277
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
278
- label: "is valid".freeze,
279
- range: "http://www.w3.org/2001/XMLSchema#boolean".freeze,
280
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze]
277
+ comment: {en: "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."},
278
+ domain: "http://www.w3.org/2004/02/skos/core#Concept",
279
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
280
+ label: {en: "is valid"},
281
+ range: "http://www.w3.org/2001/XMLSchema#boolean",
282
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#DatatypeProperty"]
281
283
  property :kindOfData,
282
- 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,
284
+ 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.",
283
285
  domain: term(
284
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
285
- unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Study".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#StudyGroup".freeze)
286
+ type: "http://www.w3.org/2002/07/owl#Class",
287
+ unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Study", "http://rdf-vocabulary.ddialliance.org/discovery#StudyGroup")
286
288
  ),
287
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
288
- label: "kind of data".freeze,
289
- range: "http://www.w3.org/2004/02/skos/core#Concept".freeze,
290
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
289
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
290
+ label: {en: "kind of data"},
291
+ range: "http://www.w3.org/2004/02/skos/core#Concept",
292
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
291
293
  property :"mappingDDI-C",
292
- comment: "Mapping from and to DDI-C. See Section 10 in the specification for more details and examples.".freeze,
293
- domain: "http://rdf-vocabulary.ddialliance.org/discovery#Mapping".freeze,
294
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
295
- label: "Mapping from and to DDI-C".freeze,
296
- range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze,
297
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze]
294
+ comment: {en: "Mapping from and to DDI-C. See Section 10 in the specification for more details and examples."},
295
+ domain: "http://rdf-vocabulary.ddialliance.org/discovery#Mapping",
296
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
297
+ label: {en: "Mapping from and to DDI-C"},
298
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString",
299
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#DatatypeProperty"]
298
300
  property :"mappingDDI-L",
299
- comment: "Mapping from and to DDI-L. See Section 10 in the specification for more details and examples.".freeze,
300
- domain: "http://rdf-vocabulary.ddialliance.org/discovery#Mapping".freeze,
301
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
302
- label: "Mapping from and to DDI-L".freeze,
303
- range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze,
304
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze]
301
+ comment: {en: "Mapping from and to DDI-L. See Section 10 in the specification for more details and examples."},
302
+ domain: "http://rdf-vocabulary.ddialliance.org/discovery#Mapping",
303
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
304
+ label: {en: "Mapping from and to DDI-L"},
305
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString",
306
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#DatatypeProperty"]
305
307
  property :percentage,
306
- comment: "This property is used to describe the percentages within category statistics. See Sections 6 and 7 more more details and examples.".freeze,
307
- domain: "http://rdf-vocabulary.ddialliance.org/discovery#CategoryStatistics".freeze,
308
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
309
- label: "percentage".freeze,
310
- range: "http://www.w3.org/2001/XMLSchema#double".freeze,
311
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze]
308
+ comment: {en: "This property is used to describe the percentages within category statistics. See Sections 6 and 7 more more details and examples."},
309
+ domain: "http://rdf-vocabulary.ddialliance.org/discovery#CategoryStatistics",
310
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
311
+ label: {en: "percentage", fr: "pourcentage"},
312
+ range: "http://www.w3.org/2001/XMLSchema#double",
313
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#DatatypeProperty"]
312
314
  property :product,
313
- comment: "This property indicates the LogicalDataSets of a Study.".freeze,
314
- domain: "http://rdf-vocabulary.ddialliance.org/discovery#Study".freeze,
315
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
316
- label: "product".freeze,
317
- range: "http://purl.org/linked-data/cube#LogicalDataSet".freeze,
318
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
315
+ comment: {en: "This property indicates the LogicalDataSets of a Study."},
316
+ domain: "http://rdf-vocabulary.ddialliance.org/discovery#Study",
317
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
318
+ label: {en: "product", de: "Produkt"},
319
+ range: "http://purl.org/linked-data/cube#LogicalDataSet",
320
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
319
321
  property :purpose,
320
- comment: "The purpose of a Study of a StudyGroup.".freeze,
322
+ comment: {en: "The purpose of a Study of a StudyGroup."},
321
323
  domain: term(
322
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
323
- unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Study".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#StudyGroup".freeze)
324
+ type: "http://www.w3.org/2002/07/owl#Class",
325
+ unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Study", "http://rdf-vocabulary.ddialliance.org/discovery#StudyGroup")
324
326
  ),
325
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
326
- label: "purpose".freeze,
327
- range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze,
328
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze]
327
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
328
+ label: {en: "purpose", de: "Grund"},
329
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString",
330
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#DatatypeProperty"]
329
331
  property :question,
330
- comment: "This property indicates the Questions associated to Variables or contained in Questionnaires.".freeze,
332
+ comment: {en: "This property indicates the Questions associated to Variables or contained in Questionnaires."},
331
333
  domain: term(
332
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
333
- unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Variable".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#Questionnaire".freeze)
334
+ type: "http://www.w3.org/2002/07/owl#Class",
335
+ unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Variable", "http://rdf-vocabulary.ddialliance.org/discovery#Questionnaire")
334
336
  ),
335
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
336
- label: "question".freeze,
337
- range: "http://rdf-vocabulary.ddialliance.org/discovery#Question".freeze,
338
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
337
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
338
+ label: {en: "question", fr: "a comme question"},
339
+ range: "http://rdf-vocabulary.ddialliance.org/discovery#Question",
340
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
339
341
  property :questionText,
340
- comment: "This property contains the actual text of a question as string. See Section 8.2 for examples.".freeze,
341
- domain: "http://rdf-vocabulary.ddialliance.org/discovery#Question".freeze,
342
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
343
- label: "question text".freeze,
344
- range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze,
345
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze]
342
+ comment: {en: "This property contains the actual text of a question as string. See Section 8.2 for examples."},
343
+ domain: "http://rdf-vocabulary.ddialliance.org/discovery#Question",
344
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
345
+ label: {en: "question text", de: "Fragetext"},
346
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString",
347
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#DatatypeProperty"]
346
348
  property :representation,
347
- 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,
349
+ comment: {en: "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)."},
348
350
  domain: term(
349
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
350
- unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#RepresentedVariable".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#Variable".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#Question".freeze)
351
+ type: "http://www.w3.org/2002/07/owl#Class",
352
+ unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#RepresentedVariable", "http://rdf-vocabulary.ddialliance.org/discovery#Variable", "http://rdf-vocabulary.ddialliance.org/discovery#Question")
351
353
  ),
352
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
353
- label: "representation".freeze,
354
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
355
+ label: {en: "representation", fr: "a pour représentation"},
354
356
  range: term(
355
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
356
- unionOf: list("http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze, "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze)
357
+ type: "http://www.w3.org/2002/07/owl#Class",
358
+ unionOf: list("http://www.w3.org/2004/02/skos/core#ConceptScheme", "http://www.w3.org/2000/01/rdf-schema#Datatype")
357
359
  ),
358
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
360
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
359
361
  property :responseDomain,
360
- comment: "The response domain of questions. The response domain has to be an instance of the class Representation.".freeze,
361
- domain: "http://rdf-vocabulary.ddialliance.org/discovery#Question".freeze,
362
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
363
- label: "responseDomain".freeze,
364
- range: "http://rdf-vocabulary.ddialliance.org/discovery#Representation".freeze,
365
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
362
+ comment: {en: "The response domain of questions. The response domain has to be an instance of the class Representation."},
363
+ domain: "http://rdf-vocabulary.ddialliance.org/discovery#Question",
364
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
365
+ label: {en: "responseDomain"},
366
+ range: "http://rdf-vocabulary.ddialliance.org/discovery#Representation",
367
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
366
368
  property :startDate,
367
- 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,
368
- domain: "http://purl.org/dc/terms/PeriodOfTime".freeze,
369
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
370
- label: "start date".freeze,
371
- range: "http://www.w3.org/2001/XMLSchema#date".freeze,
372
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze]
369
+ comment: {en: "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."},
370
+ domain: "http://purl.org/dc/terms/PeriodOfTime",
371
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
372
+ label: {en: "start date"},
373
+ range: "http://www.w3.org/2001/XMLSchema#date",
374
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#DatatypeProperty"]
373
375
  property :statisticsCategory,
374
- comment: "This property points to the skos:Concept (representing codes and categories) of a specific CategoryStatistics individual.".freeze,
375
- domain: "http://rdf-vocabulary.ddialliance.org/discovery#CategoryStatistics".freeze,
376
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
377
- label: "statistics category".freeze,
378
- range: "http://www.w3.org/2004/02/skos/core#Concept".freeze,
379
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
376
+ comment: {en: "This property points to the skos:Concept (representing codes and categories) of a specific CategoryStatistics individual."},
377
+ domain: "http://rdf-vocabulary.ddialliance.org/discovery#CategoryStatistics",
378
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
379
+ label: {en: "statistics category", fr: "a pour concept statistique"},
380
+ range: "http://www.w3.org/2004/02/skos/core#Concept",
381
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
380
382
  property :statisticsDataFile,
381
- 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,
382
- domain: "http://rdf-vocabulary.ddialliance.org/discovery#DescriptiveStatistics".freeze,
383
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
384
- label: "statistics data file".freeze,
385
- range: "http://rdf-vocabulary.ddialliance.org/discovery#DataFile".freeze,
386
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
383
+ comment: {en: "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."},
384
+ domain: "http://rdf-vocabulary.ddialliance.org/discovery#DescriptiveStatistics",
385
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
386
+ label: {en: "statistics data file", fr: "a pour fichier statistique"},
387
+ range: "http://rdf-vocabulary.ddialliance.org/discovery#DataFile",
388
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
387
389
  property :statisticsVariable,
388
- 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,
389
- domain: "http://rdf-vocabulary.ddialliance.org/discovery#SummaryStatistics".freeze,
390
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
391
- label: "statistics variable".freeze,
392
- range: "http://rdf-vocabulary.ddialliance.org/discovery#Variable".freeze,
393
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
390
+ comment: {en: "This property indicates the Variable of a specific SummaryStatistics individual. SummaryStatistics point to 0 to n variables (Variable) using the object property statisticsVariable."},
391
+ domain: "http://rdf-vocabulary.ddialliance.org/discovery#SummaryStatistics",
392
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
393
+ label: {en: "statistics variable", fr: "a pour variable statistique"},
394
+ range: "http://rdf-vocabulary.ddialliance.org/discovery#Variable",
395
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
394
396
  property :subtitle,
395
- comment: "The sub-title of a Study of a StudyGroup.".freeze,
397
+ comment: {en: "The sub-title of a Study of a StudyGroup."},
396
398
  domain: term(
397
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
398
- unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Study".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#StudyGroup".freeze)
399
+ type: "http://www.w3.org/2002/07/owl#Class",
400
+ unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Study", "http://rdf-vocabulary.ddialliance.org/discovery#StudyGroup")
399
401
  ),
400
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
401
- label: "subtitle".freeze,
402
- range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze,
403
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze]
402
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
403
+ label: {en: "subtitle", de: "Untertitel"},
404
+ range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString",
405
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#DatatypeProperty"]
404
406
  property :summaryStatisticsType,
405
- comment: "This property points to the summary statistics type of a Questionnaire which is a skos:Concept.".freeze,
406
- domain: "http://rdf-vocabulary.ddialliance.org/discovery#SummaryStatistics".freeze,
407
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
408
- label: "summary statistics type".freeze,
409
- range: "http://www.w3.org/2004/02/skos/core#Concept".freeze,
410
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
407
+ comment: {en: "This property points to the summary statistics type of a Questionnaire which is a skos:Concept."},
408
+ domain: "http://rdf-vocabulary.ddialliance.org/discovery#SummaryStatistics",
409
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
410
+ label: {en: "summary statistics type"},
411
+ range: "http://www.w3.org/2004/02/skos/core#Concept",
412
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
411
413
  property :universe,
412
- comment: "This property indicates the Universe(s) of Studies, StudyGrous, RepresentedVariables, Variables, Questions, and LogicalDataSets.".freeze,
414
+ comment: {en: "This property indicates the Universe(s) of Studies, StudyGrous, RepresentedVariables, Variables, Questions, and LogicalDataSets."},
413
415
  domain: term(
414
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
415
- unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Study".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#StudyGroup".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#RepresentedVariable".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#Variable".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#Question".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#LogicalDataSet".freeze)
416
+ type: "http://www.w3.org/2002/07/owl#Class",
417
+ unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Study", "http://rdf-vocabulary.ddialliance.org/discovery#StudyGroup", "http://rdf-vocabulary.ddialliance.org/discovery#RepresentedVariable", "http://rdf-vocabulary.ddialliance.org/discovery#Variable", "http://rdf-vocabulary.ddialliance.org/discovery#Question", "http://rdf-vocabulary.ddialliance.org/discovery#LogicalDataSet")
416
418
  ),
417
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
418
- label: "universe".freeze,
419
- range: "http://rdf-vocabulary.ddialliance.org/discovery#Universe".freeze,
420
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
419
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
420
+ label: {en: "universe", fr: "a comme univers"},
421
+ range: "http://rdf-vocabulary.ddialliance.org/discovery#Universe",
422
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
421
423
  property :variable,
422
- comment: "This property indicates the Variable of a Study and points to Variable contained in the LogicalDataSet.".freeze,
424
+ comment: {en: "This property indicates the Variable of a Study and points to Variable contained in the LogicalDataSet."},
423
425
  domain: term(
424
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
425
- unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Study".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#LogicalDataSet".freeze)
426
+ type: "http://www.w3.org/2002/07/owl#Class",
427
+ unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Study", "http://rdf-vocabulary.ddialliance.org/discovery#LogicalDataSet")
426
428
  ),
427
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
428
- label: "variable".freeze,
429
- range: "http://rdf-vocabulary.ddialliance.org/discovery#Variable".freeze,
430
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
429
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
430
+ label: {en: "variable", de: "Variable"},
431
+ range: "http://rdf-vocabulary.ddialliance.org/discovery#Variable",
432
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
431
433
  property :variableQuantity,
432
- 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,
434
+ comment: {en: "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."},
433
435
  domain: term(
434
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
435
- unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#LogicalDataSet".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#DataFile".freeze)
436
+ type: "http://www.w3.org/2002/07/owl#Class",
437
+ unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#LogicalDataSet", "http://rdf-vocabulary.ddialliance.org/discovery#DataFile")
436
438
  ),
437
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
438
- label: "variable quantity".freeze,
439
- range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze,
440
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze]
439
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
440
+ label: {en: "variable quantity"},
441
+ range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
442
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#DatatypeProperty"]
441
443
  property :weightedBy,
442
- comment: "SummaryStatistics or CategoryStatistics resources may be weighted by a specific Variable.".freeze,
444
+ comment: {en: "SummaryStatistics or CategoryStatistics resources may be weighted by a specific Variable."},
443
445
  domain: term(
444
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
445
- unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#SummaryStatistics".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#CategoryStatistics".freeze)
446
+ type: "http://www.w3.org/2002/07/owl#Class",
447
+ unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#SummaryStatistics", "http://rdf-vocabulary.ddialliance.org/discovery#CategoryStatistics")
446
448
  ),
447
- isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze,
448
- label: "weighted by".freeze,
449
- range: "http://rdf-vocabulary.ddialliance.org/discovery#Variable".freeze,
450
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
449
+ isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery",
450
+ label: {en: "weighted by", fr: ""},
451
+ range: "http://rdf-vocabulary.ddialliance.org/discovery#Variable",
452
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property", "http://www.w3.org/2002/07/owl#ObjectProperty"]
451
453
  end
452
454
  end