{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/docspring/main/json-schema/template_add_fields_response.json", "title": "template_add_fields_response", "type": "object", "properties": { "status": { "type": "string", "enum": [ "success", "error" ] }, "errors": { "type": "array", "items": { "type": "string" } }, "new_field_ids": { "type": "array", "items": { "type": "integer" } } }, "required": [ "status" ], "additionalProperties": false }