merge_request_basic.json 663 字节
Newer Older
F
Fatih Acet 已提交
1 2 3 4 5 6 7 8 9 10
{
  "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"] },
11
    "merge_error": { "type": ["string", "null"] },
12
    "rebase_in_progress": { "type": "boolean" },
E
Eric Eastwood 已提交
13 14 15
    "assignee_id": { "type": ["integer", "null"] },
    "subscribed": { "type": ["boolean", "null"] },
    "participants": { "type": "array" }
F
Fatih Acet 已提交
16 17 18
  },
  "additionalProperties": false
}