Skip to content

Commit

Permalink
fix(uptime): Use ms for interval / timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
evanpurkhiser committed Jun 25, 2024
1 parent 1bc1c5c commit 0550003
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions schemas/uptime-configs.v1.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"definitions": {
"CheckInterval": {
"title": "check_interval",
"description": "The interval between each check run in seconds.",
"description": "The interval between each check run in milliseconds.",
"type": "number",
"enum": [60, 300, 600, 1200, 1800, 3600]
},
Expand All @@ -19,11 +19,11 @@
"description": "UUID of the subscription that this check config represents.",
"type": "string"
},
"interval": {
"interval_ms": {
"$ref": "#/definitions/CheckInterval"
},
"timeout": {
"description": "The total time we will allow to make the request in seconds.",
"timeout_ms": {
"description": "The total time we will allow to make the request in milliseconds.",
"type": "number"
},
"url": {
Expand Down

0 comments on commit 0550003

Please sign in to comment.