Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. "campaign": {
  2. "type": "object",
  3. "properties": {
  4. "id": {
  5. "type": "integer",
  6. "minimum": 1,
  7. "maximum": 2147483647
  8. },
  9. "name": {
  10. "type": "string",
  11. "minLength": 1,
  12. "maxLength": 128
  13. },
  14. "start": {
  15. "type": "integer",
  16. "minimum": 0,
  17. "maximum": 2147483647,
  18. "description": "Время начала рекламной акции. Unix timestamp"
  19. },
  20. "end": {
  21. "type": "integer",
  22. "minimum": 0,
  23. "maximum": 2147483647,
  24. "description": "Время завершения рекламной акции. Unix timestamp"
  25. }
  26. },
  27. "additionalProperties": false,
  28. "required": [
  29. "id",
  30. "name",
  31. "start",
  32. "end"
  33. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement