-
Notifications
You must be signed in to change notification settings - Fork 6
/
default_dataset_schema.yaml
45 lines (45 loc) · 1.11 KB
/
default_dataset_schema.yaml
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
openapi: 3.0.2
servers: []
info:
version: "draft.3"
title: GA4GH Beacon Dataset Default Schema
description: >-
Schema for datasets to be used as default by the Beacon.
contact:
email: [email protected]
license:
name: Apache 2.0
url: 'http://www.apache.org/licenses/LICENSE-2.0.html'
externalDocs:
description: |
Beacon Project
url: 'http://beacon-project.io/'
paths: {}
components:
schemas:
DatasetDetail:
description: |
Description of the dataset.
type: object
properties:
datasetId:
description: |
Dataset reference ID (internal ID)
type: string
datasetName:
description: |
Dataset name. Reference to source.
type: string
example:
- 'DECIPHER'
- 'DisGenNET'
datasetype:
description: |
Dataset type: variant-level (aggregated) or case-level
type: string
enum:
- variant-level
- case-level
example:
- 'variant-level (aggregated)'
- 'case-level'