How we can reduce Json data Size?

Is there any ways to reduce the Json data size?

3 Likes

We all are using json data in our project and I have seen almost every project using too long Json Key like APPLICANT_FIRST_NAME, APPLICANT_LAST_NAME etc. This will increase the overall size.

  • With smaller Json data sizes, our applications become cheaper and faster.
  • It’s a best practice to use Json field names that are neither too short nor too long.
  • This reduces the Json data size and lowers the Json readability. But our application becomes cheaper, faster and overall performance will also improve.
  • We can document the short Json field names definition for the readability.
3 Likes