Airbyte · JSON Structure

Airbyte Hashing Mapper Configuration Structure

HashingMapperConfiguration schema from Airbyte API

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

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

Properties

fieldNameSuffix method 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-hashing-mapper-configuration-structure.json",
  "name": "HashingMapperConfiguration",
  "description": "HashingMapperConfiguration schema from Airbyte API",
  "type": "object",
  "properties": {
    "fieldNameSuffix": {
      "type": "string",
      "title": "Field name suffix",
      "description": "The suffix to append to the field name after hashing."
    },
    "method": {
      "type": "string",
      "enum": [
        "MD2",
        "MD5",
        "SHA-1",
        "SHA-224",
        "SHA-256",
        "SHA-384",
        "SHA-512"
      ],
      "title": "Hashing method",
      "description": "The hashing algorithm to use."
    },
    "targetField": {
      "type": "string",
      "title": "Original Field Name",
      "description": "The name of the field to be hashed."
    }
  },
  "required": [
    "fieldNameSuffix",
    "method",
    "targetField"
  ]
}