{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/monitors400ErrorInvalidTimezone", "title": "Invalid Timezone", "type": "object", "properties": { "error": { "type": "object", "properties": { "name": { "type": "string", "description": "The error name.", "example": "invalidParamsError" }, "message": { "type": "string", "description": "The error message.", "example": "The request had invalid parameters" }, "details": { "type": "object", "description": "Information about the error.", "properties": { "param": { "type": "string", "description": "The invalid parameter.", "example": "schedule.timezone" } } } } } } }