{ "$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-get-config-response-schema.json", "title": "GetConfigResponse", "description": "

", "type": "object", "properties": { "configArn": { "allOf": [ { "$ref": "#/components/schemas/ConfigArn" }, { "description": "ARN of a Config " } ] }, "configData": { "allOf": [ { "$ref": "#/components/schemas/ConfigTypeData" }, { "description": "Data elements in a Config." } ] }, "configId": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "UUID of a Config." } ] }, "configType": { "allOf": [ { "$ref": "#/components/schemas/ConfigCapabilityType" }, { "description": "Type of a Config." } ] }, "name": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "Name of a Config." } ] }, "tags": { "allOf": [ { "$ref": "#/components/schemas/TagsMap" }, { "description": "Tags assigned to a Config." } ] } }, "required": [ "configArn", "configData", "configId", "name" ] }