Thanks, Leonid.
As Leonid, said stata files going through direct upload (S3), the mime type is not detected and thus not ingested.
So to get STATA files "ingestable", I had to get the Dataverse software to re-detect the mime type and then re-ingest the file.
Commands from (since UVA's version of Dataverse software is V5.11.1):
https://guides.dataverse.org/en/5.11.1/api/native-api.html#redetect-file-typehttps://guides.dataverse.org/en/5.11.1/api/native-api.html#reingest-a-file-------------------
## update with your API TOKEN, Server URL, and the file ID
export API_TOKEN=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
export SERVER_URL=
https://demo.dataverse.orgexport FILE_ID=24
## Just to make sure the mime type is detected, in my case it did: "application/x-stata-14"
## The dryRun parameter just tells you what it would do
curl -H "X-Dataverse-key:$API_TOKEN" -X POST "$SERVER_URL/api/files/$FILE_ID/redetect?dryRun=true"
## since the mime type was correctly detected, re-ran the command (without "dryRun") to make the mime change permanent
curl -H "X-Dataverse-key:$API_TOKEN" -X POST "$SERVER_URL/api/files/$FILE_ID/redetect
## now that the mime type is correct on the file - in the database, do a re-ingest
curl -H "X-Dataverse-key:$API_TOKEN" -X POST $SERVER_URL/api/files/$FILE_ID/reingest