git-lfs/locking/schemas/http-lock-create-request-schema.json

21 lines
379 B
JSON
Raw Normal View History

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