Airbyte · Schema

RegionCreateRequest

RegionCreateRequest schema from Airbyte API

Data IntegrationETLELTOpen SourceData PipelineConnectorsData

Properties

Name Type Description
name string
organizationId string
enabled boolean
View JSON Schema on GitHub

JSON Schema

airbyte-region-create-request-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-region-create-request-schema.json",
  "title": "RegionCreateRequest",
  "description": "RegionCreateRequest schema from Airbyte API",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "organizationId": {
      "type": "string",
      "format": "uuid"
    },
    "enabled": {
      "type": "boolean"
    }
  },
  "required": [
    "name",
    "organizationId"
  ]
}