Airbyte · Schema

Field Renaming

Data IntegrationETLELTOpen SourceData PipelineConnectorsData

Properties

Name Type Description
newFieldName string The new name for the field after renaming.
originalFieldName string The current name of the field to rename.
View JSON Schema on GitHub

JSON Schema

airbyte-fieldrenamingmapperconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FieldRenamingMapperConfiguration",
  "title": "Field Renaming",
  "type": "object",
  "properties": {
    "newFieldName": {
      "type": "string",
      "title": "New Field Name",
      "description": "The new name for the field after renaming."
    },
    "originalFieldName": {
      "type": "string",
      "title": "Original Field Name",
      "description": "The current name of the field to rename."
    }
  },
  "required": [
    "newFieldName",
    "originalFieldName"
  ],
  "x-speakeasy-component": true
}