{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediatailor/refs/heads/main/json-schema/mediatailor-api-alert-schema.json", "title": "Alert", "description": "Alert configuration parameters.", "type": "object", "properties": { "AlertCode": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "description": "The code for the alert. For example, NOT_PROCESSED." } ] }, "AlertMessage": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "description": "If an alert is generated for a resource, an explanation of the reason for the alert." } ] }, "LastModifiedTime": { "allOf": [ { "$ref": "#/components/schemas/__timestampUnix" }, { "description": "The timestamp when the alert was last modified." } ] }, "RelatedResourceArns": { "allOf": [ { "$ref": "#/components/schemas/__listOf__string" }, { "description": "The Amazon Resource Names (ARNs) related to this alert." } ] }, "ResourceArn": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "description": "The Amazon Resource Name (ARN) of the resource." } ] } }, "required": [ "AlertCode", "AlertMessage", "LastModifiedTime", "RelatedResourceArns", "ResourceArn" ] }