private bool IsStructured(IVariable variable) { var rawValue = variable?.GetRawValue(); return(HasProperties(rawValue as IRuntimeContextInstance) || HasIndexes(rawValue as ICollectionContext)); }