Airbyte · Schema

EncryptionMapperRSAConfiguration

EncryptionMapperRSAConfiguration schema from Airbyte API

Data IntegrationETLELTOpen SourceData PipelineConnectorsData

Properties

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

JSON Schema

airbyte-encryption-mapper-rsa-configuration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/airbyte/refs/heads/main/json-schema/airbyte-encryption-mapper-rsa-configuration-schema.json",
  "title": "EncryptionMapperRSAConfiguration",
  "description": "EncryptionMapperRSAConfiguration schema from Airbyte API",
  "type": "object",
  "properties": {
    "algorithm": {
      "$ref": "#/components/schemas/EncryptionMapperAlgorithm"
    },
    "fieldNameSuffix": {
      "type": "string"
    },
    "publicKey": {
      "type": "string"
    },
    "targetField": {
      "type": "string"
    }
  },
  "required": [
    "algorithm",
    "publicKey",
    "targetField",
    "fieldNameSuffix"
  ]
}