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: eef408e34e1232490f3b86f8e555bb8c4bc20336 (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
{
  "type": "object",
  "required": [
    "id",
    "tag_name",
    "name",
    "description",
    "created_at",
    "project",
    "milestones"
  ],
  "properties": {
    "id": { "type": "integer" },
    "tag_name": { "type": "string" },
    "name": { "type": ["string", "null"] },
    "description": { "type": "string" },
    "created_at": { "type": "string", "format": "date-time" },
    "project": { "$ref": "project.json" },
    "milestones": {
      "type": "array",
      "items": { "$ref": "milestone.json" }
    },
    "report_artifacts": {
      "type": "array",
      "items": { "$ref": "build_artifact.json" }
    }
  },
  "additionalProperties": false
}