Package: effect
Module: SchemaIssue
Wraps an inner Issue with a property-key path, indicating where in
a nested structure the error occurred.
When to use
Use when you need to walk the issue tree to accumulate path segments for error reporting.
Details
path is an array of property keys (strings, numbers, or symbols).actual value — getActual returns Option.none().Pointer paths into a single path like
["a"]["b"][0].See
getActual — returns Option.none() for PointerComposite — groups multiple issues under one schema nodeSignature
declare class Pointer { constructor(
/**
* The path to the location in the input that caused the issue.
*/
path: ReadonlyArray<PropertyKey>,
/**
* The issue that occurred.
*/
issue: Issue
) }
Since v3.10.0