Sentry · Schema

Integration

APMApplication MonitoringBug TrackingDeveloper ToolsError TrackingObservabilityPerformance MonitoringReal-Time Monitoring

Properties

Name Type Description
id string
name string
icon string
domainName string
provider object
status string
configData object
dateCreated string
View JSON Schema on GitHub

JSON Schema

sentry-system-integration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Integration",
  "title": "Integration",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "icon": {
      "type": "string",
      "nullable": true
    },
    "domainName": {
      "type": "string"
    },
    "provider": {
      "type": "object",
      "properties": {
        "key": {
          "type": "string"
        },
        "name": {
          "type": "string"
        }
      }
    },
    "status": {
      "type": "string"
    },
    "configData": {
      "type": "object",
      "nullable": true
    },
    "dateCreated": {
      "type": "string",
      "format": "date-time"
    }
  },
  "required": [
    "id",
    "name",
    "provider"
  ]
}