Summary of a landing zone operation.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-control-tower/refs/heads/main/json-schema/landing-zone-operation-summary-schema.json", "title": "LandingZoneOperationSummary", "description": "Summary of a landing zone operation.", "type": "object", "properties": { "operationIdentifier": { "type": "string", "description": "The unique identifier of the operation." }, "operationType": { "type": "string", "description": "The type of the operation." }, "startTime": { "type": "string", "format": "date-time" }, "status": { "type": "string", "enum": [ "SUCCEEDED", "FAILED", "IN_PROGRESS" ] } } }