response = getUrl(url);
lines = response.toJSONList();
for each line in lines
{
providerName = line.getJSON("providerName");
stations = line.getJSON("stations").toJSONList();
for each station in stations <<
something I should put here to limit the for loop>>
{
channelNumber = station.getJSON("channelNumber");
insert into ZipCode_lineup
[
Added_User = zoho.loginuser
zcl_postalCode = input.Zip_Code
zcl_lineupType = input.lineupType
zcl_channelNumber = channelNumber
zcl_providerName = providerName
]
}
}