{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PageBeanUserKey", "title": "PageBeanUserKey", "additionalProperties": false, "description": "A page of items.", "properties": { "isLast": { "description": "Whether this is the last page.", "readOnly": true, "type": "boolean" }, "maxResults": { "description": "The maximum number of items that could be returned.", "format": "int32", "readOnly": true, "type": "integer" }, "nextPage": { "description": "If there is another page of results, the URL of the next page.", "format": "uri", "readOnly": true, "type": "string" }, "self": { "description": "The URL of the page.", "format": "uri", "readOnly": true, "type": "string" }, "startAt": { "description": "The index of the first item returned.", "format": "int64", "readOnly": true, "type": "integer" }, "total": { "description": "The number of items returned.", "format": "int64", "readOnly": true, "type": "integer" }, "values": { "description": "The list of items.", "items": { "$ref": "#/components/schemas/UserKey" }, "readOnly": true, "type": "array" } }, "type": "object" }