{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-panorama/refs/heads/main/json-schema/openapi-create-job-for-devices-request-schema.json", "title": "CreateJobForDevicesRequest", "description": "CreateJobForDevicesRequest schema from Amazon Panorama", "type": "object", "properties": { "DeviceIds": { "allOf": [ { "$ref": "#/components/schemas/DeviceIdList" }, { "description": "ID of target device." } ] }, "DeviceJobConfig": { "allOf": [ { "$ref": "#/components/schemas/DeviceJobConfig" }, { "description": "Configuration settings for a software update job." } ] }, "JobType": { "allOf": [ { "$ref": "#/components/schemas/JobType" }, { "description": "The type of job to run." } ] } }, "required": [ "DeviceIds", "JobType" ] }