group_list.json 555 B

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