{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediaconvert/refs/heads/main/json-schema/mediaconvert-api-job-messages-schema.json", "title": "JobMessages", "description": "Provides messages from the service about jobs that you have already successfully submitted.", "type": "object", "properties": { "Info": { "allOf": [ { "$ref": "#/components/schemas/__listOf__string" }, { "xml": { "name": "info" }, "description": "List of messages that are informational only and don't indicate a problem with your job." } ] }, "Warning": { "allOf": [ { "$ref": "#/components/schemas/__listOf__string" }, { "xml": { "name": "warning" }, "description": "List of messages that warn about conditions that might cause your job not to run or to fail." } ] } } }