{ "$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 ARN of the component version." } ] } }, "description": "Contains information about a component version in a list." } }