A static encryption key.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EncryptionKeyStatic", "title": "EncryptionKeyStatic", "description": "A static encryption key.\n", "type": "object", "properties": { "type": { "type": "string", "const": "static" }, "key": { "$ref": "#/components/schemas/EncryptionKeyStaticReference" } }, "required": [ "type", "key" ] }