summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/entities/github/repository.json
blob: 44d7d059140e5b3b655c8ea130dead8b6234d9e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
    "type": "object",
    "properties": {
        "id": { "type": "integer" },
        "name": { "type": "string" },
        "owner": {
            "type": "object",
            "required": ["login"],
            "properties" : {
                "login": { "type": "string" }
            },
            "additionalProperties": false
        },
        "additionalProperties": false
    }
}