Sentry · Schema
SentryApp
APMApplication MonitoringBug TrackingDeveloper ToolsError TrackingObservabilityPerformance MonitoringReal-Time Monitoring
Properties
| Name | Type | Description |
|---|---|---|
| uuid | string | |
| slug | string | |
| name | string | |
| scopes | array | |
| status | string | |
| webhookUrl | string | |
| redirectUrl | string | |
| overview | string | |
| schema | object | |
| datePublished | string | |
| owner | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SentryApp",
"title": "SentryApp",
"type": "object",
"properties": {
"uuid": {
"type": "string",
"format": "uuid"
},
"slug": {
"type": "string"
},
"name": {
"type": "string"
},
"scopes": {
"type": "array",
"items": {
"type": "string"
}
},
"status": {
"type": "string"
},
"webhookUrl": {
"type": "string",
"format": "uri"
},
"redirectUrl": {
"type": "string",
"format": "uri",
"nullable": true
},
"overview": {
"type": "string",
"nullable": true
},
"schema": {
"type": "object"
},
"datePublished": {
"type": "string",
"format": "date-time",
"nullable": true
},
"owner": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"slug": {
"type": "string"
}
}
}
},
"required": [
"uuid",
"slug",
"name"
]
}