Auth0 · Schema
DailyStats
AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
Properties
| Name | Type | Description |
|---|---|---|
| date | string | Date these events occurred in ISO 8601 format. |
| logins | integer | Number of logins on this date. |
| signups | integer | Number of signups on this date. |
| leaked_passwords | integer | Number of breached-password detections on this date (subscription required). |
| updated_at | string | Date and time this stats entry was last updated in ISO 8601 format. |
| created_at | string | Approximate date and time the first event occurred in ISO 8601 format. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DailyStats",
"title": "DailyStats",
"type": "object",
"additionalProperties": true,
"properties": {
"date": {
"type": "string",
"description": "Date these events occurred in ISO 8601 format.",
"default": "2014-01-01T00:00:00.000Z"
},
"logins": {
"type": "integer",
"description": "Number of logins on this date.",
"default": 100
},
"signups": {
"type": "integer",
"description": "Number of signups on this date.",
"default": 100
},
"leaked_passwords": {
"type": "integer",
"description": "Number of breached-password detections on this date (subscription required).",
"default": 100
},
"updated_at": {
"type": "string",
"description": "Date and time this stats entry was last updated in ISO 8601 format.",
"default": "2014-01-01T02:00:00.000Z"
},
"created_at": {
"type": "string",
"description": "Approximate date and time the first event occurred in ISO 8601 format.",
"default": "2014-01-01T20:00:00.000Z"
}
}
}