{ "$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-update-incident-record-input-schema.json", "title": "UpdateIncidentRecordInput", "description": "UpdateIncidentRecordInput schema", "type": "object", "properties": { "arn": { "allOf": [ { "$ref": "#/components/schemas/Arn" }, { "description": "The Amazon Resource Name (ARN) of the incident record you are updating." } ] }, "chatChannel": { "allOf": [ { "$ref": "#/components/schemas/ChatChannel" }, { "description": "The Chatbot chat channel where responders can collaborate." } ] }, "clientToken": { "allOf": [ { "$ref": "#/components/schemas/ClientToken" }, { "description": "A token that ensures that a client calls the operation only once with the specified details." } ] }, "impact": { "allOf": [ { "$ref": "#/components/schemas/Impact" }, { "description": "

Defines the impact of the incident to customers and applications. If you provide an impact for an incident, it overwrites the impact provided by the response plan.

Possible impacts:

" } ] }, "notificationTargets": { "allOf": [ { "$ref": "#/components/schemas/NotificationTargetSet" }, { "description": "

The Amazon SNS targets that Incident Manager notifies when a client updates an incident.

Using multiple SNS topics creates redundancy in the event that a Region is down during the incident.

" } ] }, "status": { "allOf": [ { "$ref": "#/components/schemas/IncidentRecordStatus" }, { "description": "The status of the incident. Possible statuses are Open or Resolved." } ] }, "summary": { "allOf": [ { "$ref": "#/components/schemas/IncidentSummary" }, { "description": "A longer description of what occurred during the incident." } ] }, "title": { "allOf": [ { "$ref": "#/components/schemas/IncidentTitle" }, { "description": "A brief description of the incident." } ] } }, "required": [ "arn" ] }