Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the user |
| string | User's email address | |
| name | string | User's display name |
| role | string | User's role in the Enterprise Hub |
| status | string | Current account status |
| createdAt | string | Timestamp when the user account was created |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/User",
"title": "User",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the user"
},
"email": {
"type": "string",
"format": "email",
"description": "User's email address"
},
"name": {
"type": "string",
"description": "User's display name"
},
"role": {
"type": "string",
"enum": [
"admin",
"user",
"provider"
],
"description": "User's role in the Enterprise Hub"
},
"status": {
"type": "string",
"enum": [
"active",
"inactive",
"pending"
],
"description": "Current account status"
},
"createdAt": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the user account was created"
}
}
}