debian-mirror-gitlab/spec/fixtures/api/schemas/evidences/milestone.json

23 lines
470 B
JSON
Raw Normal View History

2019-12-21 20:55:43 +05:30
{
"type": "object",
"required": [
"id",
"title",
"description",
"state",
"iid",
"created_at",
2020-01-03 18:37:03 +05:30
"due_date"
2019-12-21 20:55:43 +05:30
],
"properties": {
"id": { "type": "integer" },
"title": { "type": "string" },
"description": { "type": ["string", "null"] },
"state": { "type": "string" },
"iid": { "type": "integer" },
"created_at": { "type": "date" },
2020-01-03 18:37:03 +05:30
"due_date": { "type": ["date", "null"] }
2019-12-21 20:55:43 +05:30
},
"additionalProperties": false
}