summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/tag.json
blob: 52cfe86aeebd6833b0c715173a17299288507e0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "type": "object",
  "required" : [
    "name",
    "message",
    "commit",
    "release"
  ],
  "properties" : {
    "name": { "type": "string" },
    "message": { "type": ["string", "null"] },
    "commit": { "$ref": "commit/basic.json" },
    "release": {
      "oneOf": [
        { "type": "null" },
        { "$ref": "release.json" }
      ]
    }
  },
  "additionalProperties": false
}