# Read User Profile Returns the profile and entitlements for the currently authenticated user. Requires a valid JWT in the Authorization header. Endpoint: GET /auth/me Version: 0.1.0 Security: HTTPBearer ## Response 200 fields (application/json): - `user_id` (string, required) Example: "u4567" - `username` (string, required) Example: "john.doe" - `email` (string, required) Example: "john.doe@company.com" - `full_name` (string, required) Example: "John Doe" - `is_active` (boolean) - `roles` (array, required) Example: ["admin","editor"] - `entitlements` (array, required) Example: ["exports:create","charts:read_all"]