{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ListUserAuthenticationMethodsOffsetPaginatedResponseContent",
"title": "ListUserAuthenticationMethodsOffsetPaginatedResponseContent",
"type": "object",
"additionalProperties": false,
"properties": {
"start": {
"type": "number",
"description": "Index of the starting record. Derived from the page and per_page parameters."
},
"limit": {
"type": "number",
"description": "Maximum amount of records to return."
},
"total": {
"type": "number",
"description": "Total number of pageable records."
},
"authenticators": {
"type": "array",
"description": "The paginated authentication methods. Returned in this structure when include_totals is true.",
"items": {
"$ref": "#/components/schemas/UserAuthenticationMethod"
}
}
}
}