debian-mirror-gitlab/spec/fixtures/api/schemas/entities/github/user.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
324 B
JSON
Raw Normal View History

2020-11-24 15:15:51 +05:30
{
"type": "object",
"required": ["id", "login", "url", "avatar_url"],
"properties" : {
"id": { "type": "integer" },
"login": { "type": "string" },
"url": { "type": "string" },
2022-08-13 15:12:31 +05:30
"avatar_url": { "type": [ "string", "null" ] },
2020-11-24 15:15:51 +05:30
"html_url": { "type": "string" }
},
"additionalProperties": false
}