Amazon Snow Family · Schema

DependentService

The name and version of the service dependant on the requested service.

Data MigrationEdge ComputingOffline TransferPhysical Appliance

Properties

Name Type Description
ServiceName object
ServiceVersion object
View JSON Schema on GitHub

JSON Schema

amazon-snow-family-dependent-service-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-snow-family/refs/heads/main/json-schema/amazon-snow-family-dependent-service-schema.json",
  "title": "DependentService",
  "description": "The name and version of the service dependant on the requested service.",
  "type": "object",
  "properties": {
    "ServiceName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ServiceName"
        },
        {
          "description": "The name of the dependent service."
        }
      ]
    },
    "ServiceVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ServiceVersion"
        },
        {
          "description": "The version of the dependent service."
        }
      ]
    }
  }
}