Getting error while uploading json file in dataset

Hi team,

While I am trying to upload json file in dataset I am getting this error

"Unexpected end-of-input: expected close marker for Object (start marker at record: 1 Property for token ‘AccountNumber’ is unknown at record: 2

Property for token ‘CreditCard’ is unknown at record: 3

Definition-

Property for token ‘Gender’ is unknown at record: 4

Property for token ‘Name’ is unknown at record: 5 Unexpected close marker ')" expected ‘]’ (for root starting at record: 6"

Where I am using this data

{

“AccountNumber”: “1688223642”,

“CreditCard”: “Yes”,

“Gender”: “F”,

“Name”: “Lekha”

}

Can you please help me out what is the correct format of json to upload.

Thanks

Pavan Kumar Charagondla

@PavanC16706021

HI Pavan,

It’s expecting the json under square brackets. Try to give the json under square brackets and check like shown below.

[{

“AccountNumber”: “1688223642”,

“CreditCard”: “Yes”,

“Gender”: “F”,

“Name”: “Lekha”

}]