{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-incident-manager/refs/heads/main/json-structure/incident-manager-event-reference-structure.json",
"name": "EventReference",
"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.",
"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."
}
]
}
}
}