GlitchTip · Schema

CommentSchema

GlitchTip CommentSchema

Error TrackingPerformance MonitoringUptime MonitoringApplication MonitoringOpen-SourceSentry CompatibleObservabilityLogging

Properties

Name Type Description
data object
type object
dateCreated string
user object
id object
View JSON Schema on GitHub

JSON Schema

glitchtip-commentschema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/glitchtip/main/json-schema/glitchtip-commentschema.json",
  "title": "CommentSchema",
  "description": "GlitchTip CommentSchema",
  "properties": {
    "data": {
      "additionalProperties": {
        "type": "string"
      },
      "title": "Data",
      "type": "object"
    },
    "type": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": "note",
      "title": "Type"
    },
    "dateCreated": {
      "format": "date-time",
      "title": "Datecreated",
      "type": "string"
    },
    "user": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/CommentUserSchema"
        },
        {
          "type": "null"
        }
      ]
    },
    "id": {
      "anyOf": [
        {
          "type": "integer"
        },
        {
          "type": "null"
        }
      ],
      "title": "ID"
    }
  },
  "required": [
    "data",
    "dateCreated",
    "user"
  ],
  "type": "object"
}