PostHog · Schema

LLMPromptDuplicate

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
new_name string Name for the duplicated prompt. Must be unique and use only letters, numbers, hyphens, and underscores.
View JSON Schema on GitHub

JSON Schema

posthog-llmpromptduplicate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LLMPromptDuplicate",
  "title": "LLMPromptDuplicate",
  "type": "object",
  "properties": {
    "new_name": {
      "type": "string",
      "description": "Name for the duplicated prompt. Must be unique and use only letters, numbers, hyphens, and underscores.",
      "maxLength": 255
    }
  },
  "required": [
    "new_name"
  ]
}