PostHog · Schema
DatabaseSchemaDataWarehouseTable
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| fields | object | |
| format | string | |
| id | string | |
| name | string | |
| row_count | number | |
| schema | object | |
| source | object | |
| type | string | |
| url_pattern | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DatabaseSchemaDataWarehouseTable",
"title": "DatabaseSchemaDataWarehouseTable",
"additionalProperties": false,
"properties": {
"fields": {
"additionalProperties": {
"$ref": "#/components/schemas/DatabaseSchemaField"
},
"title": "Fields",
"type": "object"
},
"format": {
"title": "Format",
"type": "string"
},
"id": {
"title": "Id",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
},
"row_count": {
"default": null,
"title": "Row Count",
"type": "number",
"nullable": true
},
"schema": {
"default": null,
"allOf": [
{
"$ref": "#/components/schemas/DatabaseSchemaSchema"
}
],
"nullable": true
},
"source": {
"default": null,
"allOf": [
{
"$ref": "#/components/schemas/DatabaseSchemaSource"
}
],
"nullable": true
},
"type": {
"default": "data_warehouse",
"title": "Type",
"type": "string",
"enum": [
"data_warehouse"
]
},
"url_pattern": {
"title": "Url Pattern",
"type": "string"
}
},
"required": [
"fields",
"format",
"id",
"name",
"url_pattern"
],
"type": "object"
}