Amazon Panorama · JSON Structure

Openapi Reported Runtime Context State Structure

An application instance's state.

Type: object Properties: 4 Required: 4
CamerasComputer VisionEdge MLIndustrial IoT

ReportedRuntimeContextState is a JSON Structure definition published by Amazon Panorama, describing 4 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

DesiredState DeviceReportedStatus DeviceReportedTime RuntimeContextName

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-panorama/refs/heads/main/json-structure/openapi-reported-runtime-context-state-structure.json",
  "name": "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"
  ]
}