summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/project_identity.json
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
}