json parsing em haskell

Estou tentando analisar dados JSON no haskell. Tendo passado por uma enorme quantidade de sites, este é o mais longe que tenho conseguido chegar.

data Address = Address { house :: Integer, street :: String, city :: String, state :: String, zip :: Integer } deriving (Show)
data Person = Person { name :: String, age :: Integer, address :: Address } deriving (Show)

getName :: Person -> String
getName (Person n _ _) = n

getAddress :: Person -> Address
getAddress (Person _ _ a) = a

getState :: Address -> String
getState (Address _ _ _ s _) = s

Eu escrevo isso em um arquivo ex.hs e carrego em ghci ->

Prelude> import Text.JSON
Prelude Text.JSON> :load ex
Main Text.JSON> let aa = "{\"name\": \"some body\", \"age\" : 23, \"address\" : {\"house\" : 285, \"street\" : \"7th Ave.\", \"city\" : \"New York\", \"state\" : \"New York\", \"zip\" : 10001}}"
...> decode aa :: Result JSValue

Devolve

Ok (JSObject (JSONObject {fromJSObject = [("name",JSString (JSONString {fromJSString = "some body"})),("age",JSRational False (23 % 1)),("address",JSObject (JSONObject {fromJSObject = [("house",JSRational False (285 % 1)),("street",JSString (JSONString {fromJSString = "7th Ave."})),("city",JSString (JSONString {fromJSString = "New York"})),("state",JSString (JSONString {fromJSString = "New York"})),("zip",JSRational False (10001 % 1))]}))]}))

Escusado será dizer que parece bastante verboso (e assustador). Eu tentei fazer

...> decode aa :: Result Person

e isso me deu um erro. Como faço para preencher uma instância da estrutura de dados Person dessa string json? Por exemplo, o que devo fazer para obter o estado da pessoa na string JSON ...

questionAnswers(2)

yourAnswerToTheQuestion