Airbyte · Schema

Encryption

Data IntegrationETLELTOpen SourceData PipelineConnectorsData
View JSON Schema on GitHub

JSON Schema

airbyte-encryptionmapperconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EncryptionMapperConfiguration",
  "title": "Encryption",
  "type": "object",
  "oneOf": [
    {
      "$ref": "#/components/schemas/EncryptionMapperRSAConfiguration"
    },
    {
      "$ref": "#/components/schemas/EncryptionMapperAESConfiguration"
    }
  ],
  "discriminator": {
    "propertyName": "algorithm",
    "mapping": {
      "RSA": "#/components/schemas/EncryptionMapperRSAConfiguration",
      "AES": "#/components/schemas/EncryptionMapperAESConfiguration"
    }
  },
  "x-speakeasy-component": true
}