-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
4335645
commit f0832e6
Showing
22 changed files
with
355 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
apps/bfd-model/bfd-model-rif/src/main/resources/db/migration/V118__rda_0_14_1_updates.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
-- As part of the 0.14.1 RDA API update, new fields added | ||
|
||
/* | ||
* fiss_claims | ||
*/ | ||
ALTER TABLE rda.fiss_claims ADD adm_typ_cd varchar(2); | ||
|
||
/* | ||
* fiss_revenue_lines | ||
*/ | ||
ALTER TABLE rda.fiss_revenue_lines ADD ndc varchar(11); | ||
ALTER TABLE rda.fiss_revenue_lines ADD ndc_qty varchar(11); | ||
ALTER TABLE rda.fiss_revenue_lines ADD ndc_qty_qual varchar(2); | ||
|
||
/* | ||
* mcs_details | ||
*/ | ||
ALTER TABLE rda.mcs_details ADD idr_dtl_ndc varchar(48); | ||
ALTER TABLE rda.mcs_details ADD idr_dtl_ndc_unit_count varchar(15); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
apps/bfd-pipeline/bfd-pipeline-rda-grpc/src/main/proto/rda/VERSION.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.13.0 | ||
0.14.1 |
18 changes: 18 additions & 0 deletions
18
apps/bfd-pipeline/bfd-pipeline-rda-grpc/src/main/proto/rda/v1/fiss/fiss_adm_type_code.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
syntax = "proto3"; | ||
|
||
package gov.cms.mpsm.rda.v1.fiss; | ||
|
||
option java_multiple_files = true; | ||
|
||
import "rda/v1/enum_options.proto"; | ||
|
||
// FISS Adm Type Code | ||
enum FissAdmTypeCode { | ||
ADM_TYPE_0 = 0 [(string_value) = "0"]; | ||
ADM_TYPE_EMERGENCY = 1 [(string_value) = "1"]; | ||
ADM_TYPE_URGENT = 2 [(string_value) = "2"]; | ||
ADM_TYPE_ELECTIVE = 3 [(string_value) = "3"]; | ||
ADM_TYPE_NEWBORN = 4 [(string_value) = "4"]; | ||
ADM_TYPE_TRAUMA_CENTER = 5 [(string_value) = "5"]; | ||
ADM_TYPE_9 = 6 [(string_value) = "9"]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
apps/bfd-pipeline/bfd-pipeline-rda-grpc/src/main/proto/rda/v1/fiss/fiss_ndc_qty_qual.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
syntax = "proto3"; | ||
|
||
package gov.cms.mpsm.rda.v1.fiss; | ||
|
||
option java_multiple_files = true; | ||
|
||
import "rda/v1/enum_options.proto"; | ||
|
||
// FISS NDC quantity qualifier: | ||
// | ||
// This field identifies the NDC quantity qualifier | ||
enum FissNdcQtyQual { | ||
NDC_QTY_QUAL_F2 = 0 [(string_value) = "F2"]; | ||
NDC_QTY_QUAL_GR = 1 [(string_value) = "GR"]; | ||
NDC_QTY_QUAL_ME = 2 [(string_value) = "ME"]; | ||
NDC_QTY_QUAL_ML = 3 [(string_value) = "ML"]; | ||
NDC_QTY_QUAL_UN = 4 [(string_value) = "UN"]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.