{
    "openapi": "3.0.0",
    "info": {
        "title": "User Management API",
        "description": "API for managing user accounts, profiles, and files",
        "contact": {
            "email": "support@example.com"
        },
        "license": {
            "name": "MIT",
            "url": "https://opensource.org/licenses/MIT"
        },
        "version": "1.0.0"
    },
    "servers": [
        {
            "url": "https://antecipaqui.digital/",
            "description": "Local development server"
        }
    ],
    "paths": {
        "/account/settings": {
            "get": {
                "tags": [
                    "Profile"
                ],
                "summary": "Get user account settings",
                "description": "Returns the account settings page for the authenticated user",
                "operationId": "a8241753f144d767541b20afc361b7da",
                "responses": {
                    "200": {
                        "description": "Account settings page",
                        "content": {
                            "text/html": {}
                        }
                    },
                    "401": {
                        "description": "Unauthorized",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/ErrorResponse"
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Page not found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/ErrorResponse"
                                }
                            }
                        }
                    }
                },
                "security": [
                    {
                        "session": []
                    }
                ]
            }
        }
    },
    "components": {
        "schemas": {
            "ErrorResponse": {
                "properties": {
                    "success": {
                        "type": "boolean",
                        "example": false
                    },
                    "message": {
                        "type": "string",
                        "example": "Error message"
                    }
                },
                "type": "object"
            }
        },
        "securitySchemes": {
            "session": {
                "type": "apiKey",
                "name": "PHPSESSID",
                "in": "cookie"
            }
        }
    },
    "tags": [
        {
            "name": "Profile",
            "description": "User profile management"
        }
    ]
}