-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathbeaconInfoResponse.json
20 lines (20 loc) · 1.07 KB
/
beaconInfoResponse.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": true,
"description": "The `beaconInfoResponse` provides metadata describing a Beacon instance, such as its name, the organization responsible for the Beacon, contact information, site logo and alternative URLs and importantly the beacon's API version. It is based on the GA4GH `service-info` standard.\nThe content of the `beaconInfoResponse` can be used by clients such as web front ends or beacon aggregators to evaluate potential access patterns and to display information about the beacon.",
"properties": {
"meta": {
"$ref": "./sections/beaconInformationalResponseMeta.json",
"description": "Information about the response that could be relevant for the Beacon client in order to interpret the results."
},
"response": {
"$ref": "./sections/beaconInfoResults.json",
"description": "Metadata describing a Beacon instance."
}
},
"required": [
"meta",
"response"
],
"type": "object"
}