User Schemas
ResourceUser Object
| Property | Type | Description |
|---|---|---|
id | string | Unique identifier for the user. |
scope | string | The scope of access for the user (e.g., "view", "admin"). |
email | string | Email address of the user. |
username | string | Username of the user. |
JSON Example
{
"id": "user-123",
"scope": "admin",
"username": "johndoe"
}
PatchResourceUser Object
| Property | Type | Description |
|---|---|---|
id | string | Unique identifier for the user. |
scope | string | The new scope of access for the user. |
JSON Example
{
"id": "user-123",
"scope": "view"
}