21 lines
626 B
JSON
21 lines
626 B
JSON
{
|
|
"type": "object",
|
|
"properties" : {
|
|
"id": { "type": "integer" },
|
|
"iid": { "type": "integer" },
|
|
"subscribed": { "type": "boolean" },
|
|
"time_estimate": { "type": "integer" },
|
|
"total_time_spent": { "type": "integer" },
|
|
"human_time_estimate": { "type": ["integer", "null"] },
|
|
"human_total_time_spent": { "type": ["integer", "null"] },
|
|
"participants": {
|
|
"type": "array",
|
|
"items": { "$ref": "../public_api/v4/user/basic.json" }
|
|
},
|
|
"assignees": {
|
|
"type": "array",
|
|
"items": { "$ref": "../public_api/v4/user/basic.json" }
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|