{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateEncryptionKeyPublicWrappingResponseContent", "title": "CreateEncryptionKeyPublicWrappingResponseContent", "type": "object", "additionalProperties": true, "required": [ "public_key", "algorithm" ], "properties": { "public_key": { "type": "string", "description": "Public wrapping key in PEM format" }, "algorithm": { "$ref": "#/components/schemas/EncryptionKeyPublicWrappingAlgorithm" } } }