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

milestone.json « v4 « public_api « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c8c6a7b6ae18ccc883cb5324c6e0034a4a85999e (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
{
  "type": "object",
  "properties" : {
    "id": { "type": "integer" },
    "iid": { "type": "integer" },
    "project_id": { "type": ["integer", "null"] },
    "group_id": { "type": ["integer", "null"] },
    "title": { "type": "string" },
    "description": { "type": ["string", "null"] },
    "state": { "type": "string" },
    "created_at": { "type": "date" },
    "updated_at": { "type": "date" },
    "start_date": { "type": "date" },
    "due_date": { "type": "date" },
    "expired": { "type": ["boolean", "null"] },
    "web_url": { "type": "string" }
  },
  "required": [
    "id", "iid", "title", "description", "state",
    "state", "created_at", "updated_at", "start_date",
    "due_date", "expired"
  ],
  "additionalProperties": false
}