{ "$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." } } }