components:
schemas:
AccessDeniedExceptionResponseContent:
description: The server response for authorization failure.
properties:
code:
description: Error classification code
type: string
message:
description: Human-readable error message
type: string
required:
- message
type: object
Claim:
description: Information about the claim and its status.
properties:
claimStatus:
$ref: '#/components/schemas/ComponentsSchemasClaimStatus'
description: The status, required action, and paid information of a claim or service line.
serviceDetails:
description: Information about specific service lines and their status. Payers may not return service
line details for all claims, even when you requested them.
items:
$ref: '#/components/schemas/ServiceDetail'
type: array
type: object
ClaimStatusContactInformation:
properties:
electronicDataInterChangeAccessNumber:
description: The payer's Electronic Data Interchange Access number.
type: string
email:
description: The payer's email address.
type: string
fax:
description: The payer's fax number, without separators. For example, `5551123345` for `555-112-3345`
type: string
name:
description: The payer contact name.
type: string
phone:
description: The payer's telephone number. Phone numbers are formatted as AAABBBCCCC, where AAA represents
the area code, BBB represents the telephone number prefix, and CCCC represents the telephone number.
Phone numbers are provided without separators, such as dashes or parentheses. For example, `5551123345`
for `555-112-3345`.
type: string
phoneExtension:
description: The payer's telephone extension.
type: string
type: object
ClaimStatusEncounter:
description: "Information about the referenced claim or claims for which you want to retrieve status information.\n\
\ - We recommend supplying a date range that is at least plus or minus 7 days from the date of the services\
\ listed in the claim, using the `beginningDateOfService` and `endDateOfService` properties. The payer may\
\ have stored a different date for the encounter than the one in your records, so providing a date range\
\ increases the likelihood that the payer will find a match.\n - Don't submit future dates - only submit\
\ date ranges up to and including today's date. Some payers reject requests containing future service dates."
properties:
beginningDateOfService:
description: The date the service began.
pattern: ^\d{4}(0[1-9]|1[0-2])(0[1-9]|[12]\d|3[01])$
type: string
billingType:
description: The billing type reference ID. For example, the billing type for inpatient services is `111`.
maxLength: 50
minLength: 1
type: string
clearingHouseClaimNumber:
description: The claim number provided by the clearinghouse.
maxLength: 50
minLength: 1
type: string
endDateOfService:
description: The date the service ended.
pattern: ^\d{4}(0[1-9]|1[0-2])(0[1-9]|[12]\d|3[01])$
type: string
locationIdentifier:
description: The application or location identifier. Required if the application or location system identifier
is known.
maxLength: 50
minLength: 1
type: string
patientAccountNumber:
description: The patient account number provided by the service provider.
maxLength: 50
minLength: 1
type: string
pharmacyPrescriptionNumber:
description: The patient's pharmacy prescription number.
maxLength: 50
minLength: 1
type: string
submittedAmount:
description: The total charges submitted for the claim. Note that not all payer systems retain the original
submitted charges; they are sometimes changed during processing.
maxLength: 18
minLength: 1
type: string
trackingNumber:
description: This is the tracking number assigned to the claim status request. It is returned in the response
as `claims[].claimStatus.trackingNumber`. If the payer requires a tracking number and you do not supply
one, Stedi generates a tracking number for you from a UUID.
maxLength: 50
minLength: 1
type: string
tradingPartnerClaimNumber:
description: An identifier for the claim, assigned by the payer.
maxLength: 50
minLength: 1
type: string
type: object
ClaimStatusPayer:
description: Information about the payer listed in the referenced claim.
properties:
centersForMedicareAndMedicaidServicePlanId:
description: The payer's Health Plan ID (HPID) or Other Entity Identifier (OEID).
type: string
contactInformation:
$ref: '#/components/schemas/ClaimStatusContactInformation'
organizationName:
description: The payer's organization name. For example `UNITEDHEALTHCARE`.
type: string
payerIdentification:
description: The payer's identification number. This is the `tradingPartnerServiceId`.
type: string
type: object
ClaimStatusProviderType:
description: Identifies the type of provider related to the referenced healthcare claim.
enum:
- BillingProvider
- ServiceProvider
type: string
ClaimStatusRawX12RequestContent:
properties:
x12:
type: string
required:
- x12
type: object
ClaimStatusRawX12ResponseContent:
properties:
claims:
description: 'The status information for the claim referenced in the original claim status request.
The payer may return multiple claims in the response if they have more than one claim on file that matches
the information you provided.'
items:
$ref: '#/components/schemas/Claim'
type: array
controlNumber:
description: The control number the payer provided in the claim status response. This is used to identify
the transaction.
type: string
dependent:
$ref: '#/components/schemas/Member'
description: Information about the dependent listed in the referenced claim.
errorResponse:
$ref: '#/components/schemas/ErrorResponse'
implementationTransactionSetSyntaxError:
description: The syntax error code in the 999 Implementation Acknowledgment. It indicates the type of
error (if present) in the EDI request syntax. Visit `IK502` in the [Implementation Acknowledgment specification](https://portal.stedi.com/app/guides/view/hipaa/implementation-acknowledgment-x231/01HRF41ES1DVGCA6X1EHSRPFXZ#properties.heading.properties.transaction_set_response_header_AK2_loop.items.properties.transaction_set_response_trailer_IK5.properties.implementation_transaction_set_syntax_error_code_02)
for a complete list.
type: string
meta:
$ref: '#/components/schemas/ClaimStatusResponseMeta'
payer:
$ref: '#/components/schemas/ClaimStatusPayer'
providers:
description: Information about the billing and/or service providers related to the referenced claim.
items:
$ref: '#/components/schemas/StatusResponseProvider'
type: array
reassociationKey:
description: The control number for the transaction.
type: string
status:
description: The status of the entire claim.
type: string
subscriber:
$ref: '#/components/schemas/ClaimStatusSubscriber'
description: Information about the subscriber listed in the referenced claim.
tradingPartnerServiceId:
description: An ID for the payer you identified in the original claim status request. This value may differ
from the `tradingPartnerServiceId` you submitted in the original request because it reflects the payer's
internal concept of their ID, not necessarily the ID Stedi uses to route requests to this payer.
type: string
transactionSetAcknowledgement:
description: The acknowledgment code in the 999 Implementation Acknowledgment, an EDI file generated by
the payer to acknowledge receipt of the claim status request. It indicates whether the claim status
request was accepted or rejected due to errors in the EDI request syntax.
type: string
x12:
description: The raw X12 EDI response, which is either a 277 Status Request Response or a 999 Implementation
Acknowledgment. A 999 indicates that the request data failed validation. Common failure reasons are
missing required segments and invalid values.
type: string
type: object
ClaimStatusRequestContent:
properties:
controlNumber:
deprecated: true
description: Stedi generates a control number for each claim status check, so you don’t need to include
this property in your request.
maxLength: 9
minLength: 9
type: string
dependent:
$ref: '#/components/schemas/Member'
description: Information about the dependent listed in the referenced claim. You must submit the dependent's
`firstName`, `lastName`, `dateOfBirth`, and `gender` (if known). If the claim set the dependent's gender
to `U` for unknown, you should omit the `gender` property.
encounter:
$ref: '#/components/schemas/ClaimStatusEncounter'
providers:
description: "Information about the billing provider and (optionally) service providers related to the\
\ referenced claim.\n - Exactly one billing provider is **required** in this array. Requests that include\
\ only a service provider are rejected with a `400` error.\n - For each provider, you must set the\
\ `providerType` and one of the following identifiers: `npi`, `taxId`, or `etin`.\n - When the `providerType`\
\ = `BillingProvider`, we recommend setting `etin` as the identifier."
items:
$ref: '#/components/schemas/StatusRequestProvider'
description: "Information about the billing provider and (optionally) service providers related to the\
\ referenced claim.\n - Exactly one billing provider is **required** in this array. Requests that\
\ include only a service provider are rejected with a `400` error.\n - For each provider, you must\
\ set the `providerType` and one of the following identifiers: `npi`, `taxId`, or `etin`.\n - When\
\ the `providerType` = `BillingProvider`, we recommend setting `etin` as the identifier."
maxItems: 2147483647
minItems: 1
type: array
serviceLineInformation:
$ref: '#/components/schemas/ServiceLineInformation'
deprecated: true
serviceLinesInformation:
items:
$ref: '#/components/schemas/ServiceLineInformation'
minItems: 1
type: array
subscriber:
$ref: '#/components/schemas/ClaimStatusSubscriber'
tradingPartnerName:
description: This is the payer name, such as Cigna or Aetna.
type: string
tradingPartnerServiceId:
description: "The payer ID. Visit the [Payer Network](https://www.stedi.com/healthcare/network) for a\
\ complete list.\n - You can send requests using the primary payer ID, the Stedi payer ID, or any alias\
\ listed in the payer record.\n - You must include leading `0` characters - payer IDs are alphanumeric\
\ strings and must be treated as complete strings, not integers. For example, use `00540` for SISCO,\
\ not `540`."
maxLength: 80
minLength: 2
type: string
required:
- providers
- subscriber
- tradingPartnerServiceId
type: object
ClaimStatusResponseContent:
properties:
claims:
description: 'The status information for the claim referenced in the original claim status request.
The payer may return multiple claims in the response if they have more than one claim on file that matches
the information you provided.'
items:
$ref: '#/components/schemas/Claim'
type: array
controlNumber:
description: The control number the payer provided in the claim status response. This is used to identify
the transaction.
type: string
dependent:
$ref: '#/components/schemas/Member'
description: Information about the dependent listed in the referenced claim.
errorResponse:
$ref: '#/components/schemas/ErrorResponse'
implementationTransactionSetSyntaxError:
description: The syntax error code in the 999 Implementation Acknowledgment. It indicates the type of
error (if present) in the EDI request syntax. Visit `IK502` in the [Implementation Acknowledgment specification](https://portal.stedi.com/app/guides/view/hipaa/implementation-acknowledgment-x231/01HRF41ES1DVGCA6X1EHSRPFXZ#properties.heading.properties.transaction_set_response_header_AK2_loop.items.properties.transaction_set_response_trailer_IK5.properties.implementation_transaction_set_syntax_error_code_02)
for a complete list.
type: string
meta:
$ref: '#/components/schemas/ClaimStatusResponseMeta'
payer:
$ref: '#/components/schemas/ClaimStatusPayer'
providers:
description: Information about the billing and/or service providers related to the referenced claim.
items:
$ref: '#/components/schemas/StatusResponseProvider'
type: array
reassociationKey:
description: The control number for the transaction.
type: string
status:
description: The status of the entire claim.
type: string
subscriber:
$ref: '#/components/schemas/ClaimStatusSubscriber'
description: Information about the subscriber listed in the referenced claim.
tradingPartnerServiceId:
description: An ID for the payer you identified in the original claim status request. This value may differ
from the `tradingPartnerServiceId` you submitted in the original request because it reflects the payer's
internal concept of their ID, not necessarily the ID Stedi uses to route requests to this payer.
type: string
transactionSetAcknowledgement:
description: The acknowledgment code in the 999 Implementation Acknowledgment, an EDI file generated by
the payer to acknowledge receipt of the claim status request. It indicates whether the claim status
request was accepted or rejected due to errors in the EDI request syntax.
type: string
x12:
description: The raw X12 response from the payer.
type: string
type: object
ClaimStatusResponseMeta:
description: Metadata about the response.
properties:
applicationMode:
description: Identifies where this request can be found for support.
type: string
billerId:
description: The biller ID assigned to this request.
type: string
senderId:
description: The sender ID assigned to this request.
type: string
submitterId:
description: The submitter ID assigned to this request.
type: string
traceId:
description: The unique ID assigned to this request within Stedi.
type: string
type: object
ClaimStatusSubscriber:
description: 'Information about the subscriber listed in the referenced claim.
- You must set both the `dateOfBirth` and `gender` properties when the subscriber is the patient unless
the gender is unknown. Stedi determines that the subscriber is the patient when the `dependent` object is
not included in the request.
- If either `dateOfBirth` or `gender` is set, you must include both properties unless the gender is unknown.'
properties:
dateOfBirth:
description: The subscriber's date of birth.
pattern: ^\d{4}(0[1-9]|1[0-2])(0[1-9]|[12]\d|3[01])$
type: string
firstName:
description: The subscriber's first name as specified on their policy.
maxLength: 35
minLength: 1
type: string
gender:
$ref: '#/components/schemas/ClaimStatusSubscriberGender'
groupNumber:
description: The group number associated with the subscriber's insurance policy.
maxLength: 50
minLength: 1
type: string
lastName:
description: The subscriber's last name as specified on their policy. The subscriber can be an individual
or a business entity.
maxLength: 60
minLength: 1
type: string
memberId:
description: The subscriber's insurance member ID. This is the unique identifier for the subscriber on
the insurance policy.
maxLength: 80
minLength: 2
type: string
suffix:
description: The subscriber's name suffix, such as Jr., Sr., or III. Only include the subscriber's personal
name suffix - **don't** include professional or academic titles, such as M.D. or MBA.
maxLength: 10
minLength: 1
type: string
required:
- firstName
- lastName
- memberId
type: object
ClaimStatusSubscriberGender:
description: A code indicating the subscriber's gender. If the claim set the subscriber's gender to `U` for
unknown, you should omit this property from the claim status request.
enum:
- M
- F
type: string
ComponentsSchemasClaimStatus:
description: The status, required action, and paid information of a claim or service line.
properties:
amountPaid:
description: The total amount paid for the claim. May be zero when no payment is being made. Some payers
can provide the adjudicated payment amount before they issue the remittance.
type: string
checkIssueDate:
description: 'The date the payer issued the check for payment. This may also contain a non-payment remittance
advice date, if available from the payer.
This value is returned in ISO 8601 date format (YYYY-MM-DD). For example: 2026-03-04.'
pattern: ^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12]\d|3[01])$
type: string
checkNumber:
description: The check identification number or electronic funds transfer (EFT) trace number. This number
is used to track the payment. This may also contain a non-payment remittance advice Trace Number (835
or paper), if available from the payer.
type: string
claimServiceDate:
description: Either a single date (formatted as `YYYYMMDD`) or a range of dates (formatted as `YYYYMMDD-YYYYMMDD`)
identifying the period of service related to the claim. This property is derived from the service level
dates.
type: string
clearingHouseClaimNumber:
description: The claim number provided by the clearinghouse.
type: string
effectiveDate:
description: 'The date the claim was placed in this status by the payer''s adjudication process.
This value is returned in ISO 8601 date format (YYYY-MM-DD). For example: 2026-03-04.'
pattern: ^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12]\d|3[01])$
type: string
entity:
$ref: '#/components/schemas/Entity'
description: The description of the `entityCode`. For example, `Home Health Care`.
entityCode:
$ref: '#/components/schemas/EntityCode'
description: 'Code identifying the organizational entity, physical location, property, or individual associated
with the `statusCode`. For example `1G` - Oncology Center.
Visit [Claims code lists](https://www.stedi.com/docs/healthcare/claims-code-lists#entity-identifiers)
for a complete list.'
paidDate:
description: 'This is the date of denial or approval for the claim. This date may or may not be the same
as the issue date of the check, EFT, or non-payment remittance. Some payers can provide this date before
they issue the remittance.
This value is returned in ISO 8601 date format (YYYY-MM-DD). For example: 2026-03-04.'
pattern: ^\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12]\d|3[01])$
type: string
patientAccountNumber:
description: The patient account number provided by the service provider in the original claim. You can
use this value to correlate the claim status response to the original claim.
type: string
statusCategoryCode:
description: The status category code. Visit [Claim Status Category Codes](https://x12.org/codes/claim-status-category-codes)
in the official X12 documentation for a complete list.
type: string
statusCategoryCodeValue:
description: The description of the `statusCategoryCode`.
type: string
statusCode:
description: "The status code used to identify the status of an entire claim or a service line. For example,\
\ `20` - Accepted for Processing. \n\nThis is either a Health Care Claim Status Code or a National Council\
\ for Prescription Drug Programs (NCPDP) Reject/Payment Code, when the status is related to pharmacy\
\ claims.\n\n Visit [Claim Status Codes]([Health Care Claim Status Code](https://x12.org/codes/claim-status-codes)\
\ in the official X12 documentation or the [NCPDP website](https://ncpdp.org/) for a complete list of\
\ codes and their values."
type: string
statusCodeValue:
description: The description of the `statusCode`.
type: string
submittedAmount:
description: The total charges submitted for the claim. The total claim charge may change from the submitted
claim total charge based on claims processing instructions, such as claim splitting. Some payers may
not store the original submitted charge. Some HMO encounters supply zero as the amount of original charges.
type: string
trackingNumber:
description: This is the trace or reference number of the original claim status request.
type: string
tradingPartnerClaimNumber:
description: An identifier for the claim, assigned by the payer.
type: string
type: object
Entity:
description: Entity descriptions corresponding to Entity Identifier codes.
enum:
- Health Maintenance Organization (HMO)
- Oncology Center
- Kidney Dialysis Unit
- Preferred Provider Organization (PPO)
- Acute Care Hospital
- Provider
- Military Facility
- University, College or School
- Outpatient Surgicenter
- Physician, Clinic or Group Practice
- Long Term Care Facility
- Extended Care Facility
- Psychiatric Health Facility
- Laboratory
- Retail Pharmacy
- Home Health Care
- Federal, State, County or City Facility
- Third-Party Administrator
- Miscellaneous Health Care Facility
- Non-Health Care Miscellaneous Facility
- Church Operated Facility
- Partnership
- Public Health Service Facility
- Veterans Administration Facility
- Public Health Service Indian Service Facility
- Hospital Unit of an Institution (prison hospital, college infirmary, etc.)
- Dependent
- Hospital Unit Within an Institution for the Mentally Retarded
- Tuberculosis and Other Respiratory Diseases Facility
- Obstetrics and Gynecology Facility
- Eye, Ear, Nose and Throat Facility
- Rehabilitation Facility
- Orthopedic Facility
- Chronic Disease Facility
- Other Specialty Facility
- Children's General Facility
- Children's Hospital Unit of an Institution
- Children's Psychiatric Facility
- Children's Tuberculosis and Other Respiratory Diseases Facility
- Children's Eye, Ear, Nose and Throat Facility
- Children's Rehabilitation Facility
- Children's Orthopedic Facility
- Children's Chronic Disease Facility
- Children's Other Specialty Facility
- Institution for Mental Retardation
- Alcoholism and Other Chemical Dependency Facility
- General Inpatient Care for AIDS/ARC Facility
- AIDS/ARC Unit
- Specialized Outpatient Program for AIDS/ARC
- Alcohol/Drug Abuse or Dependency Inpatient Unit
- Alcohol/Drug Abuse or Dependency Outpatient Services
- Arthritis Treatment Center
- Birthing Room/LDRP Room
- Burn Care Unit
- Cardiac Catherization Laboratory
- Open-Heart Surgery Facility
- Cardiac Intensive Care Unit
- Angioplasty Facility
- Chronic Obstructive Pulmonary Disease Service Facility
- Emergency Department
- Trauma Center (Certified)
- Extracorporeal Shock-Wave Lithotripter (ESWL) Unit
- Genetic Counseling/Screening Services
- Adult Day Care Program Facility
- Alzheimer's Diagnostic/Assessment Services
- Comprehensive Geriatric Assessment Facility
- Emergency Response (Geriatric) Unit
- Geriatric Acute Care Unit
- Geriatric Clinics
- Respite Care Facility
- Patient Education Unit
- Community Health Promotion Facility
- Worksite Health Promotion Facility
- Hemodialysis Facility
- Home Health Services
- Hospice
- Medical Surgical or Other Intensive Care Unit
- Histopathology Laboratory
- Blood Bank
- Neonatal Intensive Care Unit
- Obstetrics Unit
- Occupational Health Services
- Organized Outpatient Services
- Pediatric Acute Inpatient Unit
- Psychiatric Child/Adolescent Services
- Psychiatric Consultation-Liaison Services
- Psychiatric Education Services
- Psychiatric Emergency Services
- Psychiatric Geriatric Services
- Psychiatric Inpatient Unit
- Psychiatric Outpatient Services
- Psychiatric Partial Hospitalization Program
- Megavoltage Radiation Therapy Unit
- Radioactive Implants Unit
- Therapeutic Radioisotope Facility
- X-Ray Radiation Therapy Unit
- CT Scanner Unit
- Diagnostic Radioisotope Facility
- Magnetic Resonance Imaging (MRI) Facility
- Ultrasound Unit
- Rehabilitation Inpatient Unit
- Rehabilitation Outpatient Services
- Reproductive Health Services
- Skilled Nursing or Other Long-Term Care Unit
- Single Photon Emission Computerized Tomography (SPECT) Unit
- Organized Social Work Service Facility
- Outpatient Social Work Services
- Emergency Department Social Work Services
- Sports Medicine Clinic/Services
- Hospital Auxiliary Unit
- Patient Representative Services
- Volunteer Services Department
- Outpatient Surgery Services
- Organ/Tissue Transplant Unit
- Orthopedic Surgery Facility
- Occupational Therapy Services
- Physical Therapy Services
- Recreational Therapy Services
- Respiratory Therapy Services
- Speech Therapy Services
- Women's Health Center/Services
- Cardiac Rehabilitation Program Facility
- Non-Invasive Cardiac Assessment Services
- Emergency Medical Technician
- Disciplinary Contact
- Case Manager
- Place of Occurrence
- Contracted Service Provider
- Consultant's Office
- Subcontractor
- Service Supplier
- Employer
- Receiver
- Claimant Authorized Representative
- Data Processing Service Bureau
- Performed At
- Attending Physician
- Operating Physician
- Other Physician
- Corrected Insured
- Service Location
- Hospital
- Rendering Provider
- Subscriber's Employer
- Billing Provider
- Pay-to Provider
- Research Institute
- Pharmacist
- Admitting Surgeon
- Commercial Insurer
- Assistant Surgeon
- Consulting Physician
- Ordering Physician
- Referring Provider
- Dependent Name
- Supervising Physician
- Person or Other Entity Legally Responsible for a Child
- Person or Other Entity With Whom a Child Resides
- Previous Employer
- Participating Laboratory
- Facility
- Physical Address
- Mail Address
- Dependent Insured
- Clinic
- Other Insured
- Guardian
- Paramedic
- Paramedical Company
- Previous Insured
- Spouse Insured
- Treatment Facility
- Healthcare Professional Shortage Area (HPSA) Facility
- Home Health Agency
- Independent Physicians Association (IPA)
- Injection Point
- Insured or Subscriber
- Insurer
- Independent Lab
- Legal Representative
- Medical Insurance Carrier
- Mammography Screening Center
- Ordered By
- Doctor of Optometry
- Oxygen Therapy Facility
- Patient Facility
- Primary Insured or Subscriber
- Primary Care Provider
- Prior Insurance Carrier
- Third Party Reviewing Preferred Provider Organization (PPO)
- Third Party Repricing Preferred Provider Organization (PPO)
- Primary Payer
- Party to Receive Test Report
- Party performing certification
- Pickup Address
- Pharmacy
- Purchase Service Provider
- Patient
- Responsible Party
- Policyholder
- Physician
- Managed Care
- Chiropractor
- Dentist
- Doctor of Osteopathy
- Podiatrist
- Group Practice
- Medical Doctor
- Receiving Location
- Rural Health Clinic
- Skilled Nursing Facility
- Secondary Payer
- Service Provider
- Supplier/Manufacturer
- Transfer Point
- Testing Laboratory
- Third Party Reviewing Organization (TPO)
- Transfer To
- Tertiary Payer
- Third Party Repricing Organization (TPO)
- Nursing Home
- Utilization Management Organization
- Spouse
- Durable Medical Equipment Supplier
- Mutually Defined
type: string
EntityCode:
description: Entity Identifier codes used to identify organizational entities, physical locations, properties,
or individuals.
enum:
- 1E
- 1G
- 1H
- 1I
- 1O
- 1P
- 1Q
- 1R
- 1S
- 1T
- 1U
- 1V
- 1W
- 1X
- 1Y
- 1Z
- 2A
- 2B
- 2D
- 2E
- 2I
- 2K
- 2P
- 2Q
- 2S
- 2Z
- '03'
- 3A
- 3C
- 3D
- 3E
- 3F
- 3G
- 3H
- 3I
- 3J
- 3K
- 3L
- 3M
- 3N
- 3O
- 3P
- 3Q
- 3R
- 3S
- 3T
- 3U
- 3V
- 3W
- 3X
- 3Y
- 3Z
- 4A
- 4B
- 4C
- 4D
- 4E
- 4F
- 4G
- 4H
- 4I
- 4J
- 4L
- 4M
- 4N
- 4O
- 4P
- 4Q
- 4R
- 4S
- 4U
- 4V
- 4W
- 4X
- 4Y
- 4Z
- 5A
- 5B
- 5C
- 5D
- 5E
- 5F
- 5G
- 5H
- 5I
- 5J
- 5K
- 5L
- 5M
- 5N
# --- truncated at 32 KB (88 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/stedi/refs/heads/main/openapi/stedi-real-time-claim-status-api-openapi.yml