PostHog · Schema

LLMPromptOutlineEntry

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
level integer Markdown heading level (1-6).
text string Heading text with markdown link syntax preserved.
View JSON Schema on GitHub

JSON Schema

posthog-llmpromptoutlineentry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LLMPromptOutlineEntry",
  "title": "LLMPromptOutlineEntry",
  "type": "object",
  "properties": {
    "level": {
      "type": "integer",
      "maximum": 6,
      "minimum": 1,
      "description": "Markdown heading level (1-6)."
    },
    "text": {
      "type": "string",
      "description": "Heading text with markdown link syntax preserved."
    }
  },
  "required": [
    "level",
    "text"
  ]
}