{ "$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." } ] } } }