summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/analytics/cycle_analytics/summary.json
blob: 296e18fca47a76b29a953d952c33078e279439be (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
{
  "type": "array",
  "items": {
    "minItems": 2,
    "maxItems": 3,
    "type": "object",
    "required": ["value", "title"],
    "properties": {
      "value": {
        "type": "string"
      },
      "title": {
        "type": "string"
      },
      "unit": {
        "type": "string"
      },
      "links": {
        "type": "array"
      }
    },
    "additionalProperties": false
  }
}