ArrowTypeError in load_dataset

Hello, I have a json file on the format:

[
   {
      "question": *question-text*
      "answer": *answer-text*
   },
   {
      "question": *question-text*
      "answer": *answer-text*
   },
   ...
]

I want to load this into a hugging face Dataset. I’ve tried to use the load_dataset() function from datasets and the Dataset.from_list() function but in both cases I’ve received ArrowTypeError. Anyone who know why and how I can resolve this?

Hi! Can you paste the entire error stack trace?

Also, please ensure that all the dictionaries share the same set of keys ("question" and "answer") and that the value types are the same (str) (no mixed type “column”)