53 lines
1.3 KiB
JSON
53 lines
1.3 KiB
JSON
{
|
|
"type": "object",
|
|
"required" : [
|
|
"iid",
|
|
"title",
|
|
"confidential"
|
|
],
|
|
"properties" : {
|
|
"id": { "type": "integer" },
|
|
"iid": { "type": "integer" },
|
|
"project_id": { "type": ["integer", "null"] },
|
|
"title": { "type": "string" },
|
|
"confidential": { "type": "boolean" },
|
|
"due_date": { "type": ["date", "null"] },
|
|
"relative_position": { "type": "integer" },
|
|
"issue_sidebar_endpoint": { "type": "string" },
|
|
"toggle_subscription_endpoint": { "type": "string" },
|
|
"project": {
|
|
"id": { "type": "integer" },
|
|
"path": { "type": "string" }
|
|
},
|
|
"labels": {
|
|
"type": "array",
|
|
"items": { "$ref": "entities/label.json" }
|
|
},
|
|
"assignee": {
|
|
"id": { "type": "integet" },
|
|
"name": { "type": "string" },
|
|
"username": { "type": "string" },
|
|
"avatar_url": { "type": "uri" }
|
|
},
|
|
"assignees": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": ["object", "null"],
|
|
"required": [
|
|
"id",
|
|
"name",
|
|
"username",
|
|
"avatar_url"
|
|
],
|
|
"properties": {
|
|
"id": { "type": "integer" },
|
|
"name": { "type": "string" },
|
|
"username": { "type": "string" },
|
|
"avatar_url": { "type": "uri" }
|
|
}
|
|
}
|
|
},
|
|
"subscribed": { "type": ["boolean", "null"] }
|
|
},
|
|
"additionalProperties": false
|
|
}
|