CreateTimelineEventOutput schema
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-incident-manager/refs/heads/main/json-schema/incident-manager-create-timeline-event-output-schema.json", "title": "CreateTimelineEventOutput", "description": "CreateTimelineEventOutput schema", "type": "object", "properties": { "eventId": { "allOf": [ { "$ref": "#/components/schemas/UUID" }, { "description": "The ID of the event for easy reference later. " } ] }, "incidentRecordArn": { "allOf": [ { "$ref": "#/components/schemas/Arn" }, { "description": "The ARN of the incident record that you added the event to." } ] } }, "required": [ "eventId", "incidentRecordArn" ] }