{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "AITemplateCreate", "description": "", "type": "object", "properties": { "ai_prompt": { "type": "string", "writeOnly": true }, "template_title": { "type": "string", "writeOnly": true, "maxLength": 120 }, "template_description": { "type": "string", "writeOnly": true, "nullable": true, "maxLength": 255 }, "ai_response": { "type": "string", "readOnly": true } }, "required": [ "ai_prompt", "ai_response", "template_title" ] }