A simple string/type response for returning information.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Message", "title": "Message", "type": "object", "properties": { "text": { "type": "string", "minLength": 1, "maxLength": 500 }, "type": { "type": "string", "enum": [ "INFO", "WARNING", "ERROR" ] } }, "required": [ "text", "type" ], "description": "A simple string/type response for returning information.", "x-internal": false }