|
1 | 1 | TigerShark is an X12 EDI message parser that can be tailored to |
2 | 2 | a specific partner in the health care payment ecosystem. |
3 | 3 |
|
| 4 | + |
| 5 | +Version 0.3.4 |
| 6 | +------------- |
| 7 | + |
| 8 | +This patch cleans up the X12 271 Service Type Codes to bring them in line with current use. This patch also includes |
| 9 | +parsers for the 5010 versions of Professional (X222A1) and Institutional (X223A1) 837 transactions. |
| 10 | +* Updates `enums.eligibility.service_type_codes` to include new and missing Service Type Codes |
| 11 | +* Adds `enums.eligibility.deprecated_service_type_codes`, a tuple of service type codes that have been deprecated by |
| 12 | + X12 |
| 13 | +* Adds `X12_5010_X222A1` and `X12_5010_X223A1` parsers for 837 5010 messages |
| 14 | +* This does NOT add or update any facades related to 837 transactions (existing 837 facades only function for 4010 |
| 15 | + messages) |
| 16 | + |
| 17 | +The `service_type_codes` dict was last updated in June 2012. Since then, 21 Service Type Codes have been added, |
| 18 | +7 of which have already been deprecated. |
| 19 | + |
| 20 | +13 Service Type Codes have been deprecated by X12 (including 7 added in this patch). All 13 have been |
| 21 | +preserved in `service_type_codes`, as this module may be used to parse existing/old 271 responses. The |
| 22 | +`deprecated_service_type_codes` tuple has been added as a helper to identify which codes are considered inactive. |
| 23 | + |
| 24 | +Note: the code `EO` ("ECHO-OSCAR") appears to have been added in error temporarily as a duplicate of `E0` |
| 25 | +("ECHO-ZERO") for a 4-month span in 2017. The code has been added back in on the chance it made its way into |
| 26 | +any production systems. |
| 27 | + |
| 28 | +New Service Type Codes: |
| 29 | + |
| 30 | +| Code | Label | Date Added | Date Deprecated | |
| 31 | +| --- | --- | --- | --- | |
| 32 | +| E29 | Technical Cardiac Rehabilitation Services Component | 09/30/2012 | 07/01/2016 | |
| 33 | +| E30 | Professional Cardiac Rehabilitation Services Component | 09/30/2012 | 07/01/2016 | |
| 34 | +| E31 | Professional Intensive Cardiac Rehabilitation Services Component | 09/30/2012 | 07/01/2016 | |
| 35 | +| E32 | Intensive Cardiac Rehabilitation - Technical Component | 06/02/2013 | 05/01/2017 | |
| 36 | +| E33 | Intensive Cardiac Rehabilitation | 06/02/2013 | | |
| 37 | +| E34 | Pulmonary Rehabilitation - Technical Component | 06/02/2013 | 05/01/2017 | |
| 38 | +| E35 | Pulmonary Rehabilitation - Professional Component | 06/02/2013 | 05/01/2017 | |
| 39 | +| E36 | Convenience Care | 06/02/2013 | | |
| 40 | +| E37 | Telemedicine | 07/01/2015 | | |
| 41 | +| E38 | Pharmacist Services | 07/01/2015 | | |
| 42 | +| E39 | Diabetic Education | 03/01/2016 | | |
| 43 | +| E40 | Early Intervention | 11/01/2016 | | |
| 44 | +| EO | Applied Behavioral Analysis Therapy | 03/01/2017 | 07/01/2017 | |
| 45 | +| F1 | Medical Coverage | 11/01/2015 | | |
| 46 | +| F2 | Social Work Coverage | 11/01/2015 | | |
| 47 | +| F3 | Dental Coverage | 11/01/2015 | | |
| 48 | +| F4 | Hearing Coverage | 11/01/2015 | | |
| 49 | +| F5 | Prescription Drug Coverage | 11/01/2015 | | |
| 50 | +| F6 | Vision Coverage | 11/01/2015 | | |
| 51 | +| F7 | Orthodontia Coverage | 11/01/2015 | | |
| 52 | +| F8 | Mental Health Coverage | 11/01/2015 | | |
| 53 | + |
| 54 | +More on service type codes on the [official X12 website](https://x12.org/codes/service-type-codes). |
| 55 | +* _Note: Use the |
| 56 | +"Show All" filter to view current and deprecated codes (page only displays current codes by default.)_ |
| 57 | + |
| 58 | + |
4 | 59 | Version 0.3.3 |
5 | 60 | ------------- |
6 | 61 |
|
|
0 commit comments