action apicurio_get_current_user_info { label: "Get current user" description: "Returns information about the currently authenticated user." provider: apicurio method: GET path: "/users/me" encoding: json output: { type: "object" description: "Information about a single user." properties: { admin: { type: "boolean" } developer: { type: "boolean" } displayName: { type: "string" } username: { type: "string" } viewer: { type: "boolean" } } } }