© 2026 Hedgehog Software, LLC
const a = S.Struct({ foo: S.String.annotations({examples: ["bar"]}) }) const b = a.pick("foo"); // retains examples annotation const c = a.pipe(S.pluck("foo")); // discards examples annotation