npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@ringcentral-integration/jsonschema-page

v0.0.6

Published

The jsonschema page component

Downloads

21

Readme

RingCentral Embeddable - JSONSchemaPage

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.


🚀 Quick Navigation

Find exactly what you need:

📖 New to JSONSchemaPage?

➡️ Complete Documentation & Tutorial

  • Installation guide, basic usage, and comprehensive examples
  • Learn JSON Schema fundamentals and UI Schema customization

🔤 Need Form Inputs?

➡️ Form Input Widgets

  • Text fields, numbers, dropdowns, checkboxes, file uploads
  • All the input controls users type/select in

📄 Need Content Display?

➡️ Display Components

  • Typography, alerts, links, static content
  • Components that show information to users

🎯 Need User Actions?

➡️ Interactive Components

  • Buttons, selection lists, search fields
  • Components users click and interact with

📋 Need Complete Examples?

➡️ Complete Form Examples

  • Real-world forms, validation patterns, complex workflows
  • Full implementation examples

📊 Quick Reference

| 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' } |


⚡ Quick Start

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)}
    />
  );
}

💡 How to Use These Stories

  1. 📋 Copy JSON Configuration - Each story shows the exact schema, uiSchema, and formData
  2. 👁️ Side-by-Side View - See your JSON config alongside the rendered component
  3. 🎮 Interactive Examples - Click, type, and interact to see real behavior
  4. 📊 Live Updates - Watch form data change in real-time as you interact

🛠️ Installation

npm install @ringcentral-integration/jsonschema-page

Peer Dependencies:

npm install @ringcentral/juno @ringcentral/juno-icon react styled-components

✨ Key Features

  • 🎨 Beautiful UI - Styled with RingCentral Juno design system
  • 📱 Responsive - Works on desktop and mobile
  • 🔧 Highly Customizable - Extensive UI Schema options
  • ✅ Built-in Validation - JSON Schema validation + custom rules
  • 🎯 Interactive Elements - Buttons, search, custom fields
  • 📊 Dynamic Forms - Conditional fields and arrays
  • ♿ Accessible - WCAG compliant components
  • ⚡ Performance Optimized - Handles large forms efficiently

🎯 Common Use Cases

  • Configuration Forms - App settings and preferences
  • Data Entry - Complex data collection
  • Survey Forms - Dynamic questionnaires
  • Admin Panels - Management interfaces
  • User Profiles - Registration and profiles
  • Multi-step Wizards - Complex workflows

🔗 Useful Links


Ready to build amazing forms? Start with the Documentation or explore the examples above! 🚀