department-of-veterans-affairs/vets-website

View on GitHub
src/applications/simple-forms/21P-0847/pages/preparerIdentificationInformation.js

Summary

Maintainability
A
40 mins
Test Coverage
import {
  ssnSchema,
  ssnUI,
} from 'platform/forms-system/src/js/web-component-patterns';

/** @type {PageSchema} */
export default {
  uiSchema: {
    preparerSsn: ssnUI(),
  },
  schema: {
    type: 'object',
    properties: {
      preparerSsn: ssnSchema,
    },
    required: ['preparerSsn'],
  },
};