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

20 lines
357 B
JSON
Raw Normal View History

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