github.com/2lambda123/git-lfs@v2.5.2+incompatible/locking/schemas/http-lock-create-response-schema.json (about) 1 { 2 "$schema": "http://json-schema.org/draft-04/schema", 3 "title": "Git LFS HTTPS Lock Creation API Response", 4 "type": "object", 5 "properties": { 6 "lock": { 7 "type": "object", 8 "properties": { 9 "id": { 10 "type": "string" 11 }, 12 "path": { 13 "type": "string" 14 }, 15 "locked_at": { 16 "type": "string" 17 }, 18 "owner": { 19 "type": "object", 20 "properties": { 21 "name": { 22 "type": "string" 23 } 24 } 25 } 26 }, 27 "required": ["id", "path"] 28 }, 29 "message": { 30 "type": "string" 31 }, 32 "request_id": { 33 "type": "string" 34 }, 35 "documentation_url": { 36 "type": "string" 37 } 38 }, 39 "required": ["lock"] 40 }