Reading "Real world Haskell" i found some intresting question about data types:
This pattern matching and positional data access make it look like you have very tight coupling between data and code that operates on it (try adding something to Book, or worse change the type of an existing part).
This is usually a very bad thing in imperative (particularly OO) languages... is it not seen as a problem in Haskell? source at RWH comments
And really, writing some Haskell programs I found that when I make small change to data type structure it affects almost all functions that use that data type. Maybe there are some good practices for data type usage. How can i minimize code coupling?