{ "$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-kms-key-schema.json", "title": "KmsKey", "description": "AWS Key Management Service (KMS) Key.", "type": "object", "properties": { "kmsAliasArn": { "allOf": [ { "$ref": "#/components/schemas/KeyAliasArn" }, { "description": "KMS Alias Arn." } ] }, "kmsKeyArn": { "allOf": [ { "$ref": "#/components/schemas/KeyArn" }, { "description": "KMS Key Arn." } ] } } }