git-lfs/docs/api/http-v1-batch-request-schema.json

29 lines
601 B
JSON
Raw Normal View History

2015-06-24 21:03:29 +00:00
{
"$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"
}
},
2015-07-28 15:14:03 +00:00
"required": ["oid", "size"],
2015-06-24 21:03:29 +00:00
"additionalProperties": false
}
}
},
2015-07-28 15:14:03 +00:00
"required": ["objects", "operation"],
2015-06-24 21:03:29 +00:00
"additionalProperties": false
}