debian-mirror-gitlab/spec/fixtures/api/schemas/public_api/v4/milestones.json

26 lines
767 B
JSON
Raw Normal View History

2018-03-17 18:26:18 +05:30
{
"type": "array",
"items": {
"type": "object",
"properties" : {
"id": { "type": "integer" },
"iid": { "type": "integer" },
"project_id": { "type": ["integer", "null"] },
"group_id": { "type": ["integer", "null"] },
"title": { "type": "string" },
"description": { "type": ["string", "null"] },
"state": { "type": "string" },
"created_at": { "type": "date" },
"updated_at": { "type": "date" },
"start_date": { "type": "date" },
2018-11-08 19:23:39 +05:30
"due_date": { "type": "date" },
"web_url": { "type": "string" }
2018-03-17 18:26:18 +05:30
},
"required": [
"id", "iid", "title", "description", "state",
"state", "created_at", "updated_at", "start_date", "due_date"
],
"additionalProperties": false
}
}