github.com/git-lfs/git-lfs@v2.5.2+incompatible/locking/schemas/http-lock-list-response-schema.json (about)

     1  {
     2    "$schema": "http://json-schema.org/draft-04/schema",
     3    "title": "Git LFS HTTPS Lock List API Response",
     4    "type": "object",
     5    "properties": {
     6      "locks": {
     7        "type": "array",
     8        "items": {
     9          "type": "object",
    10          "properties": {
    11            "id": {
    12              "type": "string"
    13            },
    14            "path": {
    15              "type": "string"
    16            },
    17            "locked_at": {
    18              "type": "string"
    19            },
    20            "owner": {
    21              "type": "object",
    22              "properties": {
    23                "name": {
    24                  "type": "string"
    25                }
    26              }
    27            }
    28          }
    29        }
    30      },
    31      "next_cursor": {
    32        "type": "string"
    33      }
    34    },
    35    "required": ["locks"]
    36  }