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

board.json « v4 « public_api « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d667f1d631cfd136c2e8dfeab7da1a3f350ad89a (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
  "type": "object",
  "required" : [
    "id",
    "project",
    "lists"
  ],
  "properties" : {
    "id": { "type": "integer" },
    "project": {
      "type": ["object", "null"],
      "required": [
        "id",
        "avatar_url",
        "description",
        "default_branch",
        "tag_list",
        "ssh_url_to_repo",
        "http_url_to_repo",
        "web_url",
        "name",
        "name_with_namespace",
        "path",
        "path_with_namespace",
        "star_count",
        "forks_count",
        "created_at",
        "last_activity_at"
      ],
      "properties": {
        "id": { "type": "integer" },
        "avatar_url": { "type": ["string", "null"] },
        "description": { "type": ["string", "null"] },
        "default_branch": { "type": ["string", "null"] },
        "tag_list": { "type": "array" },
        "ssh_url_to_repo": { "type": "string" },
        "http_url_to_repo": { "type": "string" },
        "web_url": { "type": "string" },
        "name": { "type": "string" },
        "name_with_namespace": { "type": "string" },
        "path": { "type": "string" },
        "path_with_namespace": { "type": "string" },
        "star_count": { "type": "integer" },
        "forks_count": { "type": "integer" },
        "created_at": { "type": "date" },
        "last_activity_at": { "type": "date" }
      },
      "additionalProperties": false
    },
    "lists": {
      "type": "array",
      "items": {
        "type": "object",
        "required" : [
          "id",
          "label",
          "position"
        ],
        "properties" : {
          "id": { "type": "integer" },
          "label": {
            "type": ["object", "null"],
            "required": [
              "id",
              "color",
              "description",
              "name"
            ],
            "properties": {
              "id": { "type": "integer" },
              "color": {
                "type": "string",
                "pattern": "^#[0-9A-Fa-f]{3}{1,2}+$"
              },
              "description": { "type": ["string", "null"] },
              "name": { "type": "string" }
            }
          },
          "position": { "type": ["integer", "null"] }
        },
        "additionalProperties": false
      }
    }
  },
  "additionalProperties": true
}