department-of-veterans-affairs/vets-website

View on GitHub
src/applications/simple-forms/21-0966/pages/survivingDependentIdentificationInformation.js

Summary

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

/** @type {PageSchema} */
export default {
  uiSchema: {
    ...titleUI('Identification information'),
    survivingDependentID: ssnOrVaFileNumberUI(),
  },
  schema: {
    type: 'object',
    properties: {
      survivingDependentID: ssnOrVaFileNumberSchema,
    },
  },
};