entriesFromObjects

Creates a new object entries definition from existing object schemas.

const entries = v.entriesFromObjects<TSchemas>(schemas);

Generics

  • TSchemas extends [Schema, ...Schema[]]

Parameters

  • schemas TSchemas

Returns

  • entries MergedEntries<TSchemas>

Examples

The following example show how entriesFromObjects can be used.

Hint: The third schema of the list overwrites the foo and baz properties of the previous schemas.

const ObjectSchema = v.object(
  v.entriesFromObjects([
     v.object({ foo:  v.string(), bar:  v.string() });
     v.object({ baz:  v.number(), qux:  v.number() });
     v.object({ foo:  v.boolean(), baz:  v.boolean() });
  ])
);

The following APIs can be combined with entriesFromObjects.

Schemas

Contributors

Thanks to all the contributors who helped make this page better!

  • GitHub profile picture of fabian-hiller

Partners

Thanks to our partners who support the project ideally and financially.

Sponsors

Thanks to our GitHub sponsors who support the project financially.

  • GitHub profile picture of antfu
  • GitHub profile picture of Thanaen
  • GitHub profile picture of osdiab
  • GitHub profile picture of ruiaraujo012
  • GitHub profile picture of hyunbinseo
  • GitHub profile picture of F0rce
  • GitHub profile picture of Unique-Pixels
  • GitHub profile picture of jdgamble555
  • GitHub profile picture of nickytonline
  • GitHub profile picture of KubaJastrz
  • GitHub profile picture of andrewmd5
  • GitHub profile picture of caegdeveloper
  • GitHub profile picture of dslatkin