Hi, Keith

Thank you for your answer.

Tell me, if I need to nest another list inside the list, do you know how to do it?

For example:

"numbers": [
  {"numbers": 1,
   "sub-numbers":[ 
    1.1
    2.2
   ] 
  }
  {"numbers": 2,
   "sub-numbers":[
    2.1,
    2.2
    ]
   }

or like this (include sub-item)