Commit c6311207 authored by Rémy Coutable's avatar Rémy Coutable

Fix a JSON schema that doesn't include enough fields

Signed-off-by: default avatarRémy Coutable <remy@rymai.me>
parent a2718eba
...@@ -2,12 +2,16 @@ ...@@ -2,12 +2,16 @@
"type": ["object", "null"], "type": ["object", "null"],
"required": [ "required": [
"id", "id",
"name",
"username",
"state", "state",
"avatar_url", "avatar_url",
"web_url" "web_url"
], ],
"properties": { "properties": {
"id": { "type": "integer" }, "id": { "type": "integer" },
"name": { "type": "string" },
"username": { "type": "string" },
"state": { "type": "string" }, "state": { "type": "string" },
"avatar_url": { "type": "string" }, "avatar_url": { "type": "string" },
"web_url": { "type": "string" } "web_url": { "type": "string" }
......
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