Duplication over providers array #278
-
Can the same tin appear more than once within a single providers array? For example, I am referring to a scenario like so:
|
Beta Was this translation helpful? Give feedback.
Answered by
shaselton-usds
Nov 22, 2021
Replies: 1 comment 1 reply
-
I'm trying to better understand this. Taking your example: "provider_groups": [{
"npi": [1111111111, 2222222222, 3333333333, 4444444444, 5555555555],
"tin":{
"type": "ein",
"value": "11-1111111"
}
},{
"npi": [1111111111, 6666666666],
"tin":{
"type": "ein",
"value": "11-1111111"
}
}], Is there any reason why it wouldn't be?: "provider_groups": [{
"npi": [1111111111, 2222222222, 3333333333, 4444444444, 5555555555, 6666666666],
"tin":{
"type": "ein",
"value": "11-1111111"
}
}], But to directly answer your question, "no" would be the answer -- it just would be inefficient in terms of space. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
mjbriggs
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm trying to better understand this. Taking your example:
Is there any reason why it wouldn't be?:
But to directly answer your question, "no" would be the …