{ "$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-region-info-schema.json", "title": "RegionInfo", "description": "Information about a Amazon Web Services Region in your replication set.", "type": "object", "properties": { "sseKmsKeyId": { "allOf": [ { "$ref": "#/components/schemas/SseKmsKey" }, { "description": "The ID of the KMS key used to encrypt the data in this Amazon Web Services Region." } ] }, "status": { "allOf": [ { "$ref": "#/components/schemas/RegionStatus" }, { "description": "The status of the Amazon Web Services Region in the replication set." } ] }, "statusMessage": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "Information displayed about the status of the Amazon Web Services Region." } ] }, "statusUpdateDateTime": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "The most recent date and time that Incident Manager updated the Amazon Web Services Region's status." } ] } }, "required": [ "status", "statusUpdateDateTime" ] }