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

summary.json « cycle_analytics « analytics « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 85acebb99ba2c732db642fc22e49e9692c60d7d8 (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
{
  "type": "array",
  "items": {
    "minItems": 2,
    "maxItems": 3,
    "type": "object",
    "required": ["value", "title"],
    "properties": {
      "identifier": {
        "type": "string"
      },
      "value": {
        "type": "string"
      },
      "title": {
        "type": "string"
      },
      "unit": {
        "type": "string"
      },
      "links": {
        "type": "array"
      }
    },
    "additionalProperties": false
  }
}