diff --git a/docs/platforms/javascript/common/crons/index.mdx b/docs/platforms/javascript/common/crons/index.mdx index 38a780af628d5..85015c76c6c04 100644 --- a/docs/platforms/javascript/common/crons/index.mdx +++ b/docs/platforms/javascript/common/crons/index.mdx @@ -166,7 +166,7 @@ This is an object specifying a `schedule_type` of either `crontab` or `interval` ```json {"type": "crontab", "value": "0 * * * *"} -{"type": "interval", "value": "2", "unit": "hour"} +{"type": "interval", "value": 2, "unit": "hour"} ``` `checkin_margin`: diff --git a/docs/product/monitors-and-alerts/monitors/crons/getting-started/http/index.mdx b/docs/product/monitors-and-alerts/monitors/crons/getting-started/http/index.mdx index 8df3b86125ca8..f87c0608e0e55 100644 --- a/docs/product/monitors-and-alerts/monitors/crons/getting-started/http/index.mdx +++ b/docs/product/monitors-and-alerts/monitors/crons/getting-started/http/index.mdx @@ -133,7 +133,7 @@ This is an object specifying a `schedule_type` of either `crontab` or `interval` ```json {"type": "crontab", "value": "0 * * * *"} -{"type": "interval", "value": "2", "unit": "hour"} +{"type": "interval", "value": 2, "unit": "hour"} ``` `checkin_margin`: diff --git a/includes/javascript-crons-upsert.mdx b/includes/javascript-crons-upsert.mdx index d944444aeb577..4ea6d173c1bc1 100644 --- a/includes/javascript-crons-upsert.mdx +++ b/includes/javascript-crons-upsert.mdx @@ -70,7 +70,7 @@ The schedule representation for your monitor, either `crontab` or `interval`. Th ```json {"type": "crontab", "value": "0 * * * *"} -{"type": "interval", "value": "2", "unit": "hour"} +{"type": "interval", "value": 2, "unit": "hour"} ``` `checkinMargin`: