Auth0 · Schema

ListDeviceCredentialsOffsetPaginatedResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
start number
limit number
total number
device_credentials array
View JSON Schema on GitHub

JSON Schema

auth0-listdevicecredentialsoffsetpaginatedresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListDeviceCredentialsOffsetPaginatedResponseContent",
  "title": "ListDeviceCredentialsOffsetPaginatedResponseContent",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "start": {
      "type": "number"
    },
    "limit": {
      "type": "number"
    },
    "total": {
      "type": "number"
    },
    "device_credentials": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DeviceCredential"
      }
    }
  }
}