{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "title": "NotificationTemplate",
    "type": "object",
    "properties": {
        "id": { "type": "string", "format": "uuid" },
        "companyId": { "type": "string", "format": "uuid" },
        "name": { "type": "string" },
        "type": { "type": "string", "enum": ["PAYMENT_UPLOADED", "PAYMENT_APPROVED", "PAYMENT_REJECTED", "DEBT_OVERDUE"] },
        "subject": { "type": "string" },
        "bodyPlain": { "type": "string" },
        "bodyHtml": { "type": "string" },
        "channel": { "type": "string", "enum": ["EMAIL", "WHATSAPP", "SMS"] },
        "isDefault": { "type": "boolean" },
        "active": { "type": "boolean" },
        "createdAt": { "type": "string", "format": "date-time" },
        "createdBy": { "type": "string", "format": "uuid" },
        "updatedAt": { "type": "string", "format": "date-time" },
        "updatedBy": { "type": "string", "format": "uuid" },
        "deletedAt": { "type": "string", "format": "date-time" },
        "deletedBy": { "type": "string", "format": "uuid" }
    },
    "required": [
        "id",
        "companyId",
        "name",
        "type",
        "subject",
        "bodyHtml",
        "channel",
        "isDefault",
        "active",
        "createdAt",
        "createdBy"
    ]
}
