Airbyte · Schema

DataplaneCreateRequest

Data IntegrationETLELTOpen SourceData PipelineConnectorsData

Properties

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

JSON Schema

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