PostHog · Schema

WarehouseStatusResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
team_name string
state object
status_message string
ready_at string
failed_at string
View JSON Schema on GitHub

JSON Schema

posthog-warehousestatusresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WarehouseStatusResponse",
  "title": "WarehouseStatusResponse",
  "type": "object",
  "properties": {
    "team_name": {
      "type": "string"
    },
    "state": {
      "$ref": "#/components/schemas/WarehouseStatusResponseStateEnum"
    },
    "status_message": {
      "type": "string"
    },
    "ready_at": {
      "type": "string",
      "format": "date-time",
      "nullable": true
    },
    "failed_at": {
      "type": "string",
      "format": "date-time",
      "nullable": true
    }
  },
  "required": [
    "failed_at",
    "ready_at",
    "state",
    "status_message",
    "team_name"
  ]
}