Multiple TINs #175
-
We are dealing with a situation where we have multiple TINs. Based on the current layout we could just have multiple objects for each time we have more than one TIN, but it seems that it would make more sense to allow TIN to be an array. This would avoid a considerable amount of redundancy similar to some of the other discussions going on. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 9 replies
-
@mh-wogan This has been called out in In-Network file size and data redundancy concerns #99 and glad you are calling it out also. There are many data redundancy issues with the schema and this is one. |
Beta Was this translation helpful? Give feedback.
-
@mh-wogan @BobSyracuse @taylorpatriciab Understood that the hope is to reduce the To articulate this specifically, are you looking to move from the current implementation: {
"providers": [1111111111, 2222222222, 3333333333, 4444444444, 5555555555],
"tin": "11-1111111",
"negotiated_price": {
"negotiated_type": "negotiated",
"negotiated_rate": 123.45,
"expiration_date": "2022-01-01",
"service_code": ["01", "02", "03", "04"]
}
},
{
"providers": [1111111111, 2222222222, 3333333333, 4444444444, 5555555555],
"tin": "22-2222222",
"negotiated_price": {
"negotiated_type": "negotiated",
"negotiated_rate": 123.45,
"expiration_date": "2022-01-01",
"service_code": ["01", "02", "03", "04"]
}
} to this: {
"providers": [{
"npi": [1111111111, 2222222222, 3333333333, 4444444444, 5555555555],
"tin": "11-1111111"
},{
"npi": [1111111111, 2222222222, 3333333333, 4444444444, 5555555555],
"tin": "22-222222"
}],
"negotiated_price": {
"negotiated_type": "negotiated",
"negotiated_rate": 123.45,
"expiration_date": "2022-01-01",
"service_code": ["01", "02", "03", "04"]
}
} In this case, the negotiated rate for the item/service is the same across the provider/tin/service_code relationship, but the combination of the provider and tin are different, correct or was the scenario something different? |
Beta Was this translation helpful? Give feedback.
@mh-wogan @BobSyracuse @taylorpatriciab
Understood that the hope is to reduce the
Negotiated Price Object
s produced.To articulate this specifically, are you looking to move from the current implementation: