zio-schema icon indicating copy to clipboard operation
zio-schema copied to clipboard

Compositional, type-safe schema definitions, which enable auto-derivation of codecs and migrations.

Results 79 zio-schema issues
Sort by recently updated
recently updated
newest added

/claim #639

🙋 Bounty claim

Fix #639 /claim #639

🙋 Bounty claim

```scala //> using scala 3.4.0 //> using dep dev.zio::zio-schema:1.0.1 //> using dep dev.zio::zio-schema-derivation:1.0.1 //> using dep dev.zio::zio-schema-json:1.0.1 sealed trait Animal object Animal: sealed trait Mammal extends Animal case object Bison...

💎 Bounty

Schema derivation fails when intermediate types with no leaf case objects/classes derived from them are present in the sealed trait (or sealed abstract class) hierarchy. I can understand failure to...

💎 Bounty

Currently, if a field that is a collection is missing, that will lead to a decoding error. Either by default or configurable, if a field that is a collection is...

💎 Bounty

Hello, I'm trying to make a rest api with zio ecosystem and mongoDB. When I tring to encode `scala.math.BigDecimal` in mongoDB, I have this error => `class java.math.BigDecimal cannot be...

How to reproduce, create a case class with an optional field of type Map: ```scala case class ServerVersion( server: String, license: String, version: String, details: Map[String, String] = Map.empty )...

💎 Bounty

I believe there is currently a bug when trying to decode an empty object `{}` when the schema is for a case class with all `Optional` fields resulting in a...

We should imho drop 1.8 and build either with 11/17 or 17/21

💎 Bounty

Hey, We've tried making a field that was an enum into an Option (i.e. rather than `myFIeld: MyEnum` it's now `myField: Option[MyEnum]`) and it seems that when decoding the bytes...

💎 Bounty
💰 Rewarded