{
    "name": "DGA Truck Management API",
    "version": "1.0.0",
    "endpoints": {
        "mezzi": {
            "GET \/api\/mezzi.php": "Get all mezzi (with pagination and filters)",
            "GET \/api\/mezzi.php?id={id}": "Get mezzo by ID",
            "POST \/api\/mezzi.php": "Create new mezzo",
            "PUT \/api\/mezzi.php?id={id}": "Update mezzo",
            "DELETE \/api\/mezzi.php?id={id}": "Delete mezzo"
        },
        "errors": {
            "GET \/api\/errors.php": "Get all errors (with pagination and filters)",
            "GET \/api\/errors.php?id={id}": "Get error by ID",
            "POST \/api\/errors.php": "Create new error",
            "PUT \/api\/errors.php?id={id}": "Update error",
            "DELETE \/api\/errors.php?id={id}": "Delete error"
        },
        "repair_centers": {
            "GET \/api\/repair-centers.php": "Get all repair centers",
            "GET \/api\/repair-centers.php?unique": "Get unique centers from errors",
            "POST \/api\/repair-centers.php": "Create new repair center"
        }
    },
    "documentation": "https:\/\/github.com\/yourusername\/dga-backend"
}