Airbyte · Schema

Encryption - RSA

Data IntegrationETLELTOpen SourceData PipelineConnectorsData

Properties

Name Type Description
algorithm object
fieldNameSuffix string
publicKey string
targetField string
View JSON Schema on GitHub

JSON Schema

airbyte-encryptionmapperrsaconfiguration-schema.json Raw ↑
{
  "$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
}