Amazon Incident Manager · JSON Structure

Incident Manager Response Plan Summary List Structure

ResponsePlanSummaryList schema

Type: array Properties: 0
AutomationDevOpsIncident ManagementOperations

ResponsePlanSummaryList is a JSON Structure definition published by Amazon Incident Manager. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

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-list-structure.json",
  "name": "ResponsePlanSummaryList",
  "description": "ResponsePlanSummaryList schema",
  "type": "array",
  "items": {
    "type": "object",
    "required": [
      "arn",
      "name"
    ],
    "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."
          }
        ]
      }
    },
    "description": "Details of the response plan that are used when creating an incident."
  }
}