Airbyte · Schema

NOT

Data IntegrationETLELTOpen SourceData PipelineConnectorsData

Properties

Name Type Description
conditions array Conditions to evaluate with the NOT operator.
type object
View JSON Schema on GitHub

JSON Schema

airbyte-rowfilteringoperationnot-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RowFilteringOperationNot",
  "title": "NOT",
  "type": "object",
  "required": [
    "conditions",
    "type"
  ],
  "properties": {
    "conditions": {
      "title": "Sub-Conditions (NOT)",
      "description": "Conditions to evaluate with the NOT operator.",
      "minItems": 1,
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/RowFilteringOperation"
      }
    },
    "type": {
      "$ref": "#/components/schemas/RowFilteringOperationType"
    }
  },
  "x-speakeasy-component": true
}