summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/deployment.json
blob: 536e6475c23caa1467ec1ac223bf9140d9d05935 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
    "additionalProperties": false,
    "properties": {
        "created_at": {
            "type": "string"
        },
        "id": {
            "type": "integer"
        },
        "iid": {
            "type": "integer"
        },
        "last?": {
            "type": "boolean"
        },
        "ref": {
            "additionalProperties": false,
            "properties": {
                "name": {
                    "type": "string"
                }
            },
            "required": [
                "name"
            ],
            "type": "object"
        },
        "sha": {
            "type": "string"
        },
        "tag": {
            "type": "boolean"
        }
    },
    "required": [
        "sha",
        "created_at",
        "iid",
        "tag",
        "last?",
        "ref",
        "id"
    ],
    "type": "object"
}