Welcome to mirror list, hosted at ThFree Co, Russian Federation.

repositories.json « github « entities « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 26457901ef2f15ee357ec3400e940684a25d15a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
    "type": "array",
    "properties" : {
        "id": { "type": "integer" },
        "name": { "type": "string" },
        "owner": {
            "type": "object",
            "required": ["login"],
            "properties" : {
                "login": { "type": "string" }
            },
            "additionalProperties": false
        },
        "additionalProperties": false
    }
}