I'm not following:
`
{
array: [string1 string2 "true" true True TRUE yes y]
}
`
Doesn't look like a valid SEN or JSON. The `y` `yes`, `True`, TRUE` aren't valid keywords/variables/consts and `string1` and `string2` look like variable references which aren't something SEN or JSON support. The closest valid thing I can imagine is:
` { array: ["string1" "string2" "true" true "True" "TRUE" "yes" "y"] } `