GitLab · Schema
API_Entities_AccessRequester
API_Entities_AccessRequester model
CodePlatformSoftware DevelopmentSource Control
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| username | string | |
| name | string | |
| state | string | |
| avatar_url | string | |
| avatar_path | string | |
| custom_attributes | array | |
| web_url | string | |
| string | ||
| requested_at | string |
JSON Schema
{
"$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_access-requester-schema.json",
"title": "API_Entities_AccessRequester",
"description": "API_Entities_AccessRequester model",
"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": "[email protected]"
},
"requested_at": {
"type": "string",
"example": "2026-04-17T12:00:00Z"
}
}
}