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

issue.json « evidences « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 10e90dff455d79dc712594797c4c561e16bb9423 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
  "type": "object",
  "required": [
    "id",
    "title",
    "description",
    "author",
    "state",
    "iid",
    "confidential",
    "created_at",
    "due_date"
  ],
  "properties": {
    "id": { "type": "integer" },
    "title": { "type": "string" },
    "description": { "type": "string" },
    "author": { "$ref": "author.json" },
    "state": { "type": "string" },
    "iid": { "type": "integer" },
    "confidential": { "type": "boolean" },
    "created_at": { "type": "date" },
    "due_date": { "type": "date" }
  },
  "additionalProperties": false
}