ResourceUserSchema
The ResourceUserSchema represents a user's access information for a specific resource in the ConfidentialMind system.
Properties
| Property | Type | Description |
|---|---|---|
| id | string | Unique identifier for the user |
| scope | string | The scope of access for the user |
| string | Email address of the user | |
| username | string | Username of the user |
Usage
This schema is used in the following endpoints:
- GET /users (top-level endpoint for user search)
- GET /{serviceId}/users
- PATCH /{serviceId}/users
- DELETE /{serviceId}/users (as query parameters)
Example
{
"id": "user-123",
"scope": "admin",
"username": "johndoe"
}
This schema is used in user management operations within the ConfidentialMind Manager API, including the top-level user search endpoint and service-specific user operations.