-2

Can anyone help to clean below JSON

"1-Transaction Transfer Info Segment-F2":{
    "Selling Store Number":"01818",
    "Transaction Date":"2014-09-08",
    "Transaction Time":"05:45:49",
    "Transaction Service Type":"I",
    "IP Time Id":"118180546186"
}

I want to clean this json as below

    1-Transaction Transfer Info Segment-F2 =>1_Transaction_Transfer_Info_Segment_F2
    Selling Store Number => Selling_Store_Number,
Transaction Service Type => Transaction_Servic_Type,
IP Time Id => IP_Time_Id
timlyo
  • 2,086
  • 1
  • 23
  • 35

1 Answers1

0

That is not valid JSON - surround the entire thing with braces {}

For future reference, there are many online JSON validators/viewers which will quickly tell you whether or not you're working with valid JSON.

Just to name a few:

russdot
  • 625
  • 1
  • 7
  • 14