git-lfs/docs/api/http-v1-batch-request-schema.json
2015-07-28 09:14:03 -06:00

29 lines
601 B
JSON

{
"$schema": "http://json-schema.org/draft-04/schema",
"title": "Git LFS HTTPS Batch API v1 Request",
"type": "object",
"properties": {
"operation": {
"type": "string"
},
"objects": {
"type": "array",
"items": {
"type": "object",
"properties": {
"oid": {
"type": "string"
},
"size": {
"type": "number"
}
},
"required": ["oid", "size"],
"additionalProperties": false
}
}
},
"required": ["objects", "operation"],
"additionalProperties": false
}