Sentry · Schema

ExternalIssue

APMApplication MonitoringBug TrackingDeveloper ToolsError TrackingObservabilityPerformance MonitoringReal-Time Monitoring

Properties

Name Type Description
id string
issueId integer
serviceType string
displayName string
webUrl string
View JSON Schema on GitHub

JSON Schema

sentry-system-externalissue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExternalIssue",
  "title": "ExternalIssue",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "issueId": {
      "type": "integer"
    },
    "serviceType": {
      "type": "string"
    },
    "displayName": {
      "type": "string"
    },
    "webUrl": {
      "type": "string",
      "format": "uri"
    }
  },
  "required": [
    "id",
    "issueId",
    "webUrl"
  ]
}