npm
npmjs.com › package › @rjsf › utils
rjsf/utils
Utility functions for @rjsf/core. Latest version: 6.3.1, last published: 19 days ago. Start using @rjsf/utils in your project by running `npm i @rjsf/utils`. There are 266 other projects in the npm registry using @rjsf/utils.
» npm install @rjsf/utils
Published Feb 12, 2026
Version 6.3.1
Author Heath Chiavettone
Rjsf-team
rjsf-team.github.io › api reference › rjsf utility functions, constants and types
RJSF utility functions, constants and types | react-jsonschema-form
The @rjsf/utils package exports a set of constants that represent all the keys into various elements of a RJSFSchema or UiSchema that are used by the various utility functions.
GitHub
github.com › rjsf-team › react-jsonschema-form
GitHub - rjsf-team/react-jsonschema-form: A React component for building Web forms from JSON Schema. · GitHub
@rjsf/utils · @rjsf/validator-ajv8 · Read our documentation, powered by Docusaurus. A live playground is hosted on GitHub Pages. Read our contributors' guide to get started.
Starred by 15.7K users
Forked by 2.3K users
Languages TypeScript 97.4% | CSS 2.0%
Rjsf-team
rjsf-team.github.io › advanced customization › custom widgets and fields
Custom Widgets and Fields | react-jsonschema-form
schemaUtils: The current implementation of the SchemaUtilsType (from @rjsf/utils) in use by the Form.
Rjsf-team
rjsf-team.github.io › introduction
Introduction | react-jsonschema-form
$ npm install @rjsf/core @rjsf/utils @rjsf/validator-ajv8 --save
CodeSandbox
codesandbox.io › examples › package › @rjsf › utils
rjsf/utils examples
Use this online @rjsf/utils playground to view and fork @rjsf/utils example apps and templates on CodeSandbox.
GitHub
github.com › rjsf-team › react-jsonschema-form › blob › main › packages › utils › src › types.ts
react-jsonschema-form/packages/utils/src/types.ts at main · rjsf-team/react-jsonschema-form
/** The current implementation of the `SchemaUtilsType` (from `@rjsf/utils`) in use by the `Form`. Used to call any
Author rjsf-team
NPM Compare
npm-compare.com › @rjsf › utils,react-jsonschema-form
rjsf/utils vs react-jsonschema-form - NPM Compare
Choose @rjsf/utils if you need utility functions to enhance the functionality of your JSON Schema forms, such as custom widgets, field templates, or validation logic.
UNPKG
unpkg.com › browse › @rjsf › utils@5.0.0-beta.10 › README.md
rjsf/utils/README.md
[![Build Status][build-shield]][build-url] [![npm][npm-shield]][npm-url] [![npm downloads][npm-dl-shield]][npm-dl-url] [![Contributors][contributors-shield]][contributors-url] [![Apache 2.0 License][license-shield]][license-url] <!-- PROJECT LOGO --> <br /> <p align="center"> <a href="https://github.com/rjsf-team/react-jsonschema-form"> <img src="https://raw.githubusercontent.com/rjsf-team/react-jsonschema-form/7ebc86621d8df8c21f0c39bcca6d476f6f7a2051/packages/utils/logo.png" alt="Logo" width="120" height="120"> </a> <h3 align="center">@rjsf/utils</h3> <p align="center"> Utility functions for
npm
npmjs.com › package › @rjsf › core
rjsf/core
A simple React component capable of building HTML forms out of a JSON schema.. Latest version: 6.3.1, last published: 21 days ago. Start using @rjsf/core in your project by running `npm i @rjsf/core`. There are 343 other projects in the npm ...
» npm install @rjsf/core
Published Feb 12, 2026
Version 6.3.1
Author Nicolas Perriault
GitHub
github.com › rjsf-team › react-jsonschema-form › releases
Releases · rjsf-team/react-jsonschema-form
Updated peer dependencies to ^6.3.x due to type changes in @rjsf/utils that are required in the other libraries
Author rjsf-team
Rjsf-team
rjsf-team.github.io › migration guides › 5.x upgrade guide
5.x Upgrade Guide | react-jsonschema-form
In version 4, RJSF exported all its types directly from @rjsf/core. In version 5, only the types for the Form component and the withTheme() HOC are exported directly from @rjsf/core. All the rest of the types for RJSF are now exported from the new @rjsf/utils package.
Stack Overflow
stackoverflow.com › questions › 71842077 › error-while-using-react-jsonschema-form-with-material-in-typescript-project
reactjs - Error while using react-jsonschema-form with material in typescript project - Stack Overflow
you need to install @rjsf/utils · package.json · { .... "dependencies": { ..... "@rjsf/utils": "^5.0.0-beta.6", ... } } and pass the validator to the form · import validator from '@rjsf/validator-ajv6'; ..... <Form .... validator={validator} ... /> Share · Improve this answer ·
npm
npmjs.com › package › @z1data › rjsf-utils
@z1data/rjsf-utils - npm
Z1Data RJSF Utils. Latest version: 1.0.5, last published: 3 years ago. Start using @z1data/rjsf-utils in your project by running `npm i @z1data/rjsf-utils`. There are no other projects in the npm registry using @z1data/rjsf-utils.
» npm install @z1data/rjsf-utils
Published Jan 27, 2023
Version 1.0.5
Author keaksey
CoCalc
cocalc.com › github › backstage › backstage › blob › master › plugins › scaffolder-react › src › extensions › rjsf.ts
CoCalc -- rjsf.ts
41} from '@rjsf/utils'; 42import Form, { IChangeEvent } from '@rjsf/core'; 43 · 44/** 45 * The props for the `Field` components · 46 * @public ·
Rjsf-team
rjsf-team.github.io › quickstart
Quickstart | react-jsonschema-form
import Form from '@rjsf/core'; import { RJSFSchema, UiSchema } from '@rjsf/utils'; import validator from '@rjsf/validator-ajv8'; const schema: RJSFSchema = { title: 'Test form', type: 'string', }; const uiSchema: UiSchema = { 'ui:classNames': 'custom-css-class', }; render(<Form schema={schema} uiSchema={uiSchema} validator={validator} />, document.getElementById('app'));