
Security News
Feross on TBPN: How North Korea Hijacked Axios
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.
@ringcentral-integration/jsonschema-page
Advanced tools
A powerful React component library that renders dynamic forms based on JSON Schema definitions. Built on top of react-jsonschema-form and beautifully styled with RingCentral Juno components.
Find exactly what you need:
➡️ Complete Documentation & Tutorial
| I want to... | Go to | Example |
|---|---|---|
| Learn the basics | Documentation | Installation, basic usage |
| Add a text input | Text Input Widget | { type: 'string', title: 'Name' } |
| Add a dropdown | Select Widget | { enum: ['option1', 'option2'] } |
| Add a button | Button Fields | { 'ui:field': 'button' } |
| Show an alert | Alert Fields | { 'ui:field': 'alert' } |
| Build a contact form | Contact Form | Complete working example |
| Handle file uploads | File Upload | { type: 'string', format: 'data-url' } |
import { JSONSchemaPage } from '@ringcentral-integration/jsonschema-page';
import { useState } from 'react';
function MyForm() {
const [formData, setFormData] = useState({});
const schema = {
title: 'Contact Form',
type: 'object',
properties: {
name: { type: 'string', title: 'Full Name' },
email: { type: 'string', format: 'email', title: 'Email' }
},
required: ['name', 'email']
};
return (
<JSONSchemaPage
schema={schema}
formData={formData}
onFormDataChange={setFormData}
onSubmit={(data) => console.log('Submitted:', data.formData)}
/>
);
}
schema, uiSchema, and formDatanpm install @ringcentral-integration/jsonschema-page
Peer Dependencies:
npm install @ringcentral/juno @ringcentral/juno-icon react styled-components
Ready to build amazing forms? Start with the Documentation or explore the examples above! 🚀
FAQs
The jsonschema page component
We found that @ringcentral-integration/jsonschema-page demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.

Security News
OpenSSF has issued a high-severity advisory warning open source developers of an active Slack-based campaign using impersonation to deliver malware.

Research
/Security News
Malicious packages published to npm, PyPI, Go Modules, crates.io, and Packagist impersonate developer tooling to fetch staged malware, steal credentials and wallets, and enable remote access.