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

project.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: 542686542f84885b233206710e22d4061b8d1d6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "type": "object",
  "required": [
    "id",
    "name",
    "description",
    "created_at"
  ],
  "properties": {
    "id": { "type": "integer" },
    "name": { "type": "string" },
    "description": { "type": "string" },
    "created_at": { "type": "date" }
  },
  "additionalProperties": false
}