{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Message", "title": "Message", "type": "object", "properties": { "id": { "type": "string" }, "message": { "type": "string" }, "type": { "type": "string", "enum": [ "NOTE", "EMAIL", "SYSTEM" ] }, "createdOn": { "type": "string", "format": "date-time" }, "createdBy": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" } } } } }