{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BatchExportDestination", "title": "BatchExportDestination", "type": "object", "description": "Serializer for an BatchExportDestination model.", "properties": { "type": { "allOf": [ { "$ref": "#/components/schemas/BatchExportDestinationTypeEnum" } ], "description": "A choice of supported BatchExportDestination types.\n\n* `S3` - S3\n* `Snowflake` - Snowflake\n* `Postgres` - Postgres\n* `Redshift` - Redshift\n* `BigQuery` - Bigquery\n* `Databricks` - Databricks\n* `AzureBlob` - Azure Blob\n* `Workflows` - Workflows\n* `HTTP` - Http\n* `NoOp` - Noop" }, "config": { "description": "A JSON field to store all configuration parameters required to access a BatchExportDestination." }, "integration": { "type": "integer", "nullable": true }, "integration_id": { "type": "integer", "writeOnly": true, "nullable": true } }, "required": [ "type" ] }