Amazon Incident Manager · JSON Structure

Incident Manager Response Plan Summary Structure

Details of the response plan that are used when creating an incident.

Type: object Properties: 3 Required: 2
AutomationDevOpsIncident ManagementOperations

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

Properties

arn displayName name

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-response-plan-summary-structure.json",
  "name": "ResponsePlanSummary",
  "description": "Details of the response plan that are used when creating an incident.",
  "type": "object",
  "properties": {
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the response plan."
        }
      ]
    },
    "displayName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResponsePlanDisplayName"
        },
        {
          "description": "The human readable name of the response plan. This can include spaces."
        }
      ]
    },
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResponsePlanName"
        },
        {
          "description": "The name of the response plan. This can't include spaces."
        }
      ]
    }
  },
  "required": [
    "arn",
    "name"
  ]
}