department-of-veterans-affairs/vets-website

View on GitHub
src/applications/simple-forms/21-0972/pages/preparerPersonalInformation.js

Summary

Maintainability
A
0 mins
Test Coverage
import {
  fullNameNoSuffixSchema,
  fullNameNoSuffixUI,
} from 'platform/forms-system/src/js/web-component-patterns';

/** @type {PageSchema} */
export default {
  uiSchema: {
    'ui:description':
      'We use this information to contact you and verify other details.',
    preparerFullName: fullNameNoSuffixUI(),
  },
  schema: {
    type: 'object',
    properties: {
      preparerFullName: fullNameNoSuffixSchema,
    },
  },
};