Sentry · Schema

Deploy

APMApplication MonitoringBug TrackingDeveloper ToolsError TrackingObservabilityPerformance MonitoringReal-Time Monitoring

Properties

Name Type Description
id string
environment string
name string
url string
dateStarted string
dateFinished string
View JSON Schema on GitHub

JSON Schema

sentry-system-deploy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Deploy",
  "title": "Deploy",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "environment": {
      "type": "string"
    },
    "name": {
      "type": "string",
      "nullable": true
    },
    "url": {
      "type": "string",
      "nullable": true
    },
    "dateStarted": {
      "type": "string",
      "format": "date-time",
      "nullable": true
    },
    "dateFinished": {
      "type": "string",
      "format": "date-time",
      "nullable": true
    }
  },
  "required": [
    "id",
    "environment"
  ]
}