github.com/2lambda123/git-lfs@v2.5.2+incompatible/locking/schemas/http-lock-create-request-schema.json (about) 1 { 2 "$schema": "http://json-schema.org/draft-04/schema", 3 "title": "Git LFS HTTPS Lock Creation API Request", 4 "type": "object", 5 "properties": { 6 "path": { 7 "type": "string" 8 }, 9 "ref": { 10 "type": "object", 11 "properties": { 12 "name": { 13 "type": "string" 14 } 15 }, 16 "required": ["name"] 17 } 18 }, 19 "required": ["path"] 20 }