{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ground-station/refs/heads/main/json-structure/ground-station-config-list-item-structure.json",
"name": "ConfigListItem",
"description": "An item in a list of Config objects.",
"type": "object",
"properties": {
"configArn": {
"allOf": [
{
"$ref": "#/components/schemas/ConfigArn"
},
{
"description": "ARN of 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."
}
]
}
}
}