Invalid Cron Pattern

APIs.ioEngineeringPlatform

Properties

Name Type Description
error object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-monitors400errorinvalidcronpattern-schema.json Raw ↑
{
  "$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": "* * * * *"
            }
          }
        }
      }
    }
  }
}