{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Encryption", "title": "Encryption", "type": "object", "properties": { "type": { "type": "string", "enum": [ "NONE", "AWS_SSE_S3", "AWS_SSE_KMS", "GCS_SSE_KMS" ], "description": "Specifies the encryption type used.", "example": "NONE" }, "kms_key_id": { "type": "string", "description": "Specifies the ID for the Cloud KMS-managed key used to encrypt files written to the bucket.", "example": "500123" } }, "required": [ "type" ] }