Skip to main content

ResourceUserSchema

The ResourceUserSchema represents a user's access information for a specific resource in the ConfidentialMind system.

Properties

PropertyTypeDescription
idstringUnique identifier for the user
scopestringThe scope of access for the user
emailstringEmail address of the user
usernamestringUsername 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",
"email": "[email protected]",
"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.