{
"$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"
]
}