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

release.json « evidences « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 68c872a9dc8a561c99c167c1739dd72caf095769 (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
{
  "type": "object",
  "required": [
    "id",
    "tag",
    "name",
    "description",
    "created_at",
    "project",
    "milestones"
  ],
  "properties": {
    "id": { "type": "integer" },
    "tag": { "type": "string" },
    "name": { "type": "string" },
    "description": { "type": "string" },
    "created_at": { "type": "date" },
    "project": { "$ref": "project.json" },
    "milestones": {
      "type": "array",
      "items": { "$ref": "milestone.json" }
    }
  },
  "additionalProperties": false
}