deployment.json 585 Bytes
Newer Older
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
  "type": "object",
  "required": [
    "sha",
    "created_at",
    "iid",
    "tag",
    "last?",
    "ref",
    "id"
  ],
  "properties": {
    "created_at": { "type": "string" },
    "id": { "type": "integer" },
    "iid": { "type": "integer" },
    "last?": { "type": "boolean" },
    "ref": {
      "type": "object",
      "required": [
        "name"
      ],
      "properties": {
        "name": { "type": "string" }
      },
      "additionalProperties": false
26
    },
27 28 29 30
    "sha": { "type": "string" },
    "tag": { "type": "boolean" }
  },
  "additionalProperties": false
31
}