GlitchTip · Schema

EventIngestSchema

GlitchTip EventIngestSchema

Error TrackingPerformance MonitoringUptime MonitoringApplication MonitoringOpen-SourceSentry CompatibleObservabilityLogging

Properties

Name Type Description
platform object
errors object
event_id string
timestamp object
level object
logentry object
logger object
transaction object
server_name object
release object
dist object
tags object
environment object
modules object
extra object
fingerprint object
exception object
threads object
message object
template object
breadcrumbs object
sdk object
request object
contexts object
user object
debug_meta object
View JSON Schema on GitHub

JSON Schema

glitchtip-eventingestschema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/glitchtip/main/json-schema/glitchtip-eventingestschema.json",
  "title": "EventIngestSchema",
  "description": "GlitchTip EventIngestSchema",
  "properties": {
    "platform": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Platform"
    },
    "errors": {
      "anyOf": [
        {
          "items": {},
          "type": "array"
        },
        {
          "type": "null"
        }
      ],
      "title": "Errors"
    },
    "event_id": {
      "format": "uuid",
      "title": "Event Id",
      "type": "string"
    },
    "timestamp": {
      "anyOf": [
        {
          "format": "date-time",
          "type": "string"
        },
        {
          "additionalProperties": true,
          "type": "object"
        },
        {
          "type": "null"
        }
      ],
      "title": "Timestamp"
    },
    "level": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": "error",
      "title": "Level"
    },
    "logentry": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/EventMessage"
        },
        {
          "type": "null"
        }
      ]
    },
    "logger": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Logger"
    },
    "transaction": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Transaction"
    },
    "server_name": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Server Name"
    },
    "release": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Release"
    },
    "dist": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Dist"
    },
    "tags": {
      "anyOf": [
        {
          "items": {
            "items": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "null"
                }
              ]
            },
            "type": "array"
          },
          "type": "array"
        },
        {
          "additionalProperties": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "type": "object"
        },
        {
          "type": "null"
        }
      ],
      "title": "Tags"
    },
    "environment": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Environment"
    },
    "modules": {
      "anyOf": [
        {
          "additionalProperties": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "type": "object"
        },
        {
          "type": "null"
        }
      ],
      "title": "Modules"
    },
    "extra": {
      "anyOf": [
        {
          "additionalProperties": true,
          "type": "object"
        },
        {
          "type": "null"
        }
      ],
      "title": "Extra"
    },
    "fingerprint": {
      "anyOf": [
        {
          "items": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "type": "array"
        },
        {
          "type": "null"
        }
      ],
      "title": "Fingerprint"
    },
    "exception": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/IngestValueEventException"
        },
        {
          "type": "null"
        }
      ]
    },
    "threads": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/ValueEventThread"
        },
        {
          "type": "null"
        }
      ]
    },
    "message": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "$ref": "#/components/schemas/EventMessage"
        },
        {
          "type": "null"
        }
      ],
      "title": "Message"
    },
    "template": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/EventTemplate"
        },
        {
          "type": "null"
        }
      ]
    },
    "breadcrumbs": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/ValueEventBreadcrumb"
        },
        {
          "type": "null"
        }
      ]
    },
    "sdk": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/ClientSDKInfo"
        },
        {
          "type": "null"
        }
      ]
    },
    "request": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/IngestRequest"
        },
        {
          "type": "null"
        }
      ]
    },
    "contexts": {
      "anyOf": [
        {
          "additionalProperties": {
            "anyOf": [
              {
                "discriminator": {
                  "mapping": {
                    "app": "#/components/schemas/AppContext",
                    "browser": "#/components/schemas/BrowserContext",
                    "cloud_resource": "#/components/schemas/CloudResourceContext",
                    "culture": "#/components/schemas/CultureContext",
                    "device": "#/components/schemas/DeviceContext",
                    "gpu": "#/components/schemas/GPUContext",
                    "os": "#/components/schemas/OSContext",
                    "replay": "#/components/schemas/ReplayContext",
                    "response": "#/components/schemas/ResponseContext",
                    "runtime": "#/components/schemas/RuntimeContext",
                    "state": "#/components/schemas/StateContext",
                    "trace": "#/components/schemas/TraceContext"
                  },
                  "propertyName": "type"
                },
                "oneOf": [
                  {
                    "$ref": "#/components/schemas/DeviceContext"
                  },
                  {
                    "$ref": "#/components/schemas/OSContext"
                  },
                  {
                    "$ref": "#/components/schemas/RuntimeContext"
                  },
                  {
                    "$ref": "#/components/schemas/AppContext"
                  },
                  {
                    "$ref": "#/components/schemas/BrowserContext"
                  },
                  {
                    "$ref": "#/components/schemas/GPUContext"
                  },
                  {
                    "$ref": "#/components/schemas/StateContext"
                  },
                  {
                    "$ref": "#/components/schemas/CultureContext"
                  },
                  {
                    "$ref": "#/components/schemas/CloudResourceContext"
                  },
                  {
                    "$ref": "#/components/schemas/TraceContext"
                  },
                  {
                    "$ref": "#/components/schemas/ReplayContext"
                  },
                  {
                    "$ref": "#/components/schemas/ResponseContext"
                  }
                ]
              },
              {}
            ]
          },
          "type": "object"
        },
        {
          "type": "null"
        }
      ],
      "title": "Contexts"
    },
    "user": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/EventUser"
        },
        {
          "type": "null"
        }
      ]
    },
    "debug_meta": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/DebugMeta"
        },
        {
          "type": "null"
        }
      ]
    }
  },
  "required": [
    "event_id"
  ],
  "type": "object"
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/glitchtip-eventingestschema"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.