healthchecks/hc/api/schemas.py

15 lines
443 B
Python

check = {
"type": "object",
"properties": {
"name": {"type": "string"},
"tags": {"type": "string"},
"timeout": {"type": "number", "minimum": 60, "maximum": 604800},
"grace": {"type": "number", "minimum": 60, "maximum": 604800},
"channels": {"type": "string"},
"unique": {
"type": "array",
"items": {"enum": ["name", "tags", "timeout", "grace"]}
}
}
}