I have a return type which is an array of two elements. The first element is an integer and the second element is an array of dictionary with keys of sql_ident and name. The sql_ident value is an integer and the name value is a string.
I can't figure out how to model this in my response object. So it'd be like:
[
12,
[
{
"sql_ident" : 17,
"name" : "Billy Bob"
},
{
"sql_ident" : 935,
"name" : "Tina Turner"
}
]
]