group_list.json 785 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "GroupList": {
  3. "type": "object",
  4. "required": [
  5. "totalResults",
  6. "itemsPerPage",
  7. "startIndex",
  8. "Resources"
  9. ],
  10. "properties": {
  11. "schemas": {
  12. "type": "array",
  13. "items": {
  14. "type": "string"
  15. }
  16. },
  17. "totalResults": {
  18. "type": "integer"
  19. },
  20. "itemsPerPage": {
  21. "type": "integer"
  22. },
  23. "startIndex": {
  24. "type": "integer"
  25. },
  26. "Resources": {
  27. "type": "array",
  28. "items": {
  29. "$ref": "group.json#/Group"
  30. }
  31. }
  32. }
  33. }
  34. }