Amazon IoT Greengrass · JSON Structure

Iot Greengrass Component Version List Structure

ComponentVersionList schema

Type: array Properties: 0
Edge ComputingIoTLambdaMachine LearningReal-Time Processing

ComponentVersionList is a JSON Structure definition published by Amazon IoT Greengrass. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

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-iot-greengrass/refs/heads/main/json-structure/iot-greengrass-component-version-list-structure.json",
  "name": "ComponentVersionList",
  "description": "ComponentVersionList schema",
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "componentName": {
        "allOf": [
          {
            "$ref": "#/components/schemas/ComponentNameString"
          },
          {
            "description": "The name of the component."
          }
        ]
      },
      "componentVersion": {
        "allOf": [
          {
            "$ref": "#/components/schemas/ComponentVersionString"
          },
          {
            "description": "The version of the component."
          }
        ]
      },
      "arn": {
        "allOf": [
          {
            "$ref": "#/components/schemas/NonEmptyString"
          },
          {
            "description": "The <a href=\"https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html\">ARN</a> of the component version."
          }
        ]
      }
    },
    "description": "Contains information about a component version in a list."
  }
}