summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/milestone.json
blob: e7e0e57f02feff5efa3eab4e9997823249e6ad85 (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": "string" },
    "updated_at": { "type": "string" },
    "start_date": { "type": ["string", "null"], "format": "date-time" },
    "due_date": { "type": ["string", "null"], "format": "date-time" },
    "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
}