Amazon Panorama · Schema

Job

A job for a device.

CamerasComputer VisionEdge MLIndustrial IoT

Properties

Name Type Description
DeviceId object
JobId object
View JSON Schema on GitHub

JSON Schema

openapi-job-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-panorama/refs/heads/main/json-schema/openapi-job-schema.json",
  "title": "Job",
  "description": "A job for a device.",
  "type": "object",
  "properties": {
    "DeviceId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeviceId"
        },
        {
          "description": "The target device's ID."
        }
      ]
    },
    "JobId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/JobId"
        },
        {
          "description": "The job's ID."
        }
      ]
    }
  }
}