Amazon Panorama · Schema
ReportedRuntimeContextState
An application instance's state.
CamerasComputer VisionEdge MLIndustrial IoT
Properties
| Name | Type | Description |
|---|---|---|
| DesiredState | object | |
| DeviceReportedStatus | object | |
| DeviceReportedTime | object | |
| RuntimeContextName | 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-reported-runtime-context-state-schema.json",
"title": "ReportedRuntimeContextState",
"description": "An application instance's state.",
"type": "object",
"properties": {
"DesiredState": {
"allOf": [
{
"$ref": "#/components/schemas/DesiredState"
},
{
"description": "The application's desired state."
}
]
},
"DeviceReportedStatus": {
"allOf": [
{
"$ref": "#/components/schemas/DeviceReportedStatus"
},
{
"description": "The application's reported status."
}
]
},
"DeviceReportedTime": {
"allOf": [
{
"$ref": "#/components/schemas/TimeStamp"
},
{
"description": "When the device reported the application's state."
}
]
},
"RuntimeContextName": {
"allOf": [
{
"$ref": "#/components/schemas/RuntimeContextName"
},
{
"description": "The device's name."
}
]
}
},
"required": [
"DesiredState",
"DeviceReportedStatus",
"DeviceReportedTime",
"RuntimeContextName"
]
}