RegionResponse schema from Airbyte API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/airbyte/refs/heads/main/json-schema/airbyte-region-response-schema.json", "title": "RegionResponse", "description": "RegionResponse schema from Airbyte API", "type": "object", "properties": { "regionId": { "type": "string", "format": "uuid" }, "name": { "type": "string" }, "organizationId": { "type": "string", "format": "uuid" }, "enabled": { "type": "boolean" }, "createdAt": { "type": "string" }, "updatedAt": { "type": "string" } }, "required": [ "regionId", "name", "organizationId", "enabled", "createdAt", "updatedAt" ] }