Hugging Face · Schema
UserInfo
Properties
| Name | Type | Description |
|---|---|---|
| type | string | Account type (user or organization) |
| id | string | |
| name | string | Username |
| fullname | string | Full display name |
| string | ||
| emailVerified | boolean | |
| plan | string | Subscription plan |
| canPay | boolean | |
| avatarUrl | string | |
| orgs | array | |
| auth | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "UserInfo",
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "Account type (user or organization)"
},
"id": {
"type": "string"
},
"name": {
"type": "string",
"description": "Username"
},
"fullname": {
"type": "string",
"description": "Full display name"
},
"email": {
"type": "string"
},
"emailVerified": {
"type": "boolean"
},
"plan": {
"type": "string",
"description": "Subscription plan"
},
"canPay": {
"type": "boolean"
},
"avatarUrl": {
"type": "string"
},
"orgs": {
"type": "array"
},
"auth": {
"type": "object"
}
}
}