PostHog · Schema

LLMSkillOutlineEntry

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

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

JSON Schema

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