Amazon Panorama · JSON Structure

Openapi Node Interface Structure

A node interface.

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

NodeInterface 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

Inputs Outputs

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-interface-structure.json",
  "name": "NodeInterface",
  "description": "A node interface.",
  "type": "object",
  "properties": {
    "Inputs": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InputPortList"
        },
        {
          "description": "The node interface's inputs."
        }
      ]
    },
    "Outputs": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OutputPortList"
        },
        {
          "description": "The node interface's outputs."
        }
      ]
    }
  },
  "required": [
    "Inputs",
    "Outputs"
  ]
}