{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AutoRestResultSet", "title": "AutoRestResultSet", "type": "object", "properties": { "items": { "type": "array", "items": { "type": "object", "additionalProperties": true } }, "hasMore": { "type": "boolean" }, "limit": { "type": "integer" }, "offset": { "type": "integer" }, "count": { "type": "integer" }, "links": { "type": "array", "items": { "type": "object", "properties": { "rel": { "type": "string" }, "href": { "type": "string" } } } } } }