#3 Use some sort of key/value pairs for each object/array for easier reading
Opened by wgaffa on Jan 29, 2023, 1:23 PM
// wgaffa on Jan 29, 2023, 1:23 PM
No key are given to lists or objects
[
[
{
"volume": 5,
"english": "A",
"alBhed": "C"
},
[
{
"_area": "Another",
"_section": null
},
{
"_area": "Test",
"_section": null
}
]
],
[
{
"volume": 6,
"english": "C",
"alBhed": "D"
},
[
{
"_area": "Another",
"_section": null
}
]
]
]
Is an example of a json with 2 Primers and their location. This could be easier to read with keys for example something like.
[
{
"primer": {
"volume": 5,
"english": "A",
"alBhed": "C"
},
"locations": [
{
"_area": "Another",
"_section": null
},
{
"_area": "Test",
"_section": null
}
]
},
{
"primer": {
"volume": 6,
"english": "C",
"alBhed": "D"
},
"locations": [
{
"_area": "Another",
"_section": null
}
]
}
]