PostHog · Schema

LLMSkillFileManifest

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
path string
content_type string
View JSON Schema on GitHub

JSON Schema

posthog-llmskillfilemanifest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LLMSkillFileManifest",
  "title": "LLMSkillFileManifest",
  "type": "object",
  "properties": {
    "path": {
      "type": "string",
      "maxLength": 500
    },
    "content_type": {
      "type": "string",
      "maxLength": 100
    }
  },
  "required": [
    "path"
  ]
}