effect-io-ai

Package: effect
Module: SchemaIssue

SchemaIssue.MissingKey

Represents a schema issue produced when a required key or tuple index is missing from the input.

When to use

Use when you need to detect absent fields in struct/tuple validation.

Details

See

Signature

declare class MissingKey { constructor(
    /**
     * The metadata for the issue.
     */
    annotations: Schema.Annotations.Key<unknown> | undefined
  ) }

Source

Since v4.0.0