Json format with a [?

I am using mockaroo since yesterday trying to model some data. I’m getting very close - but not entirely there. My model generates:
{
“records”: {
“summaid_”: 0,
“priceSourceid_”: 0,
“date_”: “20160101”,
“pricing”: {
“summaid_”: 0,
“price_”: 46,
“currencyid_”: “USD”
}
}
}

but I need it to generate with the [ symbol by records and pricing… not sure how to get it to do that? Not that the records portion begins with the open bracket, pricing - a subnode should have the same open bracket - and the system should put the closed bracket in - I can certainly copy past “records”:[ into a completed file - but the “pricing_”: needs the open bracket and the {. Thoughts?

“records”: [
{
“summaId_”: 0,
“priceSourceId_”: “IDC”,
“date_”: 20180101,
“pricing_”: [
{
“summaId_”: “DELL”,
“price_”: 15,
“currencyId_”: “USD”
}
]
}
]

forget it - aren’t youtube videos great. Found it.