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

merge_request_sidebar_extras.json « entities « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 11076ec73ded711d7d812592a65516d335197790 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  "type": "object",
  "properties" : {
    "id": { "type": "integer" },
    "iid": { "type": "integer" },
    "project_emails_disabled": { "type": "boolean" },
    "subscribe_disabled_description": { "type": "string" },
    "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
}