{
    "$id": "http://soundon.api/notification/post",
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "required": [
        "userId",
        "level",
        "content"
    ],
    "properties": {
        "userId": {
            "type": "string"
        },
        "level": {
            "type": "string",
            "enum": ["info", "warn", "error"]
        },
        "content": {
            "type": "string"
        },
        "title": {
            "type": "string"
        },
        "userInfo": {
            "type": "object"
        }
    }
}
