healthchecks/hc/api/schemas.py

10 lines
293 B
Python

check = {
"properties": {
"name": {"type": "string"},
"tags": {"type": "string"},
"timeout": {"type": "number", "minimum": 60, "maximum": 604800},
"grace": {"type": "number", "minimum": 60, "maximum": 604800},
"channels": {"type": "string"}
}
}