summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/evidences/issue.json
blob: 71d114431545fd30b641193d948b7085ddb50b9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  "type": "object",
  "required": [
    "id",
    "title",
    "description",
    "state",
    "iid",
    "confidential",
    "created_at",
    "due_date"
  ],
  "properties": {
    "id": { "type": "integer" },
    "title": { "type": "string" },
    "description": { "type": ["string", "null"] },
    "state": { "type": "string" },
    "iid": { "type": "integer" },
    "confidential": { "type": "boolean" },
    "created_at": { "type": "string", "format": "date-time" },
    "due_date": { "type": ["string", "null"], "format": "date-time" }
  },
  "additionalProperties": false
}