{ "$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-response-plan-summary-list-schema.json", "title": "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." } }