git-lfs/locking/schemas/http-lock-create-request-schema.json
2017-12-14 16:27:25 -05:00

21 lines
379 B
JSON

{
"$schema": "http://json-schema.org/draft-04/schema",
"title": "Git LFS HTTPS Lock Creation API Request",
"type": "object",
"properties": {
"path": {
"type": "string"
},
"ref": {
"type": "object",
"properties": {
"name": {
"type": "string"
}
},
"required": ["name"]
}
},
"required": ["path"]
}