{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/gitlab/refs/heads/main/json-schema/gitlab-openapi-original-api_entities_user-basic-schema.json", "title": "API_Entities_UserBasic", "description": "API_Entities_UserBasic from GitLab API", "type": "object", "properties": { "id": { "type": "integer", "format": "int32", "example": 1 }, "username": { "type": "string", "example": "admin" }, "name": { "type": "string", "example": "Administrator" }, "state": { "type": "string", "example": "active" }, "avatar_url": { "type": "string", "example": "https://gravatar.com/avatar/1" }, "avatar_path": { "type": "string", "example": "/user/avatar/28/The-Big-Lebowski-400-400.png" }, "custom_attributes": { "type": "array", "items": { "$ref": "#/components/schemas/API_Entities_CustomAttribute" } }, "web_url": { "type": "string", "example": "https://gitlab.example.com/root" }, "email": { "type": "string", "example": "user@example.com" } } }