Sentry · Schema
SavedQuery
APMApplication MonitoringBug TrackingDeveloper ToolsError TrackingObservabilityPerformance MonitoringReal-Time Monitoring
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| fields | array | |
| query | string | |
| projects | array | |
| environment | array | |
| range | string | |
| orderby | string | |
| version | integer | |
| dateCreated | string | |
| dateUpdated | string | |
| createdBy | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SavedQuery",
"title": "SavedQuery",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"fields": {
"type": "array",
"items": {
"type": "string"
}
},
"query": {
"type": "string"
},
"projects": {
"type": "array",
"items": {
"type": "integer"
}
},
"environment": {
"type": "array",
"items": {
"type": "string"
}
},
"range": {
"type": "string",
"nullable": true
},
"orderby": {
"type": "string"
},
"version": {
"type": "integer"
},
"dateCreated": {
"type": "string",
"format": "date-time"
},
"dateUpdated": {
"type": "string",
"format": "date-time"
},
"createdBy": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"email": {
"type": "string"
}
}
}
},
"required": [
"id",
"name",
"fields"
]
}