{ "paths": { "/users/me": { "get": { "tags": ["Users"], "summary": "Get current user profile", "description": "Returns the full profile of the authenticated user.", "operationId": "getUserProfile", "responses": { "200": { "description": "User profile", "content": { "application/json": { "schema": { "type": "object", "required": ["user"], "properties": { "user": { "$ref": "#/components/schemas/User" } } } } } }, "401": { "description": "Not authenticated", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/Error" } } } } } }, "put": { "tags": ["Users"], "summary": "Update current user profile", "description": "Updates the authenticated user's profile fields such as timezone.", "operationId": "updateUserProfile", "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "timezone": { "type": "string", "example": "America/Asuncion", "description": "IANA timezone name" } } } } } }, "responses": { "200": { "description": "Updated user", "content": { "application/json": { "schema": { "type": "object", "required": ["user"], "properties": { "user": { "$ref": "#/components/schemas/User" } } } } } }, "400": { "description": "Validation error", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/Error" } } } }, "401": { "description": "Not authenticated", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/Error" } } } } } }, "delete": { "tags": ["Users"], "summary": "Delete current user (soft delete)", "description": "Soft-deletes the authenticated user account along with all associated calendars, events, contacts, and revokes all API keys.", "operationId": "deleteUser", "responses": { "200": { "description": "User deleted", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/OkResponse" } } } }, "401": { "description": "Not authenticated", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/Error" } } } } } } } } }