{
    "name": "Voter Data API",
    "version": "1.0.0",
    "endpoints": [
        {
            "path": "\/api\/update",
            "method": "POST",
            "description": "Update voter data",
            "body": {
                "id": "Required. Voter ID to update",
                "...": "Other fields to update"
            }
        },
        {
            "path": "\/api\/fetch_voter_details",
            "method": "GET",
            "description": "Fetch voter details by ID",
            "params": {
                "voter_id": "Required. Voter ID to fetch"
            }
        }
    ]
}