-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdiscovery.nt
492 lines (435 loc) · 23.1 KB
/
discovery.nt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix qb: <http://purl.org/linked-data/cube#> .
@prefix org: <http://www.w3.org/ns/org#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix dcmitype: <http://purl.org/dc/terms/DCMIType> .
@prefix adms: <http://www.w3.org/ns/adms#> .
@prefix xkos: <http://purl.org/linked-data/xkos#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix disco: <http://rdf-vocabulary.ddialliance.org/discovery#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
disco:mappingDDI-C
a rdf:Property , owl:DatatypeProperty ;
rdfs:comment "Mapping from and to DDI-C"@en ;
rdfs:domain disco:Mapping ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "Mapping from and to DDI-C"@en ;
rdfs:range rdf:langString .
disco:mappingDDI-L
a rdf:Property , owl:DatatypeProperty ;
rdfs:comment "Mapping from and to DDI-L"@en ;
rdfs:domain disco:Mapping ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "Mapping from and to DDI-L"@en ;
rdfs:range rdf:langString .
disco:responseDomain
a rdf:Property , owl:ObjectProperty ;
rdfs:comment "The response domain of questions."@en ;
rdfs:domain disco:Question ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "responseDomain"@en ;
rdfs:range disco:Representation .
disco:externalDocumentation
a rdf:Property , owl:ObjectProperty ;
rdfs:comment "points from an Instrument to a foaf:Document which is the external documentation of the Instrument."@en ;
rdfs:domain disco:Instrument ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "externe Dokumentation"@de , "external documentation"@en ;
rdfs:range foaf:Document .
disco:aggregation
a rdf:Property , owl:ObjectProperty ;
rdfs:comment "points to the aggregated data set of a microdata data set."@en ;
rdfs:domain disco:LogicalDataSet ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "aggregation"@en ;
rdfs:range qb:DataSet .
disco:Universe
a owl:Class , rdfs:Class ;
rdfs:comment "A Universe is the total membership or population of a defined class of people, objects or events."@en ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "Universe"@en , "Univers"@fr ;
rdfs:subClassOf skos:Concept .
disco:DataFile
a owl:Class , rdfs:Class ;
rdfs:comment "The class DataFile, which is also a /, represents all the data files containing the microdata datasets."@en ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "Fichier de données"@fr , "Data file"@en ;
rdfs:subClassOf dcat:Distribution .
disco:concept
a rdf:Property , owl:ObjectProperty ;
rdfs:comment "points to the DDI concept of a RepresentedVariable, a Variable, or a Question"@en ;
rdfs:domain
[ a owl:Class ;
owl:unionOf (disco:RepresentedVariable disco:Question disco:Variable)
] ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "concept"@en , "a pour concept"@fr ;
rdfs:range skos:Concept .
disco:Variable
a owl:Class , rdfs:Class ;
rdfs: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."@en ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "Variable"@en , "Variable"@fr .
disco:inputVariable
a rdf:Property , owl:ObjectProperty ;
rdfs:comment "Indicates the original Variable of an aggregated qb:DataSet."@en ;
rdfs:domain qb:DataSet ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "input variable"@en , "variable en entrée"@fr ;
rdfs:range disco:Variable .
disco:ddifile
a rdf:Property , owl:ObjectProperty ;
rdfs:comment "points from a Study or a StudyGroup to the original DDI file which is a foaf:Document."@en ;
rdfs:domain
[ a owl:Class ;
owl:unionOf (disco:Study disco:StudyGroup)
] ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "DDI-Datei"@de , "DDI file"@en ;
rdfs:range foaf:Document .
disco:collectionMode
a rdf:Property , owl:ObjectProperty ;
rdfs:comment "mode of collection of a Questionnaire"@en ;
rdfs:domain disco:Questionnaire ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "collection mode"@en , "Datenerfassungsmodus"@de ;
rdfs:range skos:Concept .
disco:CategoryStatistics
a owl:Class , rdfs:Class ;
rdfs:comment "For CategoryStatistics, frequencies, percentages, and weighted percentages can be defined."@en ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "Category statistics"@en ;
rdfs:subClassOf disco:DescriptiveStatistics .
disco:question
a rdf:Property , owl:ObjectProperty ;
rdfs:comment "Indicates the Questions associated to Variables or contained in Questionnaires."@en ;
rdfs:domain
[ a owl:Class ;
owl:unionOf (disco:Variable disco:Questionnaire)
] ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "question"@en , "a comme question"@fr ;
rdfs:range disco:Question .
disco:percentage
a rdf:Property , owl:DatatypeProperty ;
rdfs:comment "percentage"@en ;
rdfs:domain disco:CategoryStatistics ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "pourcentage"@fr , "percentage"@en ;
rdfs:range xsd:decimal .
disco:basedOn
a rdf:Property , owl:ObjectProperty ;
rdfs:comment "points to the RepresentedVariable the Variable is based on."@en ;
rdfs:domain disco:Variable ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "utilise l'élément de donnée"@fr , "based on"@en ;
rdfs:range disco:RepresentedVariable .
disco:analysisUnit
a rdf:Property , owl:ObjectProperty ;
rdfs:comment "analysis unit of a Study, a StudyGroup, or a Variable."@en ;
rdfs:domain
[ a owl:Class ;
owl:unionOf (disco:Study disco:StudyGroup disco:Variable)
] ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "analysis unit"@en , "Analyseeinheit"@de ;
rdfs:range disco:AnalysisUnit .
disco:containsVariable
a rdf:Property , owl:ObjectProperty ;
rdfs:comment "points to Variable contained in the LogicalDataSet"@en ;
rdfs:domain disco:LogicalDataSet ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "contient la variable"@fr , "contains variable"@en ;
rdfs:range disco:Variable .
disco:caseQuantity
a rdf:Property , owl:DatatypeProperty ;
rdfs:comment "case quantity of a DataFile."@en ;
rdfs:domain disco:DataFile ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "nombre d'observations"@fr , "number of cases"@en ;
rdfs:range xsd:nonNegativeInteger .
disco:Study
a owl:Class , rdfs:Class ;
rdfs:comment "A Study represents the process by which a data set was generated or collected."@en ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "Étude"@fr , "Study"@en .
disco:questionText
a rdf:Property , owl:DatatypeProperty ;
rdfs:comment "question text"@en ;
rdfs:domain disco:Question ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "Fragetext"@de , "question text"@en ;
rdfs:range rdf:langString .
disco:endDate
a rdf:Property , owl:DatatypeProperty ;
rdfs:comment "end date"@en ;
rdfs:domain dcterms:PeriodOfTime ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "end date"@en ;
rdfs:range xsd:date .
disco:Question
a owl:Class , rdfs:Class ;
rdfs:comment "A Question is designed to get information upon a subject, or sequence of subjects, from a respondent."@en ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "Question"@en , "Question"@fr .
disco:isValid
a rdf:Property , owl:DatatypeProperty ;
rdfs:comment "Indicates if the code (represented by skos:Concept) is valid or missing."@en ;
rdfs:domain skos:Concept ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "is valid"@en ;
rdfs:range xsd:boolean .
disco:subtitle
a rdf:Property , owl:DatatypeProperty ;
rdfs:comment "The sub-title of a Study of a StudyGroup."@en ;
rdfs:domain
[ a owl:Class ;
owl:unionOf (disco:Study disco:StudyGroup)
] ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "subtitle"@en , "Untertitel"@de ;
rdfs:range rdf:langString .
disco:kindOfData
a rdf:Property , owl:ObjectProperty ;
rdfs: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." ;
rdfs:domain
[ a owl:Class ;
owl:unionOf (disco:Study disco:StudyGroup)
] ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "kind of data"@en ;
rdfs:range skos:Concept .
disco:weightedBy
a rdf:Property , owl:ObjectProperty ;
rdfs:comment "SummaryStatistics or CategoryStatistics resources may be weighted by a specific Variable."@en ;
rdfs:domain
[ a owl:Class ;
owl:unionOf (disco:SummaryStatistics disco:CategoryStatistics)
] ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label ""@fr , "weighted by"@en ;
rdfs:range disco:Variable .
disco:statisticsVariable
a rdf:Property , owl:ObjectProperty ;
rdfs:comment "Indicates the Variable of a specific SummaryStatistics individual."@en ;
rdfs:domain disco:SummaryStatistics ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "statistics variable"@en , "a pour variable statistique"@fr ;
rdfs:range disco:Variable .
disco:inGroup
a rdf:Property , owl:ObjectProperty ;
rdfs:comment "points from a Study to the StudyGroup which contains the Study."@en ;
rdfs:domain disco:Study ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "in group"@en ;
rdfs:range disco:StudyGroup .
disco:LogicalDataSet
a owl:Class , rdfs:Class ;
rdfs: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."@en ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "LogicalDataSet"@en , "Ensemble de données"@fr ;
rdfs:subClassOf dcat:Dataset .
disco:fundedBy
a rdf:Property , owl:ObjectProperty ;
rdfs:comment "points from a Study or a StudyGroup to the funding foaf:Agent which is either a foaf:Person or a org:Organization."@en ;
rdfs:domain
[ a owl:Class ;
owl:unionOf (disco:Study disco:StudyGroup)
] ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "funded by"@en ;
rdfs:range foaf:Agent ;
rdfs:subPropertyOf dcterms:contributor .
disco:startDate
a rdf:Property , owl:DatatypeProperty ;
rdfs:comment "start date"@en ;
rdfs:domain dcterms:PeriodOfTime ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "start date"@en ;
rdfs:range xsd:date .
disco:product
a rdf:Property , owl:ObjectProperty ;
rdfs:comment "Indicates the LogicalDataSets of a Studies."@en ;
rdfs:domain disco:Study ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "product"@en , "Produkt"@de ;
rdfs:range qb:LogicalDataSet .
disco:StudyGroup
a owl:Class , rdfs:Class ;
rdfs: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."@en ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "Study Group"@en , "Studiengruppe"@de .
disco:universe
a rdf:Property , owl:ObjectProperty ;
rdfs:comment "Indicates the Universe(s) of Studies, StudyGrous, RepresentedVariables, Variables, Questions, and LogicalDataSets."@en ;
rdfs:domain
[ a owl:Class ;
owl:unionOf (disco:Study disco:StudyGroup disco:RepresentedVariable disco:Variable disco:Question disco:LogicalDataSet)
] ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "universe"@en , "a comme univers"@fr ;
rdfs:range disco:Universe .
disco:AnalysisUnit
a owl:Class , rdfs:Class ;
rdfs: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."@en ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "Analysis Unit"@en , "Analyseeinheit"@de ;
rdfs:subClassOf skos:Concept .
disco:cumulativePercentage
a rdf:Property , owl:DatatypeProperty ;
rdfs:comment "cumulative percentage"@en ;
rdfs:domain disco:CategoryStatistics ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "cumulative percentage"@en ;
rdfs:range xsd:decimal .
disco:DescriptiveStatistics
a owl:Class , rdfs:Class ;
rdfs:comment "SummaryStatistics pointing to variables and CategoryStatistics pointing to categories and codes are both DescriptiveStatistics."@en ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "Descriptive statistics"@en , "Statistique descriptive"@fr .
disco:context
a rdf:Property , owl:DatatypeProperty ;
rdfs:comment "context specifies conditions which have to be fulfilled for specific mappings"@en ;
rdfs:domain disco:Mapping ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "context specifies conditions which have to be fulfilled for specific mappings"@en ;
rdfs:range rdf:langString .
disco:purpose
a rdf:Property , owl:DatatypeProperty ;
rdfs:comment "The purpose of a Study of a StudyGroup."@en ;
rdfs:domain
[ a owl:Class ;
owl:unionOf (disco:Study disco:StudyGroup)
] ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "Grund"@de , "purpose"@en ;
rdfs:range rdf:langString .
disco:Mapping
a owl:Class , rdfs:Class ;
rdfs:comment "Mappings betwenn DDI-RDF and DDI-XML"@en ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "Mapping"@en .
disco:instrument
a rdf:Property , owl:ObjectProperty ;
rdfs:comment "Indicates the Instrument of a Study or a LogicalDataSet."@en ;
rdfs:domain
[ a owl:Class ;
owl:unionOf (disco:Study disco:LogicalDataSet)
] ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "instrument"@en , "a comme instrument"@fr ;
rdfs:range disco:Instrument .
disco:Instrument
a owl:Class , rdfs:Class ;
rdfs: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."@en ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "Instrument de collecte"@fr , "Instrument"@en .
disco:isPublic
a rdf:Property , owl:DatatypeProperty ;
rdfs:comment "The value true indicates that the dataset can be accessed (usually downloaded) by anyone."@en ;
rdfs:domain disco:LogicalDataSet ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "ist öffentlich"@de , "is public"@en ;
rdfs:range xsd:boolean .
disco:computationBase
a rdf:Property , owl:DatatypeProperty ;
rdfs:comment "computation base"@en ;
rdfs:domain disco:CategoryStatistics ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "computation base"@en , "pourcentage"@fr ;
rdfs:range rdf:langString .
<http://rdf-vocabulary.ddialliance.org/discovery>
a owl:Ontology ;
rdfs: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."@en ;
dc:contributor "Benjamin Zapilko" , "Thomas Bosch" , "Richard Cyganiak" , "Joachim Wackerow" ;
dc:creator "Benjamin Zapilko" , "Arofan Gregory" , "Heiko Paulheim" , "Franck Cotton" , "Thomas Bosch" , "Olof Olsson" , "Richard Cyganiak" , "Joachim Wackerow" , "Benedikt Kämpgen" ;
dc:title "DDI-RDF Discovery Vocabulary"@en ;
owl:versionInfo "Version 0.6 - 2013-09-30" .
disco:variable
a rdf:Property , owl:ObjectProperty ;
rdfs:comment "Indicates the Variable of a Study."@en ;
rdfs:domain disco:Study ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "Variable"@de , "variable"@en ;
rdfs:range disco:Variable .
disco:statisticsCategory
a rdf:Property , owl:ObjectProperty ;
rdfs:comment "Indicates the skos:Concept (representing codes and categories) of a specific CategoryStatistics individual."@en ;
rdfs:domain disco:CategoryStatistics ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "statistics category"@en , "a pour concept statistique"@fr ;
rdfs:range skos:Concept .
disco:SummaryStatistics
a owl:Class , rdfs:Class ;
rdfs:comment "For SummaryStatistics, maximum values, minimum values, and standard deviations can be defined."@en ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "Summary statistics"@en ;
rdfs:subClassOf disco:DescriptiveStatistics .
disco:representation
a rdf:Property , owl:ObjectProperty ;
rdfs: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)."@en ;
rdfs:domain
[ a owl:Class ;
owl:unionOf (disco:RepresentedVariable disco:Variable disco:Question)
] ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "representation"@en , "a pour représentation"@fr ;
rdfs:range
[ a owl:Class ;
owl:unionOf (skos:ConceptScheme rdfs:Datatype)
] .
disco:dataFile
a rdf:Property , owl:ObjectProperty ;
rdfs:comment "points to the DataFile of a Study or a LogicalDataSet."@en ;
rdfs:domain
[ a owl:Class ;
owl:unionOf (disco:Study disco:LogicalDataSet)
] ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "data file"@en , "a pour fichier de données"@fr ;
rdfs:range disco:DataFile .
disco:Questionnaire
a owl:Class , rdfs:Class ;
rdfs:comment "A questionnaire contains a flow of questions. "@en ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "Fragebogen"@de , "Questionnaire"@en ;
rdfs:subClassOf disco:Instrument .
disco:frequency
a rdf:Property , owl:DatatypeProperty ;
rdfs:comment "frequency"@en ;
rdfs:domain disco:CategoryStatistics ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "fréquence"@fr , "frequency"@en ;
rdfs:range xsd:nonNegativeInteger .
disco:RepresentedVariable
a owl:Class , rdfs:Class ;
rdfs:comment "RepresentedVariables encompasse study-independent, re-usable parts of variables like occupation classification."@en ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "Élément de donnée"@fr , "Data element"@en .
disco:summaryStatisticsType
a rdf:Property , owl:ObjectProperty ;
rdfs:comment "summary statistics type"@en ;
rdfs:domain disco:SummaryStatistics ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "summary statistics type"@en ;
rdfs:range skos:Concept .
disco:statisticsDataFile
a rdf:Property , owl:ObjectProperty ;
rdfs:comment "Indicates the DataFile of a specific DesciptiveStatistics individual."@en ;
rdfs:domain disco:DescriptiveStatistics ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "statistics data file"@en , "a pour fichier statistique"@fr ;
rdfs:range disco:DataFile .
disco:hadRole
a rdf:Property , owl:ObjectProperty ;
rdfs:comment "This property indicates the role of an Agent, e.g. analyst, data modeler, programmer, co-investigator or others."@en ;
rdfs:domain foaf:Agent ;
rdfs:isDefinedBy <http://rdf-vocabulary.ddialliance.org/discovery> ;
rdfs:label "had role"@en ;
rdfs:range skos:Concept .