Skip to content

Commit

Permalink
Missing decimal schema for default value resolver (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertcoltheart committed Mar 4, 2024
1 parent 74d6c56 commit 94efe28
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -46,6 +46,7 @@ internal DefaultValueResolver()
{ typeof(LongSchema), json => ConvertTo<long>(json) },
{ typeof(FloatSchema), json => ConvertTo<float>(json) },
{ typeof(DoubleSchema), json => ConvertTo<double>(json) },
{ typeof(DecimalSchema), json => ConvertTo<decimal>(json) },
{ typeof(StringSchema), json => json },
{ typeof(BytesSchema), ConvertToBytes },
{ typeof(NullSchema), this.ParseNull },
Expand Down

0 comments on commit 94efe28

Please sign in to comment.