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

25 lines
754 B
JSON
Raw Normal View History

2019-02-15 15:39:39 +05:30
{
"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" },
"due_date": { "type": "date" },
2020-11-24 15:15:51 +05:30
"expired": { "type": ["boolean", "null"] },
2019-02-15 15:39:39 +05:30
"web_url": { "type": "string" }
},
"required": [
"id", "iid", "title", "description", "state",
2020-11-24 15:15:51 +05:30
"state", "created_at", "updated_at", "start_date",
"due_date", "expired"
2019-02-15 15:39:39 +05:30
],
"additionalProperties": false
}