{ "$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" ] }