Reputation: 101
I am following the suggested LUIS syntax when importing a file, but throws an error "A valid json file is required". I am not sure what it does not like about the file. I even tried a truncated file, and it does not like it. Here is complete content of my file:
[
{
"canonicalForm": "4214441",
"list": [
"SHASTA COUNTY RISK MANAGEMENT REDDING"
]
},
{
"canonicalForm": "4476278",
"list": [
"SEDGWICK UC 14533 SAN DIEGO"
]
}
]
Upvotes: 0
Views: 751
Reputation: 4635
The contents of your file looks fine, but from your screenshot, it looks like the file extension used is .txt
. Change your file extension to .json
, eg. insuranceco.json
.
Upvotes: 3