summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/release.json
blob: 844405c3acd5699c36d3a08c0f4e70765d05ea24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "type": "object",
  "required": ["name", "tag_name"],
  "properties": {
    "name": { "type": "string" },
    "tag_name": { "type": "string" },
    "description": { "type": "string" },
    "description_html": { "type": "string" },
    "created_at": { "type": "date" },
    "commit": {
      "oneOf": [{ "type": "null" }, { "$ref": "public_api/v4/commit/basic.json" }]
    },
    "author": {
      "oneOf": [{ "type": "null" }, { "$ref": "public_api/v4/user/basic.json" }]
    }
  },
  "additionalProperties": false
}