Avatar
@JohnLight The following code is runnable one. @swift-4.2.4 import Foundation struct Empty: Codable, CustomStringConvertible { var description: String { return "{}" } } let json = "[{}, {}, {}]" let decoded = try! JSONDecoder().decode([Empty].self, from: json.data(using: .utf8)!) print(decoded)