{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/monitors400ErrorInvalidCronPattern", "title": "Invalid Cron Pattern", "type": "object", "properties": { "error": { "type": "object", "properties": { "name": { "type": "string", "description": "The error name.", "example": "cronPatternNotAllowedError" }, "message": { "type": "string", "description": "The error message.", "example": "Invalid cron pattern. Enter a valid cron pattern, such as \"0 17 * * *\"" }, "details": { "type": "object", "description": "Information about the error.", "properties": { "pattern": { "type": "string", "description": "The invalid cron pattern.", "example": "* * * * *" } } } } } } }