isArrayHeaderAfterHyphen function
Checks if content represents an array header after a hyphen
Implementation
bool isArrayHeaderAfterHyphen(String content) {
return content.trim().startsWith(openBracket) &&
findUnquotedChar(content, colon) != -1;
}