Amazon Incident Manager · JSON Structure

Incident Manager Event Summary Structure

Details about a timeline event during an incident.

Type: object Properties: 6 Required: 5
AutomationDevOpsIncident ManagementOperations

EventSummary is a JSON Structure definition published by Amazon Incident Manager, describing 6 properties, of which 5 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

eventId eventReferences eventTime eventType eventUpdatedTime incidentRecordArn

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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-summary-structure.json",
  "name": "EventSummary",
  "description": "Details about a timeline event during an incident.",
  "type": "object",
  "properties": {
    "eventId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UUID"
        },
        {
          "description": "The timeline event ID."
        }
      ]
    },
    "eventReferences": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EventReferenceList"
        },
        {
          "description": "A list of references in a <code>TimelineEvent</code>."
        }
      ]
    },
    "eventTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The time that the event occurred."
        }
      ]
    },
    "eventType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TimelineEventType"
        },
        {
          "description": "The type of event. The timeline event must be <code>Custom Event</code>."
        }
      ]
    },
    "eventUpdatedTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The time that the timeline event was last updated."
        }
      ]
    },
    "incidentRecordArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the incident that the event happened during."
        }
      ]
    }
  },
  "required": [
    "eventId",
    "eventTime",
    "eventType",
    "eventUpdatedTime",
    "incidentRecordArn"
  ]
}