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

project_identity.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: 6471dd560c57d6dfd8b01b7093ff3dc169b0c6e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "type": "object",
  "required": [
    "id",
    "description",
    "name",
    "name_with_namespace",
    "path",
    "path_with_namespace",
    "created_at"
  ],
  "properties": {
    "id": { "type": "integer" },
    "description": { "type": ["string", "null"] },
    "name": { "type": "string" },
    "name_with_namespace": { "type": "string" },
    "path": { "type": "string" },
    "path_with_namespace": { "type": "string" },
    "created_at": { "type": "string", "format": "date-time" }
  },
  "additionalProperties": false
}