Hi Kaarthick,
The JSON can be saved as Text. The only issue I can imagine is if the size of the JSON is too large for the ScoreBoard attribute.Try setting the ScoreBoard attribute to Text of length 2000.
What was the error message you experienced?
An issue to consider though, is that the JSON can differ in number of characters depending on the content, so you need to make sure the attribute is long enough for all possible cases.
Using binary would help ensure the JSON size does not cause an issue, but looking at this JSON, I don't think you need to go there. If you do decide to use binary, you will need to convert to and from text, checkout the Binary Data API, and use BinaryDataToText, eg BinaryDataToText(TheData, "utf-8") and TextToBinaryData(TheBinary, "utf-8"). The Binary Data API is here https://success.outsystems.com/Documentation/11/Reference/OutSystems_APIs/BinaryData_API#BinaryDataToText
It is also a good practice to split your table if you have an attribute holding large amounts of data.
I hope this helps.
Kind regards,
Stuart