{ "$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-event-reference-list-schema.json", "title": "EventReferenceList", "description": "EventReferenceList schema", "type": "array", "items": { "type": "object", "properties": { "relatedItemId": { "allOf": [ { "$ref": "#/components/schemas/GeneratedId" }, { "description": "The ID of a RelatedItem referenced in a TimelineEvent." } ] }, "resource": { "allOf": [ { "$ref": "#/components/schemas/Arn" }, { "description": "The Amazon Resource Name (ARN) of an Amazon Web Services resource referenced in a TimelineEvent." } ] } }, "description": "An item referenced in a TimelineEvent that is involved in or somehow associated with an incident. You can specify an Amazon Resource Name (ARN) for an Amazon Web Services resource or a RelatedItem ID." } }