PostHog · Schema

DataModelingJob

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string
saved_query_id string
status object
rows_materialized integer
error string
created_at string
last_run_at string
workflow_id string
workflow_run_id string
rows_expected integer Total rows expected to be materialized
View JSON Schema on GitHub

JSON Schema

posthog-datamodelingjob-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DataModelingJob",
  "title": "DataModelingJob",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "readOnly": true
    },
    "saved_query_id": {
      "type": "string",
      "format": "uuid",
      "nullable": true,
      "readOnly": true
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DataModelingJobStatusEnum"
        }
      ],
      "readOnly": true
    },
    "rows_materialized": {
      "type": "integer",
      "readOnly": true
    },
    "error": {
      "type": "string",
      "readOnly": true,
      "nullable": true
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "last_run_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "workflow_id": {
      "type": "string",
      "readOnly": true,
      "nullable": true
    },
    "workflow_run_id": {
      "type": "string",
      "readOnly": true,
      "nullable": true
    },
    "rows_expected": {
      "type": "integer",
      "readOnly": true,
      "nullable": true,
      "description": "Total rows expected to be materialized"
    }
  },
  "required": [
    "created_at",
    "error",
    "id",
    "last_run_at",
    "rows_expected",
    "rows_materialized",
    "saved_query_id",
    "status",
    "workflow_id",
    "workflow_run_id"
  ]
}