PostHog · Schema

EmbeddingRecord

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
document_id string
document_type string
model_name object
product string
rendering string
timestamp string
View JSON Schema on GitHub

JSON Schema

posthog-embeddingrecord-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EmbeddingRecord",
  "title": "EmbeddingRecord",
  "additionalProperties": false,
  "properties": {
    "document_id": {
      "title": "Document Id",
      "type": "string"
    },
    "document_type": {
      "title": "Document Type",
      "type": "string"
    },
    "model_name": {
      "$ref": "#/components/schemas/EmbeddingModelName"
    },
    "product": {
      "title": "Product",
      "type": "string"
    },
    "rendering": {
      "title": "Rendering",
      "type": "string"
    },
    "timestamp": {
      "format": "date-time",
      "title": "Timestamp",
      "type": "string"
    }
  },
  "required": [
    "document_id",
    "document_type",
    "model_name",
    "product",
    "rendering",
    "timestamp"
  ],
  "type": "object"
}