Airbyte · Schema

RowFilteringOperationEqual

RowFilteringOperationEqual schema from Airbyte API

Data IntegrationETLELTOpen SourceData PipelineConnectorsData

Properties

Name Type Description
comparisonValue string The value to compare the field against.
fieldName string The name of the field to apply the operation on.
type object
View JSON Schema on GitHub

JSON Schema

airbyte-row-filtering-operation-equal-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/airbyte/refs/heads/main/json-schema/airbyte-row-filtering-operation-equal-schema.json",
  "title": "RowFilteringOperationEqual",
  "description": "RowFilteringOperationEqual schema from Airbyte API",
  "type": "object",
  "properties": {
    "comparisonValue": {
      "type": "string",
      "title": "Comparison Value",
      "description": "The value to compare the field against."
    },
    "fieldName": {
      "type": "string",
      "title": "Field Name",
      "description": "The name of the field to apply the operation on."
    },
    "type": {
      "$ref": "#/components/schemas/RowFilteringOperationType"
    }
  },
  "required": [
    "comparisonValue",
    "fieldName",
    "type"
  ]
}