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