Column Order in JSON Results from Metabase API Does Not Match Table Structure

I have an issue: I retrieve data from the Metabase API using the endpoint POST /api/card/:card-id/query/json, but the order of columns in the JSON results does not match the order in the table. Do you know why?

My Table
user_id:
address:
name:

The JSON results:
[
{
"user_id": " ",
"address": " ",
"name": " "
}
]

Diagnostic Info:
{
"browser-info": {
"language": "en-US",
"platform": "Win32",
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36",
"vendor": "Google Inc."
},
"system-info": {
"file.encoding": "UTF-8",
"java.runtime.name": "OpenJDK Runtime Environment",
"java.runtime.version": "11.0.24+8",
"java.vendor": "Eclipse Adoptium",
"java.vendor.url": "https://adoptium.net/",
"java.version": "11.0.24",
"java.vm.name": "OpenJDK 64-Bit Server VM",
"java.vm.version": "11.0.24+8",
"os.name": "Linux",
"os.version": "5.10.219-208.866.amzn2.x86_64",
"user.language": "en",
"user.timezone": "UTC"
},
"metabase-info": {
"databases": [
"redshift"
],
"hosting-env": "unknown",
"application-database": "mysql",
"application-database-details": {
"database": {
"name": "MySQL",
"version": "8.0.32"
},
"jdbc-driver": {
"name": "MariaDB Connector/J",
"version": "2.7.10"
}
},
"run-mode": "prod",
"plan-alias": "",
"version": {
"date": "2024-07-30",
"tag": "v0.50.18",
"hash": "c323ffc"
},
"settings": {
"report-timezone": null
}
}
}

Do you mean the row order or column order?