1234567891011121314151617181920212223242526272829 |
- {
- "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"
- }
- }
- }
- }
- }
|