{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ground-station/refs/heads/main/json-schema/ground-station-config-details-schema.json",
"title": "ConfigDetails",
"description": "Details for certain Config object types in a contact.",
"type": "object",
"properties": {
"antennaDemodDecodeDetails": {
"allOf": [
{
"$ref": "#/components/schemas/AntennaDemodDecodeDetails"
},
{
"description": "Details for antenna demod decode Config in a contact."
}
]
},
"endpointDetails": {
"$ref": "#/components/schemas/EndpointDetails"
},
"s3RecordingDetails": {
"allOf": [
{
"$ref": "#/components/schemas/S3RecordingDetails"
},
{
"description": "Details for an S3 recording Config in a contact."
}
]
}
}
}