summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/blobs.json
blob: 9cb1eae37623af91223d71720e5e94c217456f24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "type": "array",
  "items": {
    "type": "object",
    "properties" : {
      "basename": { "type": "string" },
      "data": { "type": "string" },
      "filename": { "type": ["string"] },
      "id": { "type": ["string", "null"] },
      "ref": { "type": "string" },
      "startline": { "type": "integer" }
    },
    "required": [
      "basename", "data", "filename", "id", "ref", "startline"
    ],
    "additionalProperties": false
  }
}