12345678910111213141516171819202122232425262728293031323334 |
- {
- "GroupList": {
- "type": "object",
- "required": [
- "totalResults",
- "itemsPerPage",
- "startIndex",
- "Resources"
- ],
- "properties": {
- "schemas": {
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "totalResults": {
- "type": "integer"
- },
- "itemsPerPage": {
- "type": "integer"
- },
- "startIndex": {
- "type": "integer"
- },
- "Resources": {
- "type": "array",
- "items": {
- "$ref": "group.json#/Group"
- }
- }
- }
- }
- }
|