From 35e0208156b2aa523e346974b1acfdd5fe1211fa Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Tue, 16 Jun 2026 14:13:44 -0500 Subject: [PATCH 01/42] Added AVR links --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b341baa..d67c120 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,8 @@ Refer to the [Getting Started](https://github.com/fsmb/api-docs) guide to learn | Date | Release Notes | | - | -| -| 3 Feb 2021 | Added profession to PDC Profile. +| 16 Jun 2026 | Added AVR endpoint. | +| 3 Feb 2021 | Added profession to PDC Profile. | | 4 Dec 2020 | Updated Postman collection and added verification indicators to training. | | 16 Nov 2020 | Added optional authorization endpoint to MedAPI. | | 20 Oct 2020 | Updated PDC Profile endpoint. | @@ -34,6 +35,7 @@ Refer to the [Getting Started](https://github.com/fsmb/api-docs) guide to learn | Scope | Description | | - | - | +| med.avr_read | Grants the ability to read and generate AVR reports. | | med.bio_read | Grants the ability to read a physician's verified information. | | med.cdc_read | Grants the ability to read a physician's profile. | | med.read | Grants the ability to read basic physician information. | @@ -44,6 +46,7 @@ Refer to the [Getting Started](https://github.com/fsmb/api-docs) guide to learn ## Resources +- [AVR](docs/avr/readme.md) - [Licensure](docs/licensure/README.md) - [Practitioners](docs/practitioners/README.md) - [BoardOrders](docs/boardOrders/README.md) From 90ea5f40db7fd483d2b35eed6ece223bf82d9840 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Tue, 16 Jun 2026 14:22:40 -0500 Subject: [PATCH 02/42] Added AVR operations --- docs/avr/readme.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 docs/avr/readme.md diff --git a/docs/avr/readme.md b/docs/avr/readme.md new file mode 100644 index 0000000..b5403b1 --- /dev/null +++ b/docs/avr/readme.md @@ -0,0 +1,12 @@ +# AVR + +URL: /v1/avr + +The AVR resource provides access to reading and generating AVR reports. + +## Operations + +| Operation | Description | +| - | - | +| Get AVR | Gets the AVR profile. | +| Get AVR Report | Gets the AVR report as a PDF. | From 0f5e5ec55b90e103c81aea0d130294af84a2d39e Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Tue, 16 Jun 2026 14:37:43 -0500 Subject: [PATCH 03/42] Create get-avr-report.md --- docs/avr/get-avr-report.md | 49 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 docs/avr/get-avr-report.md diff --git a/docs/avr/get-avr-report.md b/docs/avr/get-avr-report.md new file mode 100644 index 0000000..1c2e5c2 --- /dev/null +++ b/docs/avr/get-avr-report.md @@ -0,0 +1,49 @@ +# Get AVR Report + +Gets the AVR report for a physician. The report is returned as a PDF. + +```http +GET {baseUrl}/v1/avr/{fid} +``` + +## URI Parameters + +| Name | In | Required | Type | Description | +| - | - | - | - | - | +| baseUrl | path | True | string | The API URL. | +| fid | path | True | string | FID of the physician. | + +## Responses + +| Name | Type | Description | +| - | - | - | +| 200 OK | PDF file | Success | +| 400 Bad Request | | FID is invalid. | +| 401 Unauthorized | | Unauthorized. | +| 404 Not Found | | Physician not found. | + +## Security + +Required scopes + +- med.avr_read + +## Examples + +[Get AVR PDF](#get-avr-pdf) + +*** + +### Get AVR PDF + +#### Sample Request + +```http +GET {baseUrl}/v1/avr/999999915 +``` + +#### Sample Response + +Status code: 200 + +Body: PDF file From 490662bbf8087a1e174a73265b2e68b92b6aef97 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Tue, 16 Jun 2026 14:38:22 -0500 Subject: [PATCH 04/42] Update readme.md --- docs/avr/readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/avr/readme.md b/docs/avr/readme.md index b5403b1..28ebc82 100644 --- a/docs/avr/readme.md +++ b/docs/avr/readme.md @@ -8,5 +8,5 @@ The AVR resource provides access to reading and generating AVR reports. | Operation | Description | | - | - | -| Get AVR | Gets the AVR profile. | -| Get AVR Report | Gets the AVR report as a PDF. | +| [Get AVR](get-avr.md) | Gets the AVR profile. | +| [Get AVR Report](get-avr-report.md) | Gets the AVR report as a PDF. | From ac62d63541b9b89dbb028bf5cf9771ab0e9c157e Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Tue, 16 Jun 2026 16:39:43 -0500 Subject: [PATCH 05/42] Update get-avr-report.md --- docs/avr/get-avr-report.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/avr/get-avr-report.md b/docs/avr/get-avr-report.md index 1c2e5c2..bc3c520 100644 --- a/docs/avr/get-avr-report.md +++ b/docs/avr/get-avr-report.md @@ -3,7 +3,7 @@ Gets the AVR report for a physician. The report is returned as a PDF. ```http -GET {baseUrl}/v1/avr/{fid} +GET {baseUrl}/v1/avr/{fid}/report ``` ## URI Parameters From e1f08e9fb56fa1ae3c2b9647acb9dc74a043b341 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Mon, 22 Jun 2026 10:51:21 -0500 Subject: [PATCH 06/42] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d67c120..61697ea 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Refer to the [Getting Started](https://github.com/fsmb/api-docs) guide to learn | Date | Release Notes | | - | -| -| 16 Jun 2026 | Added AVR endpoint. | +| 16 Jun 2026 | Added AVR endpoint. Switched to standard FSMB error response using Problem Details. | | 3 Feb 2021 | Added profession to PDC Profile. | | 4 Dec 2020 | Updated Postman collection and added verification indicators to training. | | 16 Nov 2020 | Added optional authorization endpoint to MedAPI. | From 6b900a7e064086bf0ee78a40fd16f8d2b5438c55 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 12:26:02 -0500 Subject: [PATCH 07/42] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 61697ea..6ce73b2 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Refer to the [Getting Started](https://github.com/fsmb/api-docs) guide to learn | Date | Release Notes | | - | -| -| 16 Jun 2026 | Added AVR endpoint. Switched to standard FSMB error response using Problem Details. | +| 16 Jun 2026 | [Release Notes](relnotes/release-20260616.md) | | 3 Feb 2021 | Added profession to PDC Profile. | | 4 Dec 2020 | Updated Postman collection and added verification indicators to training. | | 16 Nov 2020 | Added optional authorization endpoint to MedAPI. | From e212139149406da11511b6966bc2db66300f1c47 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:02:56 -0500 Subject: [PATCH 08/42] Create release-202606.md --- relnotes/release-202606.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 relnotes/release-202606.md diff --git a/relnotes/release-202606.md b/relnotes/release-202606.md new file mode 100644 index 0000000..471d559 --- /dev/null +++ b/relnotes/release-202606.md @@ -0,0 +1,34 @@ +# Release June 2026 + +[What's New](#whats-new) \ +[Breaking Changes](#breaking-changes) \ +[Deprecated Features](#deprecated-features) + +## What's New + +- This release includes an upgrade of the runtime used by the API resulting in faster performance. See [Breaking Changes](#breaking-changes) for important information. +- This release adds a new [AVR](/docs/avr/readme.md) resource for retrieving the Provider Bridge AVR report for clients that previously used Provider Bridge directly. + +## Breaking Changes + +### Error Handling + +As part of the runtime upgrade the JSON object returned by the API in the cases where the API reports an error has changed. Previously the FSMB-specific Error Response +object was returned. Going forward the standardized [RFC7807 Problem Details](https://tools.ietf.org/html/rfc7807) object is used for reporting errors. The new object is +returned consistently for any status codes that report errors such as 400s and 500s. + +For most clients that just check the status code no changes need to be made. Endpoints continue to return the same status codes as before. In some cases a client may want +more information about why an error occurred, such as for 400s, and may use the fields of the returned object to extract the specific error. In this case client code will +need to be updated to account for the differing formats. + +| Old Field | New Field | Description | +| - | - | - | +| `code` | `type` | Provides a unique error code describing the error. The old field was a name while the new field is a URL, per the RFC. | +| `title` | `message` | A short summary of the problem in human-readable terms. | +| | `detail` | For some errors, a more detailed explanation of the error. | + +Client code that is not updated to the newer format will continue to work based upon the status codes but will not have access to the more detailed error information, if available. + +## Deprecated Features + +- The `Imlcc` resource is deprecated. This resource was an internal resource and not designed for general use. From f255c02fbb29493c8b5db75d1432719aef5c948a Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:03:10 -0500 Subject: [PATCH 09/42] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6ce73b2..c72d874 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Refer to the [Getting Started](https://github.com/fsmb/api-docs) guide to learn | Date | Release Notes | | - | -| -| 16 Jun 2026 | [Release Notes](relnotes/release-20260616.md) | +| 16 Jun 2026 | [Release Notes](relnotes/release-202606.md) | | 3 Feb 2021 | Added profession to PDC Profile. | | 4 Dec 2020 | Updated Postman collection and added verification indicators to training. | | 16 Nov 2020 | Added optional authorization endpoint to MedAPI. | From 934c44587a2146cdbc46712a90cb1f597759d8a7 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:13:22 -0500 Subject: [PATCH 10/42] Create get-avr-profile.md --- docs/avr/get-avr-profile.md | 68 +++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 docs/avr/get-avr-profile.md diff --git a/docs/avr/get-avr-profile.md b/docs/avr/get-avr-profile.md new file mode 100644 index 0000000..6d27e92 --- /dev/null +++ b/docs/avr/get-avr-profile.md @@ -0,0 +1,68 @@ +# Get AVR Profile + +Gets the AVR profile for a physician. + +```http +GET {baseUrl}/v1/avr/{fid} +``` + +## URI Parameters + +| Name | In | Required | Type | Description | +| - | - | - | - | - | +| baseUrl | path | True | string | The API URL. | +| fid | path | True | string | FID of the physician. | + +## Responses + +| Name | Type | Description | +| - | - | - | +| 200 OK | [AvrProfile](types/avr-profile.md) | Success | +| 400 Bad Request | | FID is invalid. | +| 401 Unauthorized | | Unauthorized. | +| 404 Not Found | | Physician not found. | + +## Security + +Required scopes + +- med.avr_read + +## Examples + +[Get AVR](#get-avr) + +*** + +### Get AVR + +#### Sample Request + +```http +GET {baseUrl}/v1/avr/999999915 +``` + +#### Sample Response + +Status code: 200 + +Note: Output is elided. Refer to [AVR Profile](types/avr-profile.md) for a complete example. + +```json +{ + "fid": "999999915", + "reportDateUtc": "2026-06-16T12:00:00Z", + "identity": { + "birthDate": "1978-08-08", + "npi": null + }, + "names": { + "legalName": { + "firstName": "Philip", + "middleName": "James", + "lastName": "Testman" + }, + "alternateNames": [] + } +} +``` From bd829891caf7f083c9ba638903a5929cad5085ba Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:13:59 -0500 Subject: [PATCH 11/42] Update get-avr-report.md --- docs/avr/get-avr-report.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/avr/get-avr-report.md b/docs/avr/get-avr-report.md index bc3c520..0288ca1 100644 --- a/docs/avr/get-avr-report.md +++ b/docs/avr/get-avr-report.md @@ -1,4 +1,4 @@ -# Get AVR Report +# Get AVR Profile Report Gets the AVR report for a physician. The report is returned as a PDF. @@ -39,7 +39,7 @@ Required scopes #### Sample Request ```http -GET {baseUrl}/v1/avr/999999915 +GET {baseUrl}/v1/avr/999999915/report ``` #### Sample Response From c4287f10da52eb3e6609119fc290327920a2f069 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:14:26 -0500 Subject: [PATCH 12/42] Update readme.md --- docs/avr/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/avr/readme.md b/docs/avr/readme.md index 28ebc82..e35dbe5 100644 --- a/docs/avr/readme.md +++ b/docs/avr/readme.md @@ -8,5 +8,5 @@ The AVR resource provides access to reading and generating AVR reports. | Operation | Description | | - | - | -| [Get AVR](get-avr.md) | Gets the AVR profile. | +| [Get AVR](get-avr-profile.md) | Gets the AVR profile. | | [Get AVR Report](get-avr-report.md) | Gets the AVR report as a PDF. | From f939ed30217fcceb9a7d5976212b25547a441566 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:14:42 -0500 Subject: [PATCH 13/42] Update readme.md --- docs/avr/readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/avr/readme.md b/docs/avr/readme.md index e35dbe5..0080cc0 100644 --- a/docs/avr/readme.md +++ b/docs/avr/readme.md @@ -8,5 +8,5 @@ The AVR resource provides access to reading and generating AVR reports. | Operation | Description | | - | - | -| [Get AVR](get-avr-profile.md) | Gets the AVR profile. | -| [Get AVR Report](get-avr-report.md) | Gets the AVR report as a PDF. | +| [Get AVR Profile](get-avr-profile.md) | Gets the AVR profile. | +| [Get AVR Profile Report](get-avr-report.md) | Gets the AVR report as a PDF. | From d828458dc6da039172d6e8dc11bf8fc1f6e16a87 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:15:05 -0500 Subject: [PATCH 14/42] Update get-avr-report.md --- docs/avr/get-avr-report.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/avr/get-avr-report.md b/docs/avr/get-avr-report.md index 0288ca1..fa35706 100644 --- a/docs/avr/get-avr-report.md +++ b/docs/avr/get-avr-report.md @@ -30,11 +30,11 @@ Required scopes ## Examples -[Get AVR PDF](#get-avr-pdf) +[Get AVR](#get-avr) *** -### Get AVR PDF +### Get AVR #### Sample Request From 1b2bbd9acc8e8a763dfd129c3cb300ee21eab56c Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:26:16 -0500 Subject: [PATCH 15/42] Create avr-profile.md --- docs/avr/types/avr-profile.md | 62 +++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 docs/avr/types/avr-profile.md diff --git a/docs/avr/types/avr-profile.md b/docs/avr/types/avr-profile.md new file mode 100644 index 0000000..a9283d7 --- /dev/null +++ b/docs/avr/types/avr-profile.md @@ -0,0 +1,62 @@ +# AVR Profile + +AVR profile + +| Name | Type | Required | Description | +| - | - | - | - | +| fid | string (format: digits, len: 9) | Yes | FID of the physician | +| reportDateUtc | string (format: date) | Yes | Date and time the profile was generated | +| identity | [AvrIdentity](avr-identity.md) | Yes | Physician identity information | +| names | [AvrNamesSection](avr-names-section.md) | Yes | Physician names | +| medicalEducation | [AvrMedicalEducationSection](avr-medicaleducation-section.md) | Yes | Medical education | +| boardOrders | [AvrBoardOrdersSection](avr-boardorders-section.md) | Yes | Board orders | +| graduateMedicalEducation | [AvrGraduateMedicalEducationSection](avr-gme-section.md) | Yes | Graduate medical education | +| usmleExams | [AvrUsmleExamsSection](avr-exams-section.md) | Yes | USMLE exams | +| abmsCertifications | [AvrAbmsCertificationsSection](avr-abms-section.md) | Yes | ABMS certifications | + +*Note: Any fields marked as deprecated will be removed in a future version of the API. New code should not rely on these fields. Existing code should be updated to use alternative fields.* + +Example + +```json +{ + "fid": "999999915", + "reportDateUtc": "2026-06-24T18:25:14.7055032Z", + "identity": { + "birthDate": "1978-08-08", + "npi": "1435537299" + }, + "names": { + "legalName": { + "firstName": "Philip", + "middleName": "James", + "lastName": "Testman" + }, + "alternateNames": [] + }, + "medicalEducation": { + "medicalSchoolName": "West Virginia University School of Medicine", + "city": "Morgantown", + "stateOrProvince": "West Virginia", + "country": "UNITED STATES", + "graduationYear": "2004" + }, + "boardOrders": { + "hasBoardOrders": true, + "meetsImlccRequirements": false + }, + "graduateMedicalEducation": { + "isAma": false, + "meetsImlccRequirements": false, + "accreditedTraining": [] + }, + "usmleExams": { + "meetsImlccRequirements": false, + "exams": [] + }, + "abmsCertifications": { + "meetsImlccRequirements": false, + "certifications": [] + } +} +``` From a74467a594158750808cae9bb335b11b8971a03e Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:27:23 -0500 Subject: [PATCH 16/42] Update avr-profile.md --- docs/avr/types/avr-profile.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/avr/types/avr-profile.md b/docs/avr/types/avr-profile.md index a9283d7..c352fa9 100644 --- a/docs/avr/types/avr-profile.md +++ b/docs/avr/types/avr-profile.md @@ -6,7 +6,7 @@ AVR profile | - | - | - | - | | fid | string (format: digits, len: 9) | Yes | FID of the physician | | reportDateUtc | string (format: date) | Yes | Date and time the profile was generated | -| identity | [AvrIdentity](avr-identity.md) | Yes | Physician identity information | +| identity | [AvrIdentitySection](avr-identity-section.md) | Yes | Physician identity information | | names | [AvrNamesSection](avr-names-section.md) | Yes | Physician names | | medicalEducation | [AvrMedicalEducationSection](avr-medicaleducation-section.md) | Yes | Medical education | | boardOrders | [AvrBoardOrdersSection](avr-boardorders-section.md) | Yes | Board orders | From ff60ed699526fa1d5f3210fe2a881b4ae5b5b5de Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:29:29 -0500 Subject: [PATCH 17/42] Create avr-identity-section.md --- docs/avr/types/avr-identity-section.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 docs/avr/types/avr-identity-section.md diff --git a/docs/avr/types/avr-identity-section.md b/docs/avr/types/avr-identity-section.md new file mode 100644 index 0000000..30503bd --- /dev/null +++ b/docs/avr/types/avr-identity-section.md @@ -0,0 +1,10 @@ +# AVR Identity Section + +Physician identity section + +| Name | Type | Required | Description | +| - | - | - | - | +| birthDate | string (date) | No | Date of birth | +| npi | string (format: digits, len: 10) | No | NPI | + +*Note: Any fields marked as deprecated will be removed in a future version of the API. New code should not rely on these fields. Existing code should be updated to use alternative fields.* From 853159e2566467d4b3b0f4aee40c9b2350a70dd5 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:31:14 -0500 Subject: [PATCH 18/42] Create avr-names-section.md --- docs/avr/types/avr-names-section.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 docs/avr/types/avr-names-section.md diff --git a/docs/avr/types/avr-names-section.md b/docs/avr/types/avr-names-section.md new file mode 100644 index 0000000..b91567a --- /dev/null +++ b/docs/avr/types/avr-names-section.md @@ -0,0 +1,10 @@ +# AVR Names Section + +Names section + +| Name | Type | Required | Description | +| - | - | - | - | +| legalName | [AvrName](avr-name.md) | Yes | Legal name | +| alternateNames | [AvrName[]](avr-name.md) | No | Alternate names | + +*Note: Any fields marked as deprecated will be removed in a future version of the API. New code should not rely on these fields. Existing code should be updated to use alternative fields.* From 89cbfdf83c3706000005bfcfccfd1b274d070166 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:33:00 -0500 Subject: [PATCH 19/42] Create avr-name.md --- docs/avr/types/avr-name.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 docs/avr/types/avr-name.md diff --git a/docs/avr/types/avr-name.md b/docs/avr/types/avr-name.md new file mode 100644 index 0000000..88749ee --- /dev/null +++ b/docs/avr/types/avr-name.md @@ -0,0 +1,12 @@ +# AVR Name + +Physician name + +| Name | Type | Required | Description | +| - | - | - | - | +| firstName | string (len: 50) | Yes | First name | +| middleName | string (len: 50) | No | Middle name | +| lastName | string (len: 50) | Yes | Last name | +| suffix | string (len: 4) | No | Suffix | + +*Note: Any fields marked as deprecated will be removed in a future version of the API. New code should not rely on these fields. Existing code should be updated to use alternative fields.* From 634e9300d729612b8a40f08ed0284586879d3138 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:36:01 -0500 Subject: [PATCH 20/42] Create avr-medicaleducation-section.md --- docs/avr/types/avr-medicaleducation-section.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 docs/avr/types/avr-medicaleducation-section.md diff --git a/docs/avr/types/avr-medicaleducation-section.md b/docs/avr/types/avr-medicaleducation-section.md new file mode 100644 index 0000000..4f58985 --- /dev/null +++ b/docs/avr/types/avr-medicaleducation-section.md @@ -0,0 +1,13 @@ +# AVR Medical Education Section + +Medical education section + +| Name | Type | Required | Description | +| - | - | - | - | +| medicalSchoolName | string (len: ) | Yes | Medical school name | +| city | string (len: ) | No | City | +| stateOrProvince | string (len: ) | No | State or province name | +| country | string (len: ) | No | Country name | +| graduationYear | string (format: yyyy, len: 4) | No | Graduation year | + +*Note: Any fields marked as deprecated will be removed in a future version of the API. New code should not rely on these fields. Existing code should be updated to use alternative fields.* From d275bb5e4cc469a6b12d88817cc7ab10031816f4 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:37:59 -0500 Subject: [PATCH 21/42] Create avr-boardorders-section.md --- docs/avr/types/avr-boardorders-section.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 docs/avr/types/avr-boardorders-section.md diff --git a/docs/avr/types/avr-boardorders-section.md b/docs/avr/types/avr-boardorders-section.md new file mode 100644 index 0000000..1e76d88 --- /dev/null +++ b/docs/avr/types/avr-boardorders-section.md @@ -0,0 +1,10 @@ +# AVR Board Orders Section + +Board orders section + +| Name | Type | Required | Description | +| - | - | - | - | +| hasBoardOrders | boolean | Yes | Indicates if the physician has board orders | +| meetsImlccRequirements | boolean | Yes | Indicates if IMLCC requirements are met | + +*Note: Any fields marked as deprecated will be removed in a future version of the API. New code should not rely on these fields. Existing code should be updated to use alternative fields.* From bfa242ae960ad36d0bf1c464b6d172d9a7f41a2a Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:39:10 -0500 Subject: [PATCH 22/42] Update avr-medicaleducation-section.md --- docs/avr/types/avr-medicaleducation-section.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/avr/types/avr-medicaleducation-section.md b/docs/avr/types/avr-medicaleducation-section.md index 4f58985..616b096 100644 --- a/docs/avr/types/avr-medicaleducation-section.md +++ b/docs/avr/types/avr-medicaleducation-section.md @@ -4,10 +4,10 @@ Medical education section | Name | Type | Required | Description | | - | - | - | - | -| medicalSchoolName | string (len: ) | Yes | Medical school name | -| city | string (len: ) | No | City | -| stateOrProvince | string (len: ) | No | State or province name | -| country | string (len: ) | No | Country name | +| medicalSchoolName | string (len: 100) | Yes | Medical school name | +| city | string (len: 40) | No | City | +| stateOrProvince | string (len: 80) | No | State or province name | +| country | string (len: 80) | No | Country name | | graduationYear | string (format: yyyy, len: 4) | No | Graduation year | *Note: Any fields marked as deprecated will be removed in a future version of the API. New code should not rely on these fields. Existing code should be updated to use alternative fields.* From 0340b22fa5a7519930a01e4ffad4396c5348f7c9 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:41:35 -0500 Subject: [PATCH 23/42] Create avr-gme-section.md --- docs/avr/types/avr-gme-section.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 docs/avr/types/avr-gme-section.md diff --git a/docs/avr/types/avr-gme-section.md b/docs/avr/types/avr-gme-section.md new file mode 100644 index 0000000..0afcb36 --- /dev/null +++ b/docs/avr/types/avr-gme-section.md @@ -0,0 +1,11 @@ +# AvrGraduateMedicalEducationSection + +Graduate medical education section + +| Name | Type | Required | Description | +| - | - | - | - | +| isAma | boolean | Yes | Indicates if the GME was reported by AMA | +| meetsImlccRequirements | boolean | Yes | Indicates if IMLCC requirements are met | +| accreditedTraining [AvrAccreditedTraining[]](avr-accredited-training.md) | No | Accredited GME | + +*Note: Any fields marked as deprecated will be removed in a future version of the API. New code should not rely on these fields. Existing code should be updated to use alternative fields.* From ed9dd6d1be9fb9018d46ace8a3776822e6cedb55 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:41:47 -0500 Subject: [PATCH 24/42] Update avr-boardorders-section.md --- docs/avr/types/avr-boardorders-section.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/avr/types/avr-boardorders-section.md b/docs/avr/types/avr-boardorders-section.md index 1e76d88..e38693a 100644 --- a/docs/avr/types/avr-boardorders-section.md +++ b/docs/avr/types/avr-boardorders-section.md @@ -1,4 +1,4 @@ -# AVR Board Orders Section +# AvrBoardOrdersSection Board orders section From be04d158a962fddcb27ed046c0756894835f5b32 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:42:01 -0500 Subject: [PATCH 25/42] Update avr-identity-section.md --- docs/avr/types/avr-identity-section.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/avr/types/avr-identity-section.md b/docs/avr/types/avr-identity-section.md index 30503bd..5d3ad61 100644 --- a/docs/avr/types/avr-identity-section.md +++ b/docs/avr/types/avr-identity-section.md @@ -1,4 +1,4 @@ -# AVR Identity Section +# AvrIdentitySection Physician identity section From aa65d05574f0ce043b1ca9bd3521f372de190070 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:42:13 -0500 Subject: [PATCH 26/42] Update avr-medicaleducation-section.md --- docs/avr/types/avr-medicaleducation-section.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/avr/types/avr-medicaleducation-section.md b/docs/avr/types/avr-medicaleducation-section.md index 616b096..58fd1bf 100644 --- a/docs/avr/types/avr-medicaleducation-section.md +++ b/docs/avr/types/avr-medicaleducation-section.md @@ -1,4 +1,4 @@ -# AVR Medical Education Section +# AvrMedicalEducationSection Medical education section From f6bf865ee8bd244851ffee2468db34d668bdac4e Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:42:23 -0500 Subject: [PATCH 27/42] Update avr-name.md --- docs/avr/types/avr-name.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/avr/types/avr-name.md b/docs/avr/types/avr-name.md index 88749ee..c46110c 100644 --- a/docs/avr/types/avr-name.md +++ b/docs/avr/types/avr-name.md @@ -1,4 +1,4 @@ -# AVR Name +# AvrName Physician name From d9e962f7bc829789750bf7ad3de1ce4aa7e23c35 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:42:36 -0500 Subject: [PATCH 28/42] Update avr-names-section.md --- docs/avr/types/avr-names-section.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/avr/types/avr-names-section.md b/docs/avr/types/avr-names-section.md index b91567a..5d13534 100644 --- a/docs/avr/types/avr-names-section.md +++ b/docs/avr/types/avr-names-section.md @@ -1,4 +1,4 @@ -# AVR Names Section +# AvrNamesSection Names section From 9ae2a5b13fd7d9b3bd4b889e8b3d833003b60136 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:42:44 -0500 Subject: [PATCH 29/42] Update avr-profile.md --- docs/avr/types/avr-profile.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/avr/types/avr-profile.md b/docs/avr/types/avr-profile.md index c352fa9..23d71a9 100644 --- a/docs/avr/types/avr-profile.md +++ b/docs/avr/types/avr-profile.md @@ -1,4 +1,4 @@ -# AVR Profile +# AvrProfile AVR profile From 4f4c3945bcbcade611e4db6061266ab115ea6e29 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:49:41 -0500 Subject: [PATCH 30/42] Create avr-accredited-training.md --- docs/avr/types/avr-accredited-training.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 docs/avr/types/avr-accredited-training.md diff --git a/docs/avr/types/avr-accredited-training.md b/docs/avr/types/avr-accredited-training.md new file mode 100644 index 0000000..9e0195d --- /dev/null +++ b/docs/avr/types/avr-accredited-training.md @@ -0,0 +1,20 @@ +# AvrAccreditedTraining + +Accredited training + +| Name | Type | Required | Description | +| - | - | - | - | +| accreditationEntity | string (len: 5) | No | Accreditation entity (e.g. ACGME) | +| programName | string (len: 200) | Yes | Program name | +| programCode | string (len: 10) | No | Program code | +| affiliatedInstitution | string (len: 200) | No | Affiliated institution | +| programSpecialty | string (len: 200) | Yes | Program specialty (e.g. Radiology) | +| programType | string (len: 50) | No | Program type (e.g. Residency) | +| trainingStatus | string (len: 50) | Yes | Training status (e.g. Completed) | +| startDate | string (date) | Yes | Start date of the training | +| endDate | string (date) | No | End date of the training, if completed | +| city | string (len: 50) | No | City of the program | +| stateOrProvince | string (len: 100) | No | State or province of the program | +| country | string (len: 100) No | Country of the program | + +*Note: Any fields marked as deprecated will be removed in a future version of the API. New code should not rely on these fields. Existing code should be updated to use alternative fields.* From a4f5ce8f55ed07f9b57dc41c3c681eed8d100508 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:50:03 -0500 Subject: [PATCH 31/42] Update avr-medicaleducation-section.md --- docs/avr/types/avr-medicaleducation-section.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/avr/types/avr-medicaleducation-section.md b/docs/avr/types/avr-medicaleducation-section.md index 58fd1bf..bf156b7 100644 --- a/docs/avr/types/avr-medicaleducation-section.md +++ b/docs/avr/types/avr-medicaleducation-section.md @@ -5,9 +5,9 @@ Medical education section | Name | Type | Required | Description | | - | - | - | - | | medicalSchoolName | string (len: 100) | Yes | Medical school name | -| city | string (len: 40) | No | City | -| stateOrProvince | string (len: 80) | No | State or province name | -| country | string (len: 80) | No | Country name | +| city | string (len: 50) | No | City | +| stateOrProvince | string (len: 100) | No | State or province name | +| country | string (len: 100) | No | Country name | | graduationYear | string (format: yyyy, len: 4) | No | Graduation year | *Note: Any fields marked as deprecated will be removed in a future version of the API. New code should not rely on these fields. Existing code should be updated to use alternative fields.* From cec124ee733aa824cd212563092470eeb6e95522 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:50:21 -0500 Subject: [PATCH 32/42] Update avr-accredited-training.md --- docs/avr/types/avr-accredited-training.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/avr/types/avr-accredited-training.md b/docs/avr/types/avr-accredited-training.md index 9e0195d..c0dcfc0 100644 --- a/docs/avr/types/avr-accredited-training.md +++ b/docs/avr/types/avr-accredited-training.md @@ -15,6 +15,6 @@ Accredited training | endDate | string (date) | No | End date of the training, if completed | | city | string (len: 50) | No | City of the program | | stateOrProvince | string (len: 100) | No | State or province of the program | -| country | string (len: 100) No | Country of the program | +| country | string (len: 100) | No | Country of the program | *Note: Any fields marked as deprecated will be removed in a future version of the API. New code should not rely on these fields. Existing code should be updated to use alternative fields.* From 85e0d3e3a8067d50ad6933996e1f712744cfa3b2 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:51:41 -0500 Subject: [PATCH 33/42] Create avr-exams-section.md --- docs/avr/types/avr-exams-section.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 docs/avr/types/avr-exams-section.md diff --git a/docs/avr/types/avr-exams-section.md b/docs/avr/types/avr-exams-section.md new file mode 100644 index 0000000..64d0640 --- /dev/null +++ b/docs/avr/types/avr-exams-section.md @@ -0,0 +1,10 @@ +# AvrExamsSection + +USMLE exams section + +| Name | Type | Required | Description | +| - | - | - | - | +| meetsImlccRequirements | boolean | Yes | Indicates if IMLCC requirements are met | +| exams | [AvrExam[]](avr-exam.md) | No | List of USMLE exams | + +*Note: Any fields marked as deprecated will be removed in a future version of the API. New code should not rely on these fields. Existing code should be updated to use alternative fields.* From 78b34a280a149297da5276b822019e08c0bd4f07 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:53:07 -0500 Subject: [PATCH 34/42] Create avr-exam.md --- docs/avr/types/avr-exam.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 docs/avr/types/avr-exam.md diff --git a/docs/avr/types/avr-exam.md b/docs/avr/types/avr-exam.md new file mode 100644 index 0000000..d4038db --- /dev/null +++ b/docs/avr/types/avr-exam.md @@ -0,0 +1,10 @@ +# AvrExam + +USMLE exam information + +| Name | Type | Required | Description | +| - | - | - | - | +| examType | string (len: 20) | Yes | Exam type (e.g. STEP 1, STEP 2 CK, STEP 3) | +| meetsImlccRequirements | boolean | Yes | Indicates if IMLCC requirements are met | + +*Note: Any fields marked as deprecated will be removed in a future version of the API. New code should not rely on these fields. Existing code should be updated to use alternative fields.* From f1e01e9517d7a48df03d5174d92a7dc050a5d5a9 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:54:17 -0500 Subject: [PATCH 35/42] Create avr-abms-section.md --- docs/avr/types/avr-abms-section.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 docs/avr/types/avr-abms-section.md diff --git a/docs/avr/types/avr-abms-section.md b/docs/avr/types/avr-abms-section.md new file mode 100644 index 0000000..d453eae --- /dev/null +++ b/docs/avr/types/avr-abms-section.md @@ -0,0 +1,10 @@ +# AvrAbmsSection + +ABMS certifications section + +| Name | Type | Required | Description | +| - | - | - | - | +| meetsImlccRequirements | boolean | Yes | Indicates if IMLCC requirements are met | +| certifications | [AvrAbmsCertification[]](avr-abms-certification.md) | No | List of ABMS certifications | + +*Note: Any fields marked as deprecated will be removed in a future version of the API. New code should not rely on these fields. Existing code should be updated to use alternative fields.* From 36aef03b1c9d4d9fb32acc88e2ab84fc2094427e Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 14:03:11 -0500 Subject: [PATCH 36/42] Create avr-abms-certification.md --- docs/avr/types/avr-abms-certification.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 docs/avr/types/avr-abms-certification.md diff --git a/docs/avr/types/avr-abms-certification.md b/docs/avr/types/avr-abms-certification.md new file mode 100644 index 0000000..f6b67e6 --- /dev/null +++ b/docs/avr/types/avr-abms-certification.md @@ -0,0 +1,14 @@ +# AvrAbmsCertification + +ABMS certification + +| Name | Type | Required | Description | +| - | - | - | - | +| memberBoard | string (len: 80) | Yes | ABMS member board name | +| certificationType | string (len: 80) | Yes | Certification type | +| certificationStatus | string (len: 80) | Yes | Certification status (e.g. Active, Inactive, Expired) | +| expirationDay | string (format: dd, digits, len: 2) | No | Expiration day | +| expirationMonth | string (format: mm, len: 2) | No | Expiration month | +| expirationYear | string (format: yyyy, len: 4) | No | Expiration year | + +*Note: Any fields marked as deprecated will be removed in a future version of the API. New code should not rely on these fields. Existing code should be updated to use alternative fields.* From a209d935e9b7c0a3c70869a54aac692d7edc9a68 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 14:05:32 -0500 Subject: [PATCH 37/42] Update avr-gme-section.md --- docs/avr/types/avr-gme-section.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/avr/types/avr-gme-section.md b/docs/avr/types/avr-gme-section.md index 0afcb36..39dc8b1 100644 --- a/docs/avr/types/avr-gme-section.md +++ b/docs/avr/types/avr-gme-section.md @@ -6,6 +6,6 @@ Graduate medical education section | - | - | - | - | | isAma | boolean | Yes | Indicates if the GME was reported by AMA | | meetsImlccRequirements | boolean | Yes | Indicates if IMLCC requirements are met | -| accreditedTraining [AvrAccreditedTraining[]](avr-accredited-training.md) | No | Accredited GME | +| accreditedTraining | [AvrAccreditedTraining[]](avr-accredited-training.md) | No | Accredited GME | *Note: Any fields marked as deprecated will be removed in a future version of the API. New code should not rely on these fields. Existing code should be updated to use alternative fields.* From 17c58789a678bc528fb1922a449153199630f219 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 24 Jun 2026 14:06:49 -0500 Subject: [PATCH 38/42] Update avr-abms-certification.md From 4d001d41d2f694ded7b76600c2c5f66e0c2baba4 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 1 Jul 2026 14:04:19 -0500 Subject: [PATCH 39/42] Update avr-profile.md --- docs/avr/types/avr-profile.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/avr/types/avr-profile.md b/docs/avr/types/avr-profile.md index 23d71a9..f376e06 100644 --- a/docs/avr/types/avr-profile.md +++ b/docs/avr/types/avr-profile.md @@ -5,7 +5,7 @@ AVR profile | Name | Type | Required | Description | | - | - | - | - | | fid | string (format: digits, len: 9) | Yes | FID of the physician | -| reportDateUtc | string (format: date) | Yes | Date and time the profile was generated | +| reportDateUtc | string (format: datetime) | Yes | Date and time the profile was generated | | identity | [AvrIdentitySection](avr-identity-section.md) | Yes | Physician identity information | | names | [AvrNamesSection](avr-names-section.md) | Yes | Physician names | | medicalEducation | [AvrMedicalEducationSection](avr-medicaleducation-section.md) | Yes | Medical education | From 8ed7699a7cb74f088b43ad2700e1c6b62540c719 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 1 Jul 2026 14:04:50 -0500 Subject: [PATCH 40/42] Update avr-profile.md --- docs/avr/types/avr-profile.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/avr/types/avr-profile.md b/docs/avr/types/avr-profile.md index f376e06..d6a3e9c 100644 --- a/docs/avr/types/avr-profile.md +++ b/docs/avr/types/avr-profile.md @@ -5,7 +5,7 @@ AVR profile | Name | Type | Required | Description | | - | - | - | - | | fid | string (format: digits, len: 9) | Yes | FID of the physician | -| reportDateUtc | string (format: datetime) | Yes | Date and time the profile was generated | +| reportDateUtc | string (datetime) | Yes | Date and time, in UTC, the profile was generated | | identity | [AvrIdentitySection](avr-identity-section.md) | Yes | Physician identity information | | names | [AvrNamesSection](avr-names-section.md) | Yes | Physician names | | medicalEducation | [AvrMedicalEducationSection](avr-medicaleducation-section.md) | Yes | Medical education | From dff1f79399b2cf799437d2818f95a8966b065159 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 1 Jul 2026 14:10:41 -0500 Subject: [PATCH 41/42] Update avr-identity-section.md --- docs/avr/types/avr-identity-section.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/avr/types/avr-identity-section.md b/docs/avr/types/avr-identity-section.md index 5d3ad61..47dcb79 100644 --- a/docs/avr/types/avr-identity-section.md +++ b/docs/avr/types/avr-identity-section.md @@ -5,6 +5,6 @@ Physician identity section | Name | Type | Required | Description | | - | - | - | - | | birthDate | string (date) | No | Date of birth | -| npi | string (format: digits, len: 10) | No | NPI | +| npi | string (format: digits, len: 10) | No | NPI number | *Note: Any fields marked as deprecated will be removed in a future version of the API. New code should not rely on these fields. Existing code should be updated to use alternative fields.* From 1e61e4d26aacf06a5edf300e70782c85c46fba82 Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Wed, 1 Jul 2026 14:12:21 -0500 Subject: [PATCH 42/42] Update avr-name.md --- docs/avr/types/avr-name.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/avr/types/avr-name.md b/docs/avr/types/avr-name.md index c46110c..84d1ecd 100644 --- a/docs/avr/types/avr-name.md +++ b/docs/avr/types/avr-name.md @@ -4,7 +4,7 @@ Physician name | Name | Type | Required | Description | | - | - | - | - | -| firstName | string (len: 50) | Yes | First name | +| firstName | string (len: 50) | No | First name | | middleName | string (len: 50) | No | Middle name | | lastName | string (len: 50) | Yes | Last name | | suffix | string (len: 4) | No | Suffix |