Airbyte · Schema

RegionCreateRequest

Data IntegrationETLELTOpen SourceData PipelineConnectorsData

Properties

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

JSON Schema

airbyte-regioncreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RegionCreateRequest",
  "title": "RegionCreateRequest",
  "type": "object",
  "required": [
    "name",
    "organizationId"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "organizationId": {
      "type": "string",
      "format": "uuid"
    },
    "enabled": {
      "type": "boolean"
    }
  },
  "x-speakeasy-entity": "Region",
  "x-speakeasy-param-suppress-computed-diff": true,
  "x-speakeasy-component": true
}