ComponentVersion

Version information for agent components.

Data ProcessingIoTSatellite CommunicationsSpace Technology

Properties

Name Type Description
componentType object
versions object
View JSON Schema on GitHub

JSON Schema

ground-station-component-version-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ground-station/refs/heads/main/json-schema/ground-station-component-version-schema.json",
  "title": "ComponentVersion",
  "description": "Version information for agent components.",
  "type": "object",
  "properties": {
    "componentType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ComponentTypeString"
        },
        {
          "description": "Component type."
        }
      ]
    },
    "versions": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VersionStringList"
        },
        {
          "description": "List of versions."
        }
      ]
    }
  },
  "required": [
    "componentType",
    "versions"
  ]
}