Amazon Panorama · Schema
DeviceJob
A job that runs on a device.
CamerasComputer VisionEdge MLIndustrial IoT
Properties
| Name | Type | Description |
|---|---|---|
| CreatedTime | object | |
| DeviceId | object | |
| DeviceName | object | |
| JobId | object | |
| JobType | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-panorama/refs/heads/main/json-schema/openapi-device-job-schema.json",
"title": "DeviceJob",
"description": "A job that runs on a device.",
"type": "object",
"properties": {
"CreatedTime": {
"allOf": [
{
"$ref": "#/components/schemas/CreatedTime"
},
{
"description": "When the job was created."
}
]
},
"DeviceId": {
"allOf": [
{
"$ref": "#/components/schemas/DeviceId"
},
{
"description": "The ID of the target device."
}
]
},
"DeviceName": {
"allOf": [
{
"$ref": "#/components/schemas/DeviceName"
},
{
"description": "The name of the target device"
}
]
},
"JobId": {
"allOf": [
{
"$ref": "#/components/schemas/JobId"
},
{
"description": "The job's ID."
}
]
},
"JobType": {
"allOf": [
{
"$ref": "#/components/schemas/JobType"
},
{
"description": "The job's type."
}
]
}
}
}