{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/docspring/main/json-schema/template_delete_response.json", "title": "template_delete_response", "type": "object", "properties": { "status": { "type": "string", "enum": [ "success", "error" ] }, "errors": { "type": "array", "items": { "type": "string" } }, "latest_version": { "type": "string", "nullable": true }, "versions": { "type": "array", "items": { "type": "object", "properties": { "version": { "type": "string" }, "description": { "type": "string", "nullable": true }, "published_at": { "type": "string" }, "published_by_id": { "type": "string" } }, "required": [ "version", "published_at", "published_by_id" ], "additionalProperties": false } } }, "required": [ "status" ], "additionalProperties": false }