{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-panorama/refs/heads/main/json-schema/openapi-ota-job-config-schema.json", "title": "OTAJobConfig", "description": "An over-the-air update (OTA) job configuration.", "type": "object", "properties": { "AllowMajorVersionUpdate": { "allOf": [ { "$ref": "#/components/schemas/Boolean" }, { "description": "Whether to apply the update if it is a major version change." } ] }, "ImageVersion": { "allOf": [ { "$ref": "#/components/schemas/ImageVersion" }, { "description": "The target version of the device software." } ] } }, "required": [ "ImageVersion" ] }