service-hook.json 516 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "ServiceHook": {
  3. "type": "object",
  4. "required": ["dateCreated", "events", "id", "secret", "status", "url"],
  5. "properties": {
  6. "dateCreated": {
  7. "type": "string"
  8. },
  9. "events": {
  10. "type": "array",
  11. "items": {
  12. "type": "string"
  13. }
  14. },
  15. "id": {
  16. "type": "string"
  17. },
  18. "secret": {
  19. "type": "string"
  20. },
  21. "status": {
  22. "type": "string"
  23. },
  24. "url": {
  25. "type": "string"
  26. }
  27. }
  28. }
  29. }