Airbyte · Schema

EQUAL

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-rowfilteringoperationequal-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RowFilteringOperationEqual",
  "title": "EQUAL",
  "type": "object",
  "required": [
    "comparisonValue",
    "fieldName",
    "type"
  ],
  "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"
    }
  },
  "x-speakeasy-component": true
}