Amazon Panorama · JSON Structure

Openapi Package Object Structure

A package object.

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

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

Properties

Name PackageVersion PatchVersion

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-package-object-structure.json",
  "name": "PackageObject",
  "description": "A package object.",
  "type": "object",
  "properties": {
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NodePackageName"
        },
        {
          "description": "The object's name."
        }
      ]
    },
    "PackageVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NodePackageVersion"
        },
        {
          "description": "The object's package version."
        }
      ]
    },
    "PatchVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NodePackagePatchVersion"
        },
        {
          "description": "The object's patch version."
        }
      ]
    }
  },
  "required": [
    "Name",
    "PackageVersion",
    "PatchVersion"
  ]
}