PostHog · Schema

LLMSkillFileRename

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
old_path string Current file path to rename.
new_path string New file path. Must not already exist in the skill.
base_version integer Latest version you are editing from. If provided, the request fails with 409 when another write has landed in the meantime.
View JSON Schema on GitHub

JSON Schema

posthog-llmskillfilerename-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LLMSkillFileRename",
  "title": "LLMSkillFileRename",
  "type": "object",
  "properties": {
    "old_path": {
      "type": "string",
      "description": "Current file path to rename.",
      "maxLength": 500
    },
    "new_path": {
      "type": "string",
      "description": "New file path. Must not already exist in the skill.",
      "maxLength": 500
    },
    "base_version": {
      "type": "integer",
      "minimum": 1,
      "description": "Latest version you are editing from. If provided, the request fails with 409 when another write has landed in the meantime."
    }
  },
  "required": [
    "new_path",
    "old_path"
  ]
}