Handle Multiple Authorization Numbers per Claim

If the Institutional Claims required multiple authorization numbers, multiple claims need to be submitted. Submission through the Professional API allows for prior authorization information to be submitted at both the claim and line level Institutional Claims APIs allows for prior authorization information to be submitted at the claim level only. Here is a sample from our Open API Specs.

```
 ClaimSupplementalInformation:
      type: object
      properties:
        reportInformation:
          $ref: '#/components/schemas/ReportInformation'
        priorAuthorizationNumber:
          type: string
          description: 'Loop 2300; Segment: REF; Element: REF02 when REF01 = G1'
```
```
ServiceLineReferenceInformation:
      type: object
      properties:
        repricedLineItemReferenceNumber:
          type: string
          description: 'Loop: 2400, Segment: REF, Element: REF02 Notes: When REF01=9B'
        adjustedRepricedLineItemReferenceNumber:
          type: string
          description: 'Loop: 2400, Segment: REF, Element: REF02 Note: When REF01=9D'
        priorAuthorization:
          maxItems: 5
          minItems: 0
          type: array
          description: Loop 2400 REF
          items:
```