{ "$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-create-config-request-schema.json", "title": "CreateConfigRequest", "description": "
", "type": "object", "properties": { "configData": { "allOf": [ { "$ref": "#/components/schemas/ConfigTypeData" }, { "description": "Parameters of aConfig."
}
]
},
"name": {
"allOf": [
{
"$ref": "#/components/schemas/SafeName"
},
{
"description": "Name of a Config."
}
]
},
"tags": {
"allOf": [
{
"$ref": "#/components/schemas/TagsMap"
},
{
"description": "Tags assigned to a Config."
}
]
}
},
"required": [
"configData",
"name"
]
}