Skip to content
This repository has been archived by the owner on Jan 25, 2023. It is now read-only.

Added objects and fields descriptions #290

Merged
merged 3 commits into from
Nov 26, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions beacon.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ components:
- 'Y'
- 'MT'
Beacon:
description: Metadata describing a beacon instance.
type: object
required:
- id
Expand Down Expand Up @@ -350,7 +351,7 @@ components:
additionalInfoKey1: additionalInfoValue1
additionalInfoKey2: [ additionalInfoValue2, additionalInfoValue3]
BeaconAlleleRequest:
description: Allele request as interpreted by the beacon.
description: Allele request made against the beacon. The allele must be mapped against a sequence in a genome, and a range can be optionally specified.
type: object
required:
- referenceName
Expand Down Expand Up @@ -446,6 +447,7 @@ components:
- MISS
- NONE
BeaconAlleleResponse:
description: Response to a query for information about an allele, made against the beacon.
type: object
required:
- beaconId
Expand Down Expand Up @@ -523,6 +525,7 @@ components:
example:
additionalInfoKey: additionalInfoValue
BeaconDataset:
description: A dataset available in the beacon.
type: object
required:
- id
Expand Down Expand Up @@ -585,6 +588,7 @@ components:
dataUseConditions:
$ref: '#/components/schemas/DataUseConditions'
BeaconDatasetAlleleResponse:
description: Response containing information about an allele in a particular dataset.
type: object
required:
- datasetId
Expand All @@ -608,17 +612,17 @@ components:
variantCount:
type: integer
format: int64
description: Number of variants matching the allele request in the dataset.
description: Number of times the requested allele has been observed in the dataset.
minimum: 0
callCount:
type: integer
format: int64
description: Number of calls matching the allele request in the dataset.
description: Total number of calls in the dataset. Missing calls are not included.
minimum: 0
sampleCount:
type: integer
format: int64
description: Number of samples matching the allele request in the dataset
description: Number of samples in the dataset where the requested allele is found.
minimum: 0
note:
type: string
Expand Down