{
"preview": "http://some.img",
"images": [
"http://some1.img",
"http://some2.img"
]
}
type Event struct {
Preview Image `json:"preview"`
Images []Image `json:"images"`
}
type Image struct {
Path string `json:"???"`
}