department-of-veterans-affairs/vets-website

View on GitHub
src/applications/ezr/definitions/attachments.js

Summary

Maintainability
A
0 mins
Test Coverage
export const ezrAttachmentsSchema = {
  type: 'array',
  minItems: 1,
  items: {
    type: 'object',
    required: ['name'],
    properties: {
      name: {
        type: 'string',
      },
      size: {
        type: 'integer',
      },
      confirmationCode: {
        type: 'string',
      },
    },
  },
};