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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

77 lines
1.1 KiB
JSON
Raw Normal View History

2019-02-15 15:39:39 +05:30
{
"type": "object",
2023-03-04 22:38:38 +05:30
"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": "string"
},
"updated_at": {
"type": "string"
},
"start_date": {
"type": [
"string",
"null"
],
"format": "date-time"
},
"due_date": {
"type": [
"string",
"null"
],
"format": "date-time"
},
"expired": {
"type": [
"boolean",
"null"
]
},
"web_url": {
"type": "string"
}
2019-02-15 15:39:39 +05:30
},
"required": [
2023-03-04 22:38:38 +05:30
"id",
"iid",
"title",
"description",
"state",
"created_at",
"updated_at",
"start_date",
"due_date",
"expired"
2019-02-15 15:39:39 +05:30
],
"additionalProperties": false
2023-03-04 22:38:38 +05:30
}