debian-mirror-gitlab/spec/fixtures/api/schemas/entities/github/user.json
2022-08-13 15:12:31 +05:30

13 lines
324 B
JSON

{
"type": "object",
"required": ["id", "login", "url", "avatar_url"],
"properties" : {
"id": { "type": "integer" },
"login": { "type": "string" },
"url": { "type": "string" },
"avatar_url": { "type": [ "string", "null" ] },
"html_url": { "type": "string" }
},
"additionalProperties": false
}