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

milestone.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: ab27fdecde23c52df970355753e5523724d3e76a (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
27
{
  "type": "object",
  "required": [
    "id",
    "title",
    "description",
    "state",
    "iid",
    "created_at",
    "due_date",
    "issues"
  ],
  "properties": {
    "id": { "type": "integer" },
    "title": { "type": "string" },
    "description": { "type": ["string", "null"] },
    "state": { "type": "string" },
    "iid": { "type": "integer" },
    "created_at": { "type": "date" },
    "due_date": { "type": ["date", "null"] },
    "issues": {
      "type": "array",
      "items": { "$ref": "issue.json" }
    }
  },
  "additionalProperties": false
}