Hi, when you have an unquoted string with leading zeros it removes zeros. `{ "id": 00000111 } -> { "id": 111 }` or `{ "id": A00000111 } -> { "id": "A111" }` I think it's related to Number conversion, but not sure.
Hi, when you have an unquoted string with leading zeros it removes zeros.
{ "id": 00000111 } -> { "id": 111 }or
{ "id": A00000111 } -> { "id": "A111" }I think it's related to Number conversion, but not sure.