PostHog · Schema

LLMPromptResolveResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
prompt object
versions array
has_more boolean
View JSON Schema on GitHub

JSON Schema

posthog-llmpromptresolveresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LLMPromptResolveResponse",
  "title": "LLMPromptResolveResponse",
  "type": "object",
  "properties": {
    "prompt": {
      "$ref": "#/components/schemas/LLMPrompt"
    },
    "versions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/LLMPromptVersionSummary"
      }
    },
    "has_more": {
      "type": "boolean"
    }
  },
  "required": [
    "has_more",
    "prompt",
    "versions"
  ]
}