{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Message", "title": "Message", "type": "object", "properties": { "severity": { "type": "string", "enum": [ "SUCCESS", "WARNING", "FAILURE" ] }, "field": { "type": "string" }, "message": { "type": "string" } } }