summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/entities/issue_board.json
blob: 7cb65e1f2f5ccdbc8675e8a663f8ef2c87820ab8 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
  "type": "object",
  "properties" : {
    "id": { "type": "integer" },
    "iid": { "type": "integer" },
    "title": { "type": "string" },
    "confidential": { "type": "boolean" },
    "due_date": { "type": "date" },
    "project_id": { "type": "integer" },
    "relative_position": { "type": ["integer", "null"] },
    "time_estimate": { "type": "integer" },
    "total_time_spent": { "type": "integer" },
    "human_time_estimate": { "type": ["string", "null"] },
    "human_total_time_spent": { "type": ["string", "null"] },
    "weight": { "type": ["integer", "null"] },
    "project": {
      "type": "object",
      "properties": {
        "id": { "type": "integer" },
        "path": { "type": "string" }
      }
    },
    "milestone": {
      "type": "object",
      "properties": {
        "id": { "type": "integer" },
        "title": { "type": "string" }
      }
    },
    "assignees": { "type": ["array", "null"] },
    "labels": {
      "type": "array",
      "items": { "$ref": "label.json" }
    },
    "reference_path": { "type": "string" },
    "real_path": { "type": "string" },
    "issue_sidebar_endpoint": { "type": "string" },
    "toggle_subscription_endpoint": { "type": "string" },
    "assignable_labels_endpoint": { "type": "string" }
  },
  "additionalProperties": false
}