{
    "title": "contact_inquiries",
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "description": "Primary key, auto-increment"
        },
        "name": {
            "type": "string",
            "description": "Full name of the person making the inquiry"
        },
        "email": {
            "type": "string",
            "description": "Email address of the inquirer"
        },
        "phone": {
            "type": "string",
            "description": "Phone number of the inquirer"
        },
        "subject": {
            "type": "string",
            "description": "Subject of the inquiry"
        },
        "message": {
            "type": "string",
            "description": "Detailed message content"
        }
    },
    "required": [
        "id",
        "name",
        "email",
        "subject",
        "message"
    ]
}