{ "$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-mission-profile-list-item-schema.json", "title": "MissionProfileListItem", "description": "Item in a list of mission profiles.", "type": "object", "properties": { "missionProfileArn": { "allOf": [ { "$ref": "#/components/schemas/MissionProfileArn" }, { "description": "ARN of a mission profile." } ] }, "missionProfileId": { "allOf": [ { "$ref": "#/components/schemas/Uuid" }, { "description": "UUID of a mission profile." } ] }, "name": { "allOf": [ { "$ref": "#/components/schemas/SafeName" }, { "description": "Name of a mission profile." } ] }, "region": { "allOf": [ { "$ref": "#/components/schemas/AWSRegion" }, { "description": "Region of a mission profile." } ] } } }