GlitchTip · Schema

EnvironmentSchema

GlitchTip EnvironmentSchema

Error TrackingPerformance MonitoringUptime MonitoringApplication MonitoringOpen SourceSentry CompatibleObservabilityLogging

Properties

Name Type Description
id object
name string
View JSON Schema on GitHub

JSON Schema

glitchtip-environmentschema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/glitchtip/main/json-schema/glitchtip-environmentschema.json",
  "title": "EnvironmentSchema",
  "description": "GlitchTip EnvironmentSchema",
  "properties": {
    "id": {
      "anyOf": [
        {
          "type": "integer"
        },
        {
          "type": "null"
        }
      ],
      "title": "ID"
    },
    "name": {
      "maxLength": 255,
      "title": "Name",
      "type": "string"
    }
  },
  "required": [
    "name"
  ],
  "type": "object"
}