Hello i have categories with answers data, e.g.:
- Europe: Germany, Austria, Hungary
- Asia: China, Japan, Cambodia
And I need to put it in json:
{
"correctAnswers": {
"category": {
"name" : "Europe",
"categoryAnswers": ["Germany", "Austria", "Hungary"]
}
}
}
How i can add the second category Asia with answers?
I understand that my question is very simple and my suggested variant may be not optimal but i am total new in Json and haven’t get the right answer in Google.
>Solution :
{
"correctAnswers": {
"Europe": {
"name": "Europe",
"categoryAnswers": ["Germany", "Austria", "Hungary"]
},
"Asia": {
"name": "Asia",
"categoryAnswers": ["China", "Japan", "India"]
}
}
}