{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TemplateUpdate", "title": "TemplateUpdate", "type": "object", "description": "Request body for updating a REST module template", "required": [ "uri_prefix", "priority", "etag_type" ], "properties": { "uri_prefix": { "type": "string", "description": "URI pattern for the template" }, "priority": { "type": "integer", "description": "Priority for evaluating the template (0-9)", "minimum": 0, "maximum": 9 }, "etag_type": { "type": "string", "description": "Type of entity tag generation", "enum": [ "HASH", "QUERY", "NONE" ] }, "etag_query": { "type": "string", "description": "SQL query for entity tag generation when etag_type is QUERY" }, "comments": { "type": "string", "description": "Descriptive comment for the template" } } }