get_user
Retrieve detailed information about a specific database user including permissions and access rights by providing the database identifier and username.
Instructions
Get information about a specific database user.
Args: database_id: The database ID or label username: The username to get information for
Returns: User information including permissions
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| database_id | Yes | ||
| username | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "database_id": {
      "title": "Database Id",
      "type": "string"
    },
    "username": {
      "title": "Username",
      "type": "string"
    }
  },
  "required": [
    "database_id",
    "username"
  ],
  "type": "object"
}