{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ListRefreshTokensPaginatedResponseContent",
"title": "ListRefreshTokensPaginatedResponseContent",
"type": "object",
"additionalProperties": true,
"properties": {
"tokens": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RefreshTokenResponseContent"
}
},
"next": {
"type": "string",
"description": "A cursor to be used as the \"from\" query parameter for the next page of results."
}
}
}