debian-mirror-gitlab/spec/fixtures/api/schemas/entities/merge_request_basic.json

20 lines
717 B
JSON
Raw Normal View History

2017-08-17 22:00:37 +05:30
{
"type": "object",
"properties" : {
"state": { "type": "string" },
"merge_status": { "type": "string" },
"source_branch_exists": { "type": "boolean" },
"time_estimate": { "type": "integer" },
"total_time_spent": { "type": "integer" },
"human_time_estimate": { "type": ["string", "null"] },
"human_total_time_spent": { "type": ["string", "null"] },
"merge_error": { "type": ["string", "null"] },
2018-03-17 18:26:18 +05:30
"rebase_in_progress": { "type": "boolean" },
"assignee_id": { "type": ["integer", "null"] },
"subscribed": { "type": ["boolean", "null"] },
2018-03-27 19:54:05 +05:30
"participants": { "type": "array" },
"allow_maintainer_to_push": { "type": "boolean"}
2017-08-17 22:00:37 +05:30
},
"additionalProperties": false
}