import type * as CandidApi from "../../../index"; export interface PatientBase extends CandidApi.IndividualBase { /** The ID used to identify this individual in your system. For example, your internal patient ID or an EHR patient ID. */ externalId: string; /** Box 3 on the CMS-1500 claim form or Form Locator 10 on a UB-04 claim form. The date format should be in ISO 8601 date; formatted YYYY-MM-DD (i.e. 2012-02-01) */ dateOfBirth: string; /** Box 5 on the CMS-1500 claim form or Form Locator 9 on a UB-04 claim form. */ address: CandidApi.StreetAddressShortZip; }