{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/airbyte/refs/heads/main/json-schema/airbyte-field-renaming-mapper-configuration-schema.json", "title": "FieldRenamingMapperConfiguration", "description": "FieldRenamingMapperConfiguration schema from Airbyte API", "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" ] }