About this endpoint
What it does
Describes a cron expression by breaking it into labeled field descriptions. It accepts the cron expression as a query parameter and returns a JSON object containing the original expression and a fields object with descriptions for the individual cron parts.
Query Parameter(s)
| Attribute | Type | Mandatory | Description |
|---|---|---|---|
| expression | String | Yes | Cron expression to describe. |
Response
Returns a JSON object with an expression string field and a fields object field. The fields object contains string descriptions for the cron components: hour, month, minute, day_of_week, and day_of_month.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| expression | String | No | The cron expression that was described. |
| fields | Object | No | Labeled descriptions for cron fields. |
| fields.hour | String | No | Description of the hour field. |
| fields.month | String | No | Description of the month field. |
| fields.minute | String | No | Description of the minute field. |
| fields.day_of_week | String | No | Description of the day-of-week field. |
| fields.day_of_month | String | No | Description of the day-of-month field. |