{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/monitors400ParamMissing", "title": "Missing Parameter", "type": "object", "properties": { "error": { "type": "object", "properties": { "name": { "type": "string", "description": "The error name.", "example": "paramMissingError" }, "message": { "type": "string", "description": "The error message.", "example": "Parameter is missing in the request." }, "details": { "type": "object", "description": "Information about the error.", "properties": { "param": { "type": "array", "description": "A list of the missing parameters.", "items": { "type": "string", "example": "name" } } } } } } } }