{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ListUsersOffsetPaginatedResponseContent", "title": "ListUsersOffsetPaginatedResponseContent", "type": "object", "additionalProperties": false, "properties": { "start": { "type": "number" }, "limit": { "type": "number" }, "length": { "type": "number" }, "total": { "type": "number" }, "users": { "type": "array", "items": { "$ref": "#/components/schemas/UserResponseSchema" } } } }