Is it possible to create a JSON array with integers like the examples below?
"data" : [
"1000": "1000",
"1200": "1200",
"1400": "1400",
"1600": "1600",
"1800": "1800",
]
or
"data" : [
1000: 1000,
1200: 1200,
1400: 1400,
1600: 1600,
1800: 1800,
]
Not like this
"data" : [
"1000",
"1200",
"1400",
"1600",
"1800",
]
or
"data" : [
0: "1000",
1: "1200",
2: "1400",
3: "1600",
4: "1800",
]
Note: It doesn't matter if the numbers are in string or integer format.
I only want to use integers, no letters or words included.