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