You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
443 B

  1. check = {
  2. "type": "object",
  3. "properties": {
  4. "name": {"type": "string"},
  5. "tags": {"type": "string"},
  6. "timeout": {"type": "number", "minimum": 60, "maximum": 604800},
  7. "grace": {"type": "number", "minimum": 60, "maximum": 604800},
  8. "channels": {"type": "string"},
  9. "unique": {
  10. "type": "array",
  11. "items": {"enum": ["name", "tags", "timeout", "grace"]}
  12. }
  13. }
  14. }