summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/entities/issue_sidebar.json
blob: 682e345d5f58a6d95e9e62e669011ff00cf3e3e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "type": "object",
  "properties" : {
    "id": { "type": "integer" },
    "iid": { "type": "integer" },
    "subscribed": { "type": "boolean" },
    "time_estimate": { "type": "integer" },
    "total_time_spent": { "type": "integer" },
    "human_time_estimate": { "type": ["integer", "null"] },
    "human_total_time_spent": { "type": ["integer", "null"] },
    "participants": {
      "type": "array",
      "items": { "$ref": "../public_api/v4/user/basic.json" }
    },
    "assignees": {
      "type": "array",
      "items": { "$ref": "../public_api/v4/user/basic.json" }
    }
  },
  "additionalProperties": false
}