debian-mirror-gitlab/spec/fixtures/api/schemas/public_api/v4/blobs.json
2019-12-26 22:10:19 +05:30

21 lines
553 B
JSON

{
"type": "array",
"items": {
"type": "object",
"properties" : {
"basename": { "type": "string" },
"data": { "type": "string" },
"path": { "type": ["string"] },
"filename": { "type": ["string"] },
"id": { "type": ["string", "null"] },
"project_id": { "type": "integer" },
"ref": { "type": "string" },
"startline": { "type": "integer" }
},
"required": [
"basename", "data", "path", "filename", "id", "ref", "startline", "project_id"
],
"additionalProperties": false
}
}