{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "https://schema.manifest.build/definitions/middlewares/middleware-schema.json",
    "title": "Middleware Schema",
    "description": "A middleware related to an event the entity records. Doc: https://manifest.build/docs/middlewares",
    "type": "object",
    "properties": {
        "handler": {
            "description": "The name of the handler function for this middleware. Doc: https://manifest.build/docs/middlewares#handlers",
            "type": "string"
        }
    },
    "required": ["handler"],
    "additionalProperties": false
}
