JSON Schema Examples:

User Registration Form

{
  "formTitle": "User Registration Form",
  "formDescription": "Create your account by filling out this form.",
  "fields": [
    {
      "id": "username",
      "type": "text",
      "label": "Username",
      "required": true,
      "placeholder": "Enter your username",
      "validation": {
        "minLength": 3,
        "maxLength": 15,
        "message": "Username must be between 3 and 15 c...

Feedback Form

{
  "formTitle": "Feedback Form",
  "formDescription": "We value your feedback. Please fill out this form.",
  "fields": [
    {
      "id": "name",
      "type": "text",
      "label": "Name",
      "required": true,
      "placeholder": "Enter your name"
    },
    {
      "id": "email",
      "type": "email",
      "label": "Email Address",
      "required": true,
      "placeholder": "you@exam...

Event Registration Form

{
  "formTitle": "Event Registration Form",
  "formDescription": "Register for the upcoming event.",
  "fields": [
    {
      "id": "fullName",
      "type": "text",
      "label": "Full Name",
      "required": true,
      "placeholder": "Enter your full name"
    },
    {
      "id": "email",
      "type": "email",
      "label": "Email Address",
      "required": true,
      "placeholder": "yo...

Survey Form

{
  "formTitle": "Survey Form",
  "formDescription": "Help us improve by filling out this survey.",
  "fields": [
    {
      "id": "participantName",
      "type": "text",
      "label": "Participant Name",
      "required": true,
      "placeholder": "Enter your name"
    },
    {
      "id": "ageGroup",
      "type": "select",
      "label": "Age Group",
      "required": true,
      "options":...

Job Application Form

{
  "formTitle": "Job Application Form",
  "formDescription": "Apply for your desired position by filling out the details below.",
  "fields": [
    {
      "id": "fullName",
      "type": "text",
      "label": "Full Name",
      "required": true,
      "placeholder": "Enter your full name"
    },
    {
      "id": "email",
      "type": "email",
      "label": "Email Address",
      "required": ...

Travel Booking Form

{
  "formTitle": "Travel Booking Form",
  "formDescription": "Book your next adventure with us by filling out this form.",
  "fields": [
    {
      "id": "destination",
      "type": "text",
      "label": "Destination",
      "required": true,
      "placeholder": "Where are you going?"
    },
    {
      "id": "departureDate",
      "type": "date",
      "label": "Departure Date",
      "requir...

Newsletter Subscription Form

{
  "formTitle": "Newsletter Subscription Form",
  "formDescription": "Stay updated by subscribing to our newsletter.",
  "fields": [
    {
      "id": "fullName",
      "type": "text",
      "label": "Full Name",
      "required": true,
      "placeholder": "Enter your full name"
    },
    {
      "id": "email",
      "type": "email",
      "label": "Email Address",
      "required": true,
     ...

Product Purchase Form

{
  "formTitle": "Product Purchase Form",
  "formDescription": "Purchase your desired products through this form.",
  "fields": [
    {
      "id": "productName",
      "type": "text",
      "label": "Product Name",
      "required": true,
      "placeholder": "Enter the product name"
    },
    {
      "id": "quantity",
      "type": "number",
      "label": "Quantity",
      "required": true,
  ...

Contact Us Form

{
  "formTitle": "Contact Us Form",
  "formDescription": "Have a question or need assistance? Get in touch with us.",
  "fields": [
    {
      "id": "name",
      "type": "text",
      "label": "Name",
      "required": true,
      "placeholder": "Enter your name"
    },
    {
      "id": "email",
      "type": "email",
      "label": "Email Address",
      "required": true,
      "placeholder": ...

JSON Editor

Loading...

Form Preview

No valid schema available.Please provide a valid schema