GlitchTip EnvironmentSchema
{ "$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" }