Codable

2
2025

Protocol values in Codable objects

When dealing with JSON APIs, it’s quite common to encounter complex properties—both single objects and arrays of objects. As discussed …

A scalable alternative to Decodable enums

Swift’s Decodable and Encodable protocols provide convenient ways to map JSON data into native Swift objects. However, basic …