summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/status/illustration.json
blob: 9a085f5f1ee64a6afcd6f41a8c7d4497db395f46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "oneOf": [
    { "type": "null" },
    {
      "type": "object",
      "required": [
        "image",
        "size",
        "title"
      ],
      "properties": {
        "image": { "type": "string" },
        "size": { "type": "string" },
        "title": { "type": "string" },
        "content": { "type": "string" }
      }
    }
  ]
}