Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique identifier of the user. |
| name | string | The full name of the user. |
| string | The email address associated with the user account. | |
| gravatar_url | string | The Gravatar URL for the user's profile image. |
| html_url | string | The URL to the user's Bugsnag dashboard profile. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/User",
"title": "User",
"type": "object",
"description": "Represents an authenticated Bugsnag user account.",
"properties": {
"id": {
"type": "string",
"description": "The unique identifier of the user."
},
"name": {
"type": "string",
"description": "The full name of the user."
},
"email": {
"type": "string",
"format": "email",
"description": "The email address associated with the user account."
},
"gravatar_url": {
"type": "string",
"format": "uri",
"description": "The Gravatar URL for the user's profile image."
},
"html_url": {
"type": "string",
"format": "uri",
"description": "The URL to the user's Bugsnag dashboard profile."
}
}
}