Welcome to mirror list, hosted at ThFree Co, Russian Federation.

error_stack_trace.json « error_tracking « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a684dd0496a4ae1774f065d3774e79150c9bd4ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  "type": "object",
  "required": [
    "issue_id",
    "stack_trace_entries",
    "date_received"
  ],
  "properties": {
    "issue_id": { "type": ["string", "integer"] },
    "stack_trace_entries": { "type": "object" },
    "date_received": { "type": "string" }
  },
  "additionalProperties": false
}