Commit 49577e6e authored by Valery Sizov's avatar Valery Sizov

[Multiple issue asignees] Fix json schema for issues

parent ffa72325
...@@ -40,21 +40,23 @@ ...@@ -40,21 +40,23 @@
"additionalProperties": false "additionalProperties": false
} }
}, },
"assignee": { "assignees": {
"type": ["object", "null"], "type": "array",
"required": [ "items": {
"id", "type": ["object", "null"],
"name", "required": [
"username", "id",
"avatar_url" "name",
], "username",
"properties": { "avatar_url"
"id": { "type": "integer" }, ],
"name": { "type": "string" }, "properties": {
"username": { "type": "string" }, "id": { "type": "integer" },
"avatar_url": { "type": "uri" } "name": { "type": "string" },
}, "username": { "type": "string" },
"additionalProperties": false "avatar_url": { "type": "uri" }
}
}
}, },
"subscribed": { "type": ["boolean", "null"] } "subscribed": { "type": ["boolean", "null"] }
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment