Schema 0.67 (Release)
Simplifying Type Extraction
When we work with schemas, it's common to need to extract their types automatically.
To make this easier, we've made some changes to the Schema
interface.
Now, you can easily access Type
and Encoded
directly from a schema without the need for Schema.Schema.Type
and Schema.Schema.Encoded
.
ts
import { Schema } from "@effect/schema"const PersonSchema = Schema.Struct({name: Schema.String,age: Schema.NumberFromString})type PersonType = typeof PersonSchema.Typetype PersonEncoded = typeof PersonSchema.Encoded
ts
import { Schema } from "@effect/schema"const PersonSchema = Schema.Struct({name: Schema.String,age: Schema.NumberFromString})type PersonType = typeof PersonSchema.Typetype PersonEncoded = typeof PersonSchema.Encoded
Default Constructors
When dealing with data, creating values that match a specific schema is crucial.
To simplify this process, we've introduced default constructors for various types of schemas: Struct
s, filter
s, and brand
s.
Let's dive into each of them with some examples to understand better how they work.
Example (Struct
)
ts
import { Schema } from "@effect/schema"const MyStruct = Schema.Struct({name: Schema.NonEmpty})MyStruct.make({ name: "a" }) // okMyStruct.make({ name: "" })/*throwsError: { name: NonEmpty }└─ ["name"]└─ NonEmpty└─ Predicate refinement failure└─ Expected NonEmpty (a non empty string), actual ""*/
ts
import { Schema } from "@effect/schema"const MyStruct = Schema.Struct({name: Schema.NonEmpty})MyStruct.make({ name: "a" }) // okMyStruct.make({ name: "" })/*throwsError: { name: NonEmpty }└─ ["name"]└─ NonEmpty└─ Predicate refinement failure└─ Expected NonEmpty (a non empty string), actual ""*/
Example (filter
)
ts
import { Schema } from "@effect/schema"const MyNumber = Schema.Number.pipe(Schema.between(1, 10))// const n: numberconst n = MyNumber.make(5) // okMyNumber.make(20)/*throwsError: a number between 1 and 10└─ Predicate refinement failure└─ Expected a number between 1 and 10, actual 20*/
ts
import { Schema } from "@effect/schema"const MyNumber = Schema.Number.pipe(Schema.between(1, 10))// const n: numberconst n = MyNumber.make(5) // okMyNumber.make(20)/*throwsError: a number between 1 and 10└─ Predicate refinement failure└─ Expected a number between 1 and 10, actual 20*/
Example (brand
)
ts
import { Schema } from "@effect/schema"const MyBrand = Schema.Number.pipe(Schema.between(1, 10),Schema.brand("MyNumber"))// const n: number & Brand<"MyNumber">const n = MyBrand.make(5) // okMyBrand.make(20)/*throwsError: a number between 1 and 10└─ Predicate refinement failure└─ Expected a number between 1 and 10, actual 20*/
ts
import { Schema } from "@effect/schema"const MyBrand = Schema.Number.pipe(Schema.between(1, 10),Schema.brand("MyNumber"))// const n: number & Brand<"MyNumber">const n = MyBrand.make(5) // okMyBrand.make(20)/*throwsError: a number between 1 and 10└─ Predicate refinement failure└─ Expected a number between 1 and 10, actual 20*/
When utilizing our default constructors, it's important to grasp the type of value they generate. In the MyBrand
example, the return type of the constructor is number & Brand<"MyNumber">
, indicating that the resulting value is a number
with the added branding "MyNumber".
This differs from the filter example where the return type is simply number
. The branding offers additional insights about the type, facilitating the identification and manipulation of your data.
Note that default constructors are "unsafe" in the sense that if the input does not conform to the schema, the constructor throws an error containing a description of what is wrong. This is because the goal of default constructors is to provide a quick way to create compliant values (for example, for writing tests or configurations, or in any situation where it is assumed that the input passed to the constructors is valid and the opposite situation is exceptional).
Default Constructor Values
When constructing objects, it's common to want to assign default values to certain fields to simplify the creation of new instances.
Our new Schema.withConstructorDefault
combinator allows you to effortlessly manage the optionality of a field in your default constructor.
Example
ts
import { Schema } from "@effect/schema"const PersonSchema = Schema.Struct({name: Schema.NonEmpty,age: Schema.Number.pipe(Schema.propertySignature,Schema.withConstructorDefault(() => 0))})// The age field is optional and defaults to 0console.log(PersonSchema.make({ name: "John" }))// => { age: 0, name: 'John' }
ts
import { Schema } from "@effect/schema"const PersonSchema = Schema.Struct({name: Schema.NonEmpty,age: Schema.Number.pipe(Schema.propertySignature,Schema.withConstructorDefault(() => 0))})// The age field is optional and defaults to 0console.log(PersonSchema.make({ name: "John" }))// => { age: 0, name: 'John' }
Defaults are lazily evaluated, meaning that a new instance of the default is generated every time the constructor is called:
ts
import { Schema } from "@effect/schema"const PersonSchema = Schema.Struct({name: Schema.NonEmpty,age: Schema.Number.pipe(Schema.propertySignature,Schema.withConstructorDefault(() => 0)),timestamp: Schema.Number.pipe(Schema.propertySignature,Schema.withConstructorDefault(() => new Date().getTime()))})console.log(PersonSchema.make({ name: "name1" }))// => { age: 0, timestamp: 1714232909221, name: 'name1' }console.log(PersonSchema.make({ name: "name2" }))// => { age: 0, timestamp: 1714232909227, name: 'name2' }
ts
import { Schema } from "@effect/schema"const PersonSchema = Schema.Struct({name: Schema.NonEmpty,age: Schema.Number.pipe(Schema.propertySignature,Schema.withConstructorDefault(() => 0)),timestamp: Schema.Number.pipe(Schema.propertySignature,Schema.withConstructorDefault(() => new Date().getTime()))})console.log(PersonSchema.make({ name: "name1" }))// => { age: 0, timestamp: 1714232909221, name: 'name1' }console.log(PersonSchema.make({ name: "name2" }))// => { age: 0, timestamp: 1714232909227, name: 'name2' }
Note how the timestamp
field varies.
Defaults can also be applied using the Class
API:
ts
import { Schema } from "@effect/schema"class Person extends Schema.Class<Person>("Person")({name: Schema.NonEmpty,age: Schema.Number.pipe(Schema.propertySignature,Schema.withConstructorDefault(() => 0)),timestamp: Schema.Number.pipe(Schema.propertySignature,Schema.withConstructorDefault(() => new Date().getTime()))}) {}console.log(new Person({ name: "name1" }))// => Person { age: 0, timestamp: 1714400867208, name: 'name1' }console.log(new Person({ name: "name2" }))// => Person { age: 0, timestamp: 1714400867215, name: 'name2' }
ts
import { Schema } from "@effect/schema"class Person extends Schema.Class<Person>("Person")({name: Schema.NonEmpty,age: Schema.Number.pipe(Schema.propertySignature,Schema.withConstructorDefault(() => 0)),timestamp: Schema.Number.pipe(Schema.propertySignature,Schema.withConstructorDefault(() => new Date().getTime()))}) {}console.log(new Person({ name: "name1" }))// => Person { age: 0, timestamp: 1714400867208, name: 'name1' }console.log(new Person({ name: "name2" }))// => Person { age: 0, timestamp: 1714400867215, name: 'name2' }
Default Decoding Values
Our new Schema.withDecodingDefault
combinator makes it easy to handle the optionality of a field during the decoding process.
ts
import { Schema } from "@effect/schema"const MySchema = Schema.Struct({a: Schema.optional(Schema.String).pipe(Schema.withDecodingDefault(() => ""))})console.log(Schema.decodeUnknownSync(MySchema)({}))// => { a: '' }console.log(Schema.decodeUnknownSync(MySchema)({ a: undefined }))// => { a: '' }console.log(Schema.decodeUnknownSync(MySchema)({ a: "a" }))// => { a: 'a' }
ts
import { Schema } from "@effect/schema"const MySchema = Schema.Struct({a: Schema.optional(Schema.String).pipe(Schema.withDecodingDefault(() => ""))})console.log(Schema.decodeUnknownSync(MySchema)({}))// => { a: '' }console.log(Schema.decodeUnknownSync(MySchema)({ a: undefined }))// => { a: '' }console.log(Schema.decodeUnknownSync(MySchema)({ a: "a" }))// => { a: 'a' }
If you want to set default values both for the decoding phase and for the default constructor, you can use Schema.withDefaults
:
ts
import { Schema } from "@effect/schema"const MySchema = Schema.Struct({a: Schema.optional(Schema.String).pipe(Schema.withDefaults({decoding: () => "",constructor: () => "-"}))})console.log(Schema.decodeUnknownSync(MySchema)({}))// => { a: '' }console.log(Schema.decodeUnknownSync(MySchema)({ a: undefined }))// => { a: '' }console.log(Schema.decodeUnknownSync(MySchema)({ a: "a" }))// => { a: 'a' }console.log(MySchema.make({})) // => { a: '-' }console.log(MySchema.make({ a: "a" })) // => { a: 'a' }
ts
import { Schema } from "@effect/schema"const MySchema = Schema.Struct({a: Schema.optional(Schema.String).pipe(Schema.withDefaults({decoding: () => "",constructor: () => "-"}))})console.log(Schema.decodeUnknownSync(MySchema)({}))// => { a: '' }console.log(Schema.decodeUnknownSync(MySchema)({ a: undefined }))// => { a: '' }console.log(Schema.decodeUnknownSync(MySchema)({ a: "a" }))// => { a: 'a' }console.log(MySchema.make({})) // => { a: '-' }console.log(MySchema.make({ a: "a" })) // => { a: 'a' }
Refactoring of Custom Message System
We've refactored the system that handles user-defined custom messages to make it more intuitive.
Now, custom messages no longer have absolute precedence by default. Instead, it becomes an opt-in behavior by explicitly setting a new flag override
with the value true
. Let's see an example:
Previous Approach
ts
import { Schema } from "@effect/schema"const MyString = Schema.String.pipe(Schema.minLength(1),Schema.maxLength(2)).annotations({// This message always takes precedence// So, for any error, the same message will always be shownmessage: () => "my custom message"})const decode = Schema.decodeUnknownEither(MyString)console.log(decode(null)) // "my custom message"console.log(decode("")) // "my custom message"console.log(decode("abc")) // "my custom message"
ts
import { Schema } from "@effect/schema"const MyString = Schema.String.pipe(Schema.minLength(1),Schema.maxLength(2)).annotations({// This message always takes precedence// So, for any error, the same message will always be shownmessage: () => "my custom message"})const decode = Schema.decodeUnknownEither(MyString)console.log(decode(null)) // "my custom message"console.log(decode("")) // "my custom message"console.log(decode("abc")) // "my custom message"
As you can see, no matter where the decoding error is raised, the same error message will always be presented because in the previous version, the custom message by default overrides those generated by previous filters.
Now, let's see how the same schema works with the new system.
Current Approach
ts
import { Schema } from "@effect/schema"const MyString = Schema.String.pipe(Schema.minLength(1),Schema.maxLength(2)).annotations({// This message is shown only if the maxLength filter failsmessage: () => "my custom message"})const decode = Schema.decodeUnknownEither(MyString)console.log(decode(null)) // "Expected a string, actual null"console.log(decode("")) // `Expected a string at least 1 character(s) long, actual ""`console.log(decode("abc")) // "my custom message"
ts
import { Schema } from "@effect/schema"const MyString = Schema.String.pipe(Schema.minLength(1),Schema.maxLength(2)).annotations({// This message is shown only if the maxLength filter failsmessage: () => "my custom message"})const decode = Schema.decodeUnknownEither(MyString)console.log(decode(null)) // "Expected a string, actual null"console.log(decode("")) // `Expected a string at least 1 character(s) long, actual ""`console.log(decode("abc")) // "my custom message"
To restore the old behavior (for example, to address the scenario where a user wants to define a single cumulative custom message describing the properties that a valid value must have and does not want to see default messages), you need to set the override
flag to true
:
ts
import { Schema } from "@effect/schema"const MyString = Schema.String.pipe(Schema.minLength(1),Schema.maxLength(2)).annotations({// By setting the `override` flag to `true`// this message will always be shown for any errormessage: () => ({ message: "my custom message", override: true })})const decode = Schema.decodeUnknownEither(MyString)console.log(decode(null)) // "my custom message"console.log(decode("")) // "my custom message"console.log(decode("abc")) // "my custom message"
ts
import { Schema } from "@effect/schema"const MyString = Schema.String.pipe(Schema.minLength(1),Schema.maxLength(2)).annotations({// By setting the `override` flag to `true`// this message will always be shown for any errormessage: () => ({ message: "my custom message", override: true })})const decode = Schema.decodeUnknownEither(MyString)console.log(decode(null)) // "my custom message"console.log(decode("")) // "my custom message"console.log(decode("abc")) // "my custom message"
Filter API Interface
We've introduced a new API interface to the filter
API. This allows you to access the refined schema using the exposed from
field:
ts
import { Schema } from "@effect/schema"const MyFilter = Schema.Struct({a: Schema.String}).pipe(Schema.filter(() => /* some filter... */ true))// const aField: typeof Schema.Stringconst aField = MyFilter.from.fields.a
ts
import { Schema } from "@effect/schema"const MyFilter = Schema.Struct({a: Schema.String}).pipe(Schema.filter(() => /* some filter... */ true))// const aField: typeof Schema.Stringconst aField = MyFilter.from.fields.a
The signature of the filter
function has been simplified and streamlined to be more ergonomic when setting a default message. In the new signature of filter
, the type of the predicate passed as an argument is as follows:
ts
predicate: (a: A, options: ParseOptions, self: AST.Refinement) =>undefined | boolean | string | ParseResult.ParseIssue
ts
predicate: (a: A, options: ParseOptions, self: AST.Refinement) =>undefined | boolean | string | ParseResult.ParseIssue
with the following semantics:
true
means the filter is successful.false
orundefined
means the filter fails and no default message is set.string
means the filter fails and the returned string is used as the default message.ParseIssue
means the filter fails and the returned ParseIssue is used as an error.
Example
ts
import { Schema } from "@effect/schema"const Positive = Schema.Number.pipe(Schema.filter((n) => (n > 0 ? undefined : "must be positive")))Schema.decodeUnknownSync(Positive)(-1)/*throwsError: { number | filter }└─ Predicate refinement failure└─ must be positive*/
ts
import { Schema } from "@effect/schema"const Positive = Schema.Number.pipe(Schema.filter((n) => (n > 0 ? undefined : "must be positive")))Schema.decodeUnknownSync(Positive)(-1)/*throwsError: { number | filter }└─ Predicate refinement failure└─ must be positive*/
JSON Schema Compiler Refactoring
The JSON Schema compiler has been refactored to be more user-friendly. Now, the make
API attempts to produce the optimal JSON Schema for the input part of the decoding phase. This means that starting from the most nested schema, it traverses the chain, including each refinement, and stops at the first transformation found.
Let's see an example:
ts
import { JSONSchema, Schema } from "@effect/schema"const MySchema = Schema.Struct({foo: Schema.String.pipe(Schema.minLength(2)),bar: Schema.optional(Schema.NumberFromString, {default: () => 0})})console.log(JSON.stringify(JSONSchema.make(MySchema), null, 2))
ts
import { JSONSchema, Schema } from "@effect/schema"const MySchema = Schema.Struct({foo: Schema.String.pipe(Schema.minLength(2)),bar: Schema.optional(Schema.NumberFromString, {default: () => 0})})console.log(JSON.stringify(JSONSchema.make(MySchema), null, 2))
Now, let's compare the JSON Schemas produced in both the previous and new versions.
Before
json
{"$schema": "http://json-schema.org/draft-07/schema#","type": "object","required": ["bar", "foo"],"properties": {"bar": {"type": "number","description": "a number","title": "number"},"foo": {"type": "string","description": "a string at least 2 character(s) long","title": "string","minLength": 2}},"additionalProperties": false,"title": "Struct (Type side)"}
json
{"$schema": "http://json-schema.org/draft-07/schema#","type": "object","required": ["bar", "foo"],"properties": {"bar": {"type": "number","description": "a number","title": "number"},"foo": {"type": "string","description": "a string at least 2 character(s) long","title": "string","minLength": 2}},"additionalProperties": false,"title": "Struct (Type side)"}
As you can see, the JSON Schema produced has:
- a required
foo
field, correctly modeled with a constraint ("minLength": 2
) - a required numeric
bar
field
This happens because in the previous version, the JSONSchema.make
API by default produces a JSON Schema for the Type
part of the schema. That is:
ts
type Type = Schema.Schema.Type<typeof MySchema>/*type Type = {readonly foo: string;readonly bar: number;}*/
ts
type Type = Schema.Schema.Type<typeof MySchema>/*type Type = {readonly foo: string;readonly bar: number;}*/
However, typically, we are interested in generating a JSON Schema for the input part of the decoding process, i.e., in this case for:
ts
type Encoded = Schema.Schema.Encoded<typeof MySchema>/*type Encoded = {readonly foo: string;readonly bar?: string | undefined;}*/
ts
type Encoded = Schema.Schema.Encoded<typeof MySchema>/*type Encoded = {readonly foo: string;readonly bar?: string | undefined;}*/
At first glance, a possible solution might be to generate the JSON Schema of Schema.encodedSchema(schema)
:
ts
console.log(JSON.stringify(JSONSchema.make(Schema.encodedSchema(MySchema)), null, 2))
ts
console.log(JSON.stringify(JSONSchema.make(Schema.encodedSchema(MySchema)), null, 2))
But here's what the result would be:
json
{"$schema": "http://json-schema.org/draft-07/schema#","type": "object","required": ["foo"],"properties": {"foo": {"type": "string","description": "a string","title": "string"},"bar": {"type": "string","description": "a string","title": "string"}},"additionalProperties": false}
json
{"$schema": "http://json-schema.org/draft-07/schema#","type": "object","required": ["foo"],"properties": {"foo": {"type": "string","description": "a string","title": "string"},"bar": {"type": "string","description": "a string","title": "string"}},"additionalProperties": false}
As you can see, we lost the "minLength": 2
constraint, which is the useful part of precisely defining our schemas using refinements.
After
Now, let's see what JSONSchema.make
API produces by default for the same schema:
json
{"$schema": "http://json-schema.org/draft-07/schema#","type": "object","required": ["foo"],"properties": {"foo": {"type": "string","description": "a string at least 2 character(s) long","title": "string","minLength": 2},"bar": {"type": "string","description": "a string","title": "string"}},"additionalProperties": false,"title": "Struct (Encoded side)"}
json
{"$schema": "http://json-schema.org/draft-07/schema#","type": "object","required": ["foo"],"properties": {"foo": {"type": "string","description": "a string at least 2 character(s) long","title": "string","minLength": 2},"bar": {"type": "string","description": "a string","title": "string"}},"additionalProperties": false,"title": "Struct (Encoded side)"}
As you can verify, the refinement has been preserved.
Changelog
For all the details, head over to our changelog.