{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EncryptionMapperRSAConfiguration", "title": "Encryption - RSA", "type": "object", "properties": { "algorithm": { "$ref": "#/components/schemas/EncryptionMapperAlgorithm" }, "fieldNameSuffix": { "type": "string" }, "publicKey": { "type": "string" }, "targetField": { "type": "string" } }, "required": [ "algorithm", "publicKey", "targetField", "fieldNameSuffix" ], "x-speakeasy-component": true }