-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathDataset_v1.0-RELEASE.json
714 lines (714 loc) · 33.5 KB
/
Dataset_v1.0-RELEASE.json
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
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
{
"@context": {
"schema": "http://schema.org/",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"bioschemas": "https://discovery.biothings.io/view/bioschemas/",
"owl": "http://www.w3.org/2002/07/owl/"
},
"@graph": [
{
"@id": "bioschemas:Dataset",
"@type": "rdfs:Class",
"rdfs:comment": "A guide for how to describe datasets in the life-sciences using Schema.org-like annotation. Version 1.0-RELEASE. <h3>Summary of Changes</h3> <br>Key changes since 0.3-RELEASE:<ul><li>Updated properties to Schema.org v12.0; various properties added at recommended or optional level, expected types updated. See 0.4-DRAFT for full details</li><li>license now a minimum property</li><li>keywords: Cardinality #501 – Cardinality is MANY</li><li>distribution: Cardinality #574 – Cardinality changed to MANY</li><li>datePublished: Increased marginlity #576 – Now recommended</li><li>publisher: Increased marginlity, Cardinality #576 – Now recommended with MANY cardinality</li></ul>",
"schema:schemaVersion": [
"https://bioschemas.org/profiles/Dataset/1.0-RELEASE"
],
"rdfs:label": "Dataset",
"rdfs:subClassOf": {
"@id": "schema:Dataset"
},
"$validation": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"alternateName": {
"description": " An alias for the item.",
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
],
"owl:cardinality": "many"
},
"citation": {
"description": "A citation for a publication that describes the dataset. A citation or reference to another creative work, such as another publication, web page, scholarly article, etc.",
"anyOf": [
{
"$ref": "#/definitions/creativework"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/creativework"
}
},
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
],
"owl:cardinality": "many"
},
"creator": {
"description": "The name of the dataset creator (person or organization). The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork.",
"anyOf": [
{
"$ref": "#/definitions/organization"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/organization"
}
},
{
"$ref": "#/definitions/person"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/person"
}
}
],
"owl:cardinality": "many"
},
"dateCreated": {
"description": " The date on which the CreativeWork was created or the item was added to a DataFeed.",
"oneOf": [
{
"type": "string",
"format": "date"
},
{
"$ref": "#/definitions/datetime"
}
],
"owl:cardinality": "one"
},
"dateModified": {
"description": " The date on which the CreativeWork was most recently modified or when the item's entry was modified within a DataFeed.",
"oneOf": [
{
"type": "string",
"format": "date"
},
{
"$ref": "#/definitions/datetime"
}
],
"owl:cardinality": "one"
},
"datePublished": {
"description": " Date of first broadcast/publication.",
"type": "string",
"format": "date",
"owl:cardinality": "one"
},
"description": {
"description": "A short summary describing a dataset. A description of the item.",
"type": "string",
"owl:cardinality": "one"
},
"distribution": {
"description": " A downloadable form of this dataset, at a specific location, in a specific format.",
"oneOf": [
{
"$ref": "#/definitions/datadownload"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/datadownload"
}
}
],
"owl:cardinality": "many"
},
"hasPart": {
"description": " Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense). \nInverse property: [isPartOf](https://schema.org/isPartOf)",
"oneOf": [
{
"$ref": "#/definitions/creativework"
},
{
"$ref": "#/definitions/trip"
}
],
"owl:cardinality": "one"
},
"identifier": {
"description": "CURIEs that can be resolved using [Identifiers.org](https://identifiers.org/) should be used. The identifier property represents any kind of identifier for any kind of [Thing](https://schema.org/Thing), such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](http://schema.org/docs/datamodel.html#identifierBg) for more details.",
"anyOf": [
{
"$ref": "#/definitions/propertyvalue"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/propertyvalue"
}
},
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string",
"format": "uri"
},
{
"type": "array",
"items": {
"type": "string",
"format": "uri"
}
}
],
"owl:cardinality": "many"
},
"includedInDataCatalog": {
"description": " A data catalog which contains this dataset. Supersedes [includedDataCatalog](https://schema.org/includedDataCatalog), [catalog](https://schema.org/catalog).\nInverse property: [dataset](https://schema.org/dataset)",
"oneOf": [
{
"$ref": "#/definitions/datacatalog"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/datacatalog"
}
}
],
"owl:cardinality": "many"
},
"isAccessibleForFree": {
"description": " A flag to signal that the item, event, or place is accessible for free. Supersedes [free](https://schema.org/free).",
"type": "boolean",
"owl:cardinality": "one"
},
"isBasedOn": {
"description": "Use to link a Dataset to the Study that it was generated from. A resource that was used in the creation of this resource. This term can be repeated for multiple sources. For example, http://example.com/great-multiplication-intro.html. \nSupersedes isBasedOnUrl.",
"anyOf": [
{
"$ref": "#/definitions/creativework"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/creativework"
}
},
{
"$ref": "#/definitions/product"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/product"
}
},
{
"type": "string",
"format": "uri"
},
{
"type": "array",
"items": {
"type": "string",
"format": "uri"
}
}
],
"owl:cardinality": "many"
},
"isPartOf": {
"description": " Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of. Inverse property: [hasPart](https://schema.org/hasPart)",
"oneOf": [
{
"$ref": "#/definitions/creativework"
},
{
"type": "string",
"format": "uri"
}
],
"owl:cardinality": "one"
},
"keywords": {
"description": "Keywords should be drawn from a controlled vocabulary, e.g. [EDAM](https://edamontology.org/), and supplied as a DefinedTerm list. Keywords or tags used to describe this content. Multiple entries in a keywords list are typically delimited by commas.",
"anyOf": [
{
"$ref": "#/definitions/definedterm"
},
{
"type": "string"
},
{
"type": "string",
"format": "uri"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/definedterm"
}
},
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "array",
"items": {
"type": "string",
"format": "uri"
}
}
],
"owl:cardinality": "many"
},
"license": {
"description": "A license under which the dataset is distributed. A license document that applies to this content, typically indicated by URL.",
"oneOf": [
{
"$ref": "#/definitions/creativework"
},
{
"type": "string",
"format": "uri"
}
],
"owl:cardinality": "one"
},
"maintainer": {
"description": " A maintainer of a [Dataset](https://schema.org/Dataset), software package ([SoftwareApplication](https://schema.org/SoftwareApplication)), or other [Project](https://schema.org/Project). A maintainer is a [Person](https://schema.org/Person) or [Organization](https://schema.org/Organization) that manages contributions to, and/or publication of, some (typically complex) artifact. It is common for distributions of software and data to be based on \"upstream\" sources. When [maintainer](https://schema.org/maintainer) is applied to a specific version of something e.g. a particular version or packaging of a [Dataset](https://schema.org/Dataset), it is always possible that the upstream source has a different maintainer. The [isBasedOn](https://schema.org/isBasedOn) property can be used to indicate such relationships between datasets to make the different maintenance roles clear. Similarly in the case of software, a package may have dedicated maintainers working on integration into software distributions such as Ubuntu, as well as upstream maintainers of the underlying work.",
"anyOf": [
{
"$ref": "#/definitions/organization"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/organization"
}
},
{
"$ref": "#/definitions/person"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/person"
}
}
],
"owl:cardinality": "many"
},
"measurementTechnique": {
"description": " A technique or technology used in a [Dataset](https://schema.org/Dataset) (or [DataDownload](https://schema.org/DataDownload), [DataCatalog](https://schema.org/DataCatalog)), corresponding to the method used for measuring the corresponding variable(s) (described using [variableMeasured](https://schema.org/variableMeasured)). This is oriented towards scientific and scholarly dataset publication but may have broader applicability; it is not intended as a full representation of measurement, but rather as a high level summary for dataset discovery.\n\nFor example, if [variableMeasured](https://schema.org/variableMeasured) is: molecule concentration, [measurementTechnique](https://schema.org/measurementTechnique) could be: \"mass spectrometry\" or \"nmr spectroscopy\" or \"colorimetry\" or \"immunofluorescence\".\n\nIf the [variableMeasured](https://schema.org/variableMeasured) is \"depression rating\", the [measurementTechnique](https://schema.org/measurementTechnique) could be \"Zung Scale\" or \"HAM-D\" or \"Beck Depression Inventory\".\n\nIf there are several [variableMeasured](https://schema.org/variableMeasured) properties recorded for some given data object, use a [PropertyValue](https://schema.org/PropertyValue) for each [variableMeasured](https://schema.org/variableMeasured) and attach the corresponding [measurementTechnique](https://schema.org/measurementTechnique).",
"anyOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string",
"format": "uri"
},
{
"type": "array",
"items": {
"type": "string",
"format": "uri"
}
},
{
"$ref": "#/definitions/definedterm"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/definedterm"
}
}
],
"owl:cardinality": "many"
},
"name": {
"description": "A descriptive name of the dataset. The name of the item.",
"type": "string",
"owl:cardinality": "one"
},
"publisher": {
"description": " The publisher of the creative work.",
"oneOf": [
{
"$ref": "#/definitions/organization"
},
{
"$ref": "#/definitions/person"
}
],
"owl:cardinality": "one"
},
"sameAs": {
"description": " URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or official website.",
"type": "string",
"format": "uri",
"owl:cardinality": "one"
},
"url": {
"description": "The location of a page describing the dataset. URL of the item.",
"type": "string",
"format": "uri",
"owl:cardinality": "one"
},
"variableMeasured": {
"description": "What does the dataset measure? (e.g., temperature, pressure). The variableMeasured property can indicate (repeated as necessary) the variables that are measured in some dataset, either described as text or as pairs of identifier and description using PropertyValue.",
"anyOf": [
{
"$ref": "#/definitions/propertyvalue"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/propertyvalue"
}
},
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
],
"owl:cardinality": "many"
},
"version": {
"description": "The version number for this dataset. The version of the CreativeWork embodied by a specified resource.",
"oneOf": [
{
"type": "number"
},
{
"type": "string"
}
],
"owl:cardinality": "one"
}
},
"required": [
"description",
"identifier",
"keywords",
"license",
"name",
"url"
],
"recommended": [
"alternateName",
"citation",
"creator",
"datePublished",
"distribution",
"includedInDataCatalog",
"isBasedOn",
"measurementTechnique",
"variableMeasured",
"version"
],
"optional": [
"dateCreated",
"dateModified",
"hasPart",
"isAccessibleForFree",
"isPartOf",
"maintainer",
"publisher",
"sameAs"
],
"definitions": {
"creativework": {
"@type": "CreativeWork",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"identifier": {
"type": "string"
},
"url": {
"type": "string",
"format": "uri"
}
},
"required": []
},
"organization": {
"@type": "Organization",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"legalName": {
"type": "string"
},
"description": {
"type": "string"
},
"sameAs": {
"type": "string",
"format": "uri"
}
}
},
"person": {
"@type": "Person",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"url": {
"type": "string",
"format": "uri"
},
"mainEntityOfPage": {
"anyOf": [
{
"type": "string",
"format": "uri"
},
{
"type": "array",
"items": {
"type": "string",
"format": "uri"
}
},
{
"$ref": "#/definitions/creativework"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/creativework"
}
}
]
}
},
"required": [
"name"
]
},
"datetime": {
"@type": "schema:DateTime",
"type": "object",
"properties": {
"name": {
"type": "string"
}
},
"required": []
},
"datadownload": {
"@type": "schema:DataDownload",
"type": "object",
"properties": {
"name": {
"type": "string"
}
},
"required": []
},
"trip": {
"@type": "schema:Trip",
"type": "object",
"properties": {
"name": {
"type": "string"
}
},
"required": []
},
"propertyvalue": {
"@type": "PropertyValue",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"value": {
"oneOf": [
{
"type": "string"
},
{
"type": "boolean"
},
{
"type": "number"
}
]
},
"identifier": {
"type": "string"
},
"valuereference": {
"oneOf": [
{
"$ref": "#/definitions/categorycode"
},
{
"type": "array",
"items": [
{
"$ref": "#/definitions/categorycode"
}
]
}
]
},
"unitCode": {
"oneOf": [
{
"type": "string"
},
{
"type": "string",
"format": "uri"
}
]
},
"unitText": {
"type": "string"
}
},
"required": [
"name",
"value"
],
"recommended": [
"valueReference"
],
"optional": [
"unitCode",
"unitText"
]
},
"categorycode": {
"@type": "CategoryCode",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"codeValue": {
"type": "string"
},
"url": {
"type": "string"
}
},
"required": [
"name",
"codeValue",
"url"
]
},
"datacatalog": {
"@type": "bioschemas:DataCatalog",
"type": "object",
"properties": {
"name": {
"type": "string"
}
},
"required": []
},
"product": {
"@type": "schema:Product",
"type": "object",
"properties": {
"name": {
"type": "string"
}
},
"required": []
},
"definedterm": {
"@type": "DefinedTerm",
"type": "object",
"properties": {
"url": {
"type": "string",
"format": "uri"
},
"name": {
"type": "string"
},
"termCode": {
"type": "string"
},
"identifier": {
"type": "string"
},
"inDefinedTermSet": {
"$ref": "#/definitions/definedtermset"
}
},
"required": []
},
"definedtermset": {
"@type": "DefinedTermSet",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"identifier": {
"type": "string"
},
"url": {
"type": "string",
"format": "uri"
}
},
"required": []
}
}
}
}
]
}