bugsnag · Schema
Organization
Represents a Bugsnag organization, the top-level entity containing projects and collaborators.
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique identifier of the organization. |
| name | string | The name of the organization. |
| slug | string | The URL-friendly slug for the organization. |
| creator | object | |
| billing_email | string | The billing email address for the organization. |
| auto_upgrade | boolean | Whether the organization automatically upgrades to new plans. |
| created_at | string | The date and time the organization was created. |
| updated_at | string | The date and time the organization was last updated. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Organization",
"title": "Organization",
"type": "object",
"description": "Represents a Bugsnag organization, the top-level entity containing projects and collaborators.",
"properties": {
"id": {
"type": "string",
"description": "The unique identifier of the organization."
},
"name": {
"type": "string",
"description": "The name of the organization."
},
"slug": {
"type": "string",
"description": "The URL-friendly slug for the organization."
},
"creator": {
"$ref": "#/components/schemas/User"
},
"billing_email": {
"type": "string",
"format": "email",
"description": "The billing email address for the organization."
},
"auto_upgrade": {
"type": "boolean",
"description": "Whether the organization automatically upgrades to new plans."
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "The date and time the organization was created."
},
"updated_at": {
"type": "string",
"format": "date-time",
"description": "The date and time the organization was last updated."
}
}
}