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 @@
"type": ["object", "null"],
"required": [
"id",
"name",
"username",
"state",
"avatar_url",
"web_url"
],
"properties": {
"id": { "type": "integer" },
"name": { "type": "string" },
"username": { "type": "string" },
"state": { "type": "string" },
"avatar_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