summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/milestones.json
blob: 448e97d6c85a3ccc07023d1dca63e46446197047 (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
{
  "type": "array",
  "items": {
    "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" },
      "web_url": { "type": "string" }
    },
    "required": [
      "id", "iid", "title", "description", "state",
      "state", "created_at", "updated_at", "start_date", "due_date"
    ],
    "additionalProperties": false
  }
}