{ "$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-list-timeline-events-input-schema.json", "title": "ListTimelineEventsInput", "description": "ListTimelineEventsInput schema", "type": "object", "properties": { "filters": { "allOf": [ { "$ref": "#/components/schemas/FilterList" }, { "description": "

Filters the timeline events based on the provided conditional values. You can filter timeline events with the following keys:

Note the following when deciding how to use Filters:

" } ] }, "incidentRecordArn": { "allOf": [ { "$ref": "#/components/schemas/Arn" }, { "description": "The Amazon Resource Name (ARN) of the incident that includes the timeline event." } ] }, "maxResults": { "allOf": [ { "$ref": "#/components/schemas/MaxResults" }, { "description": "The maximum number of results per page." } ] }, "nextToken": { "allOf": [ { "$ref": "#/components/schemas/NextToken" }, { "description": "The pagination token to continue to the next page of results." } ] }, "sortBy": { "allOf": [ { "$ref": "#/components/schemas/TimelineEventSort" }, { "description": "Sort timeline events by the specified key value pair." } ] }, "sortOrder": { "allOf": [ { "$ref": "#/components/schemas/SortOrder" }, { "description": "Sorts the order of timeline events by the value specified in the sortBy field." } ] } }, "required": [ "incidentRecordArn" ] }