Airbyte · JSON Structure

Airbyte Encryption Mapper Aes Configuration Structure

EncryptionMapperAESConfiguration schema from Airbyte API

Type: object Properties: 6 Required: 6
Data IntegrationETLELTOpen SourceData PipelineConnectorsData

EncryptionMapperAESConfiguration is a JSON Structure definition published by Airbyte, describing 6 properties, of which 6 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

algorithm fieldNameSuffix key mode padding targetField

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/airbyte/refs/heads/main/json-structure/airbyte-encryption-mapper-aes-configuration-structure.json",
  "name": "EncryptionMapperAESConfiguration",
  "description": "EncryptionMapperAESConfiguration schema from Airbyte API",
  "type": "object",
  "properties": {
    "algorithm": {
      "$ref": "#/components/schemas/EncryptionMapperAlgorithm"
    },
    "fieldNameSuffix": {
      "type": "string"
    },
    "key": {
      "type": "string",
      "x-speakeasy-param-sensitive": true
    },
    "mode": {
      "type": "string",
      "enum": [
        "CBC",
        "CFB",
        "OFB",
        "CTR",
        "GCM",
        "ECB"
      ]
    },
    "padding": {
      "type": "string",
      "enum": [
        "NoPadding",
        "PKCS5Padding"
      ]
    },
    "targetField": {
      "type": "string"
    }
  },
  "required": [
    "algorithm",
    "key",
    "mode",
    "padding",
    "targetField",
    "fieldNameSuffix"
  ]
}