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