Amazon Panorama · JSON Structure

Openapi Node Signal Structure

A signal to a camera node to start or stop processing video.

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

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

Properties

NodeInstanceId Signal

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-node-signal-structure.json",
  "name": "NodeSignal",
  "description": "A signal to a camera node to start or stop processing video.",
  "type": "object",
  "properties": {
    "NodeInstanceId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NodeInstanceId"
        },
        {
          "description": "The camera node's name, from the application manifest."
        }
      ]
    },
    "Signal": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NodeSignalValue"
        },
        {
          "description": "The signal value."
        }
      ]
    }
  },
  "required": [
    "NodeInstanceId",
    "Signal"
  ]
}