{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LLMSkillEditOperation", "title": "LLMSkillEditOperation", "type": "object", "properties": { "old": { "type": "string", "description": "Text to find in the target content. Must match exactly once." }, "new": { "type": "string", "description": "Replacement text." } }, "required": [ "new", "old" ] }