nppes 0.2 → 0.3.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 39c8ab7f86345697add084578817f4d0066b38e0
4
+ data.tar.gz: abaae7253ef85d6f77837d1685c132da389982c4
5
+ SHA512:
6
+ metadata.gz: df33678713bd7857fd13a014fa059bc8a84c8cd836d450703d80fa535846dcebf96f34cb74aed7509d03595a27c68d8ddae54124d945f6375dbbbe24bf5c1109
7
+ data.tar.gz: 9d34c36698d39f6828a5a7e9ba762cc2f4e132f2733819a67a124c74bc7f66edc160cfa0b77f64fcaaf15cda97f7530ee568952e3877cb85f97d522314225741
data/README.md CHANGED
@@ -1,140 +1,117 @@
1
- # EmailTemplate
2
-
3
- Allows your users to edit e-mail templates.
4
- With Devise and Active Admin support (but you don't need them to start using email_template).
1
+ **Nppes** provides methods for building and refreshing the National Plan and Provider Enumeration System database.
2
+ Gem background operations are based on delayed_job_active_record(https://github.com/collectiveidea/delayed_job_active_record) gem.
5
3
 
6
4
  ## Installation
7
5
 
8
- Add this line to your application's Gemfile:
6
+ Add it to your Gemfile:
9
7
 
10
8
  ```ruby
11
- gem 'email_template'
9
+ gem 'nppes'
12
10
  ```
13
11
 
14
- And then execute:
12
+ Run the following command to install it:
15
13
 
16
- ```sh
17
- $ bundle
14
+ ```console
15
+ bundle install
18
16
  ```
19
17
 
20
- Or just:
18
+ Run the generator:
21
19
 
22
- ```sh
23
- $ gem install email_template
20
+ ```console
21
+ rails generate nppes:install
24
22
  ```
25
23
 
26
- ## Usage
24
+ Run the migrations:
27
25
 
28
- Run installer:
26
+ ```console
27
+ rake db:migrate
28
+ ```
29
29
 
30
- ```sh
31
- $ rails g email_template:install
30
+ ## Using
31
+ Run the following for initialization of DB:
32
+ ```console
33
+ rake nppes:init_base
32
34
  ```
33
-
34
- In order to use Devise templates you need to install devise wrapper:
35
-
36
- ```sh
37
- $ rails g email_template:devise_install
35
+
36
+ This command runs cycle check for updates in the background:
37
+ ```console
38
+ rake nppes:auto_update
38
39
  ```
39
-
40
- Then generate common devise templates for a specified scope:
41
-
42
- ```sh
43
- $ rails g email_template:devise_templates <devise_scope>
40
+ This command checks for update once:
41
+ ```console
42
+ rake nppes:update
44
43
  ```
45
-
46
- This generator produces email templates with the names:
47
44
 
48
- ```ruby
49
- <devise_scope>_mailer:confirmation_instructions
50
- <devise_scope>_mailer:reset_password_instructions
51
- <devise_scope>_mailer:unlock_instructions
45
+ ## Service commands
46
+ Run delayed job (Always run automatically):
47
+ ```console
48
+ rake nppes:start_background_env
52
49
  ```
53
50
 
54
- Run:
55
-
56
- ```sh
57
- $ rake db:migrate
51
+ Stop delayed job:
52
+ ```console
53
+ rake nppes:stop_background_env
58
54
  ```
59
55
 
60
- You can configure email_template at
61
-
62
- config/initializers/email_template.rb
56
+ ##Requests
63
57
 
64
- Pull template to the base :
58
+ Request to base by NPI:
65
59
 
66
60
  ```ruby
67
- MailTemplate.create(name: "template unique name",
68
- subject: "Join request confirmation",
69
- classes: ["activity_partner"],
70
- body:
71
- <<-TEXT
72
- Dear \#{activity_partner.full_name} ...
73
- ....
74
- TEXT
75
- )
61
+ @npi = Nppes::NpIdentifier.where(npi: 'NPI as integer').first
76
62
  ```
77
-
78
- In Mailer:
79
-
63
+ Have next fields: npi, owner_id, owner_type, npi_deactivation_reason_code, npi_deactivation_date, npi_reactivation_date,
64
+ first_name, middle_name, last_name, prefix, suffix, gender_code, entity_type_code
65
+ Have next helpers:
66
+ Gender name helper:
80
67
  ```ruby
81
- class ActivityPartnerMailer < TemplateSendMailer
82
- def join_confirmation_self(activity_partner)
83
- #send_mail(template_name, mail_params = {}, template_params = {})
84
- send_mail("template unique name", {to: "user@example.com"}, {activity_partner_: activity_partner})
85
- end
86
- end
68
+ @npi.decoded_gender
87
69
  ```
88
70
 
89
- ## Configuration
90
- If you need adding some model method to token list need create in model alias with prefix,
91
- which you set in config(by default is 'et_').
92
-
93
- For example if you need add method 'full_name' for 'activity_partner' to token list you need do next:
94
-
71
+ Entity type name helper:
95
72
  ```ruby
96
- class ActivityPartner < ActiveRecord::Base
97
- def full_name
98
- [self.first_name, self.last_name].join(' ')
99
- end
100
-
101
- alias et_full_name full_name
102
- end
73
+ @npi.decoded_entity_type
103
74
  ```
104
-
105
-
106
- ## Customization
107
75
 
108
- In case you need additional customization :
76
+ Deactivation reason helper:
77
+ ```ruby
78
+ @npi.decoded_deactivation_reason
79
+ ```
109
80
 
110
- In Mailer:
111
- Simply add 'template_path' and 'template_name'
81
+ Result of request has next relations:
112
82
 
113
- ```ruby
114
- class MyMailer < TemplateSendMailer
83
+ ** Addresses
115
84
 
116
- def result(tree)
117
- send_mail('MyMailer:result',
118
- {
119
- to: my_email,
120
- template_path: 'mailers',
121
- template_name: 'mail'
122
- }, {tree: tree})
123
- end
124
- end
85
+ ```ruby
86
+ @npi.np_addresses
87
+ ```
88
+ Have next fields: address1, address2, city, state, country, zip, phone
89
+ Have next helpers:
90
+ Country name helper:
91
+ ```ruby
92
+ @npi.np_licenses.first.decoded_country
93
+ ```
94
+ State name helper:
95
+ ```ruby
96
+ @npi.np_licenses.first.decoded_state
125
97
  ```
126
98
 
127
- In View:
128
- In view you will have compiled template in @data variable
99
+ ** Licenses
100
+ ```ruby
101
+ @npi.np_licenses
102
+ ```
129
103
 
104
+ Have next fields: taxonomy_code, license_number, state
105
+ Have next helpers:
106
+ Speciality title by taxonomy code:
107
+ ```ruby
108
+ @npi.np_licenses.first.decoded_speciality
109
+ ```
110
+ State name:
130
111
  ```ruby
131
- = @data.html_safe
112
+ @npi.np_licenses.first.decoded_state
132
113
  ```
133
114
 
134
- ## Contributing
115
+ ## License
135
116
 
136
- 1. Fork it
137
- 2. Create your feature branch (`git checkout -b my-new-feature`)
138
- 3. Commit your changes (`git commit -am 'Added some feature'`)
139
- 4. Push to the branch (`git push origin my-new-feature`)
140
- 5. Create new Pull Request
117
+ MIT License. Copyright 2011-2013.
@@ -0,0 +1,18 @@
1
+ class AddLicenseTable < ActiveRecord::Migration
2
+ def self.up
3
+ create_table :np_licenses do |t|
4
+ t.integer :np_identifier_id
5
+
6
+ t.string :taxonomy_code, :limit => 20 #http://nucc.org/index.php?option=com_wrapper&view=wrapper&Itemid=126
7
+ t.string :license_number, :limit => 20
8
+ t.string :license_number_state_code, :limit => 2
9
+ t.string :healthcare_taxonomy_switch, :limit => 1
10
+
11
+ t.timestamps
12
+ end
13
+ end
14
+
15
+ def self.down
16
+ drop_table :np_licenses
17
+ end
18
+ end
@@ -0,0 +1,23 @@
1
+ class AddProviderAddressTable < ActiveRecord::Migration
2
+ def self.up
3
+ create_table :np_addresses do |t|
4
+ t.integer :np_identifier_id
5
+
6
+ t.string :address_type
7
+ t.string :address1
8
+ t.string :address2
9
+
10
+ t.string :city
11
+ t.string :state
12
+ t.string :country
13
+ t.string :zip
14
+ t.string :phone
15
+
16
+ t.timestamps
17
+ end
18
+ end
19
+
20
+ def self.down
21
+ drop_table :np_addresses
22
+ end
23
+ end
@@ -11,21 +11,20 @@ module Nppes
11
11
 
12
12
  desc 'Creates initializer and migration.'
13
13
  def copy_initializer
14
- migration_template(
15
- 'active_record/base_npi_data.rb',
16
- migrate_path('add_nppes_table.rb')
17
- )
18
- sleep(1)
19
- migration_template(
20
- 'active_record/update_check.rb',
21
- migrate_path('add_update_check_table.rb')
22
- )
23
-
24
- #sleep(1)
25
- #migration_template(
26
- # 'active_record/license.rb',
27
- # migrate_path('add_license_table.rb')
28
- #)
14
+ [
15
+ 'add_nppes_table',
16
+ 'add_update_check_table',
17
+ 'add_license_table',
18
+ 'add_provider_address_table'
19
+ ].each do |name|
20
+ unless migration_exists?(name)
21
+ migration_template(
22
+ "active_record/#{name}.rb",
23
+ migrate_path("#{name}.rb")
24
+ )
25
+ sleep(1)
26
+ end
27
+ end
29
28
 
30
29
  template 'templates/nppes.rb', 'config/initializers/nppes_settings.rb'
31
30
  generate 'delayed_job:active_record'
@@ -34,6 +33,10 @@ module Nppes
34
33
 
35
34
  protected
36
35
 
36
+ def migration_exists?(name)
37
+ Dir.glob("#{migrate_path}/[0-9]*_*.rb").grep(/\d+_#{name}.rb$/).first
38
+ end
39
+
37
40
  def migrate_path(name='')
38
41
  File.join('db', 'migrate', name)
39
42
  end
@@ -56,5 +56,9 @@ module Nppes
56
56
  def get_time_period
57
57
  weekly ? 8.days.to_i : 32.days.to_i
58
58
  end
59
+
60
+ def decode_value(value_type, value)
61
+ UpdatePack::CodeValues.decode(value_type, value)
62
+ end
59
63
  end
60
64
  end
@@ -1,3 +1,4 @@
1
- require 'nppes/np_identifier'
2
- require 'nppes/np_license'
3
- require 'nppes/np_update_check'
1
+ require 'nppes/models/np_identifier'
2
+ require 'nppes/models/np_license'
3
+ require 'nppes/models/np_address'
4
+ require 'nppes/models/np_update_check'
@@ -0,0 +1,19 @@
1
+ module Nppes
2
+ class NpAddress < ActiveRecord::Base
3
+ belongs_to :np_identifier
4
+
5
+ validates :zip, :country, :state, :city, :address1, presence: true
6
+
7
+ def decoded_country
8
+ Nppes.decode_value(:country, country)
9
+ end
10
+
11
+ def decoded_state
12
+ Nppes.decode_value(:state, state)
13
+ end
14
+
15
+ def to_s
16
+ "#{address1} | #{city}, #{decoded_state}, #{decoded_country}, #{zip}, #{phone}"
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,24 @@
1
+ module Nppes
2
+ class NpIdentifier < ActiveRecord::Base
3
+ has_many :np_licenses, dependent: :destroy
4
+ has_many :np_addresses, dependent: :destroy
5
+
6
+ def to_s
7
+ "#{prefix} #{first_name} #{middle_name} #{last_name} #{suffix}"
8
+ end
9
+
10
+ validates :first_name, :last_name, presence: true
11
+
12
+ def decoded_gender
13
+ Nppes.decode_value(:gender_code, gender_code)
14
+ end
15
+
16
+ def decoded_entity_type
17
+ Nppes.decode_value(:entity_type_code, entity_type_code)
18
+ end
19
+
20
+ def decoded_deactivation_reason
21
+ Nppes.decode_value(:npi_deactivation_reason_code, npi_deactivation_reason_code)
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,15 @@
1
+ module Nppes
2
+ class NpLicense < ActiveRecord::Base
3
+ belongs_to :np_identifier
4
+
5
+ validates :license_number, :taxonomy_code, presence: true
6
+
7
+ def decoded_state
8
+ Nppes.decode_value(:state, license_number_state_code)
9
+ end
10
+
11
+ def decoded_speciality
12
+ Nppes.decode_value(:taxonomy_code, taxonomy_code)
13
+ end
14
+ end
15
+ end
@@ -1,4 +1,5 @@
1
1
  require 'nppes/update_pack/base'
2
2
  require 'nppes/update_pack/required_fields'
3
+ require 'nppes/update_pack/code_values'
3
4
  require 'nppes/update_pack/pack'
4
5
  require 'nppes/update_pack/data'
@@ -0,0 +1,1164 @@
1
+ # encoding: utf-8
2
+
3
+ module Nppes
4
+ module UpdatePack
5
+ class CodeValues
6
+ class_attribute :code_values
7
+
8
+ self.code_values = {
9
+ entity_type_code: {
10
+ 1 => 'individual',
11
+ 2 => 'organization',
12
+ nil => nil
13
+ },
14
+ gender_code: {
15
+ 'M' => 'male',
16
+ 'F' => 'female',
17
+ nil => nil
18
+ },
19
+ npi_deactivation_reason_code: {
20
+ 'DT' => 'death',
21
+ 'DB' => 'disbandment',
22
+ 'FR' => 'fraud',
23
+ 'OT' => 'other',
24
+ nil => nil
25
+ },
26
+ state: {
27
+ "AK"=>"Alaska",
28
+ "AL"=>"Alabama",
29
+ "AR"=>"Arkansas",
30
+ "AS"=>"American Samoa",
31
+ "AZ"=>"Arizona",
32
+ "CA"=>"California",
33
+ "CO"=>"Colorado",
34
+ "CT"=>"Connecticut",
35
+ "DC"=>"District Of Columbia",
36
+ "DE"=>"Delaware",
37
+ "FL"=>"Florida",
38
+ "FM"=>"Micronesia, Federated States Of",
39
+ "GA"=>"Georgia",
40
+ "GU"=>"Guam",
41
+ "HI"=>"Hawaii",
42
+ "IA"=>"Iowa",
43
+ "ID"=>"Idaho",
44
+ "IL"=>"Illinois",
45
+ "IN"=>"Indiana",
46
+ "KS"=>"Kansas",
47
+ "KY"=>"Kentucky",
48
+ "LA"=>"Louisiana",
49
+ "MA"=>"Massachusetts",
50
+ "MD"=>"Maryland",
51
+ "ME"=>"Maine",
52
+ "MH"=>"Marshall Islands",
53
+ "MI"=>"Michigan",
54
+ "MN"=>"Minnesota",
55
+ "MO"=>"Missouri",
56
+ "MP"=>"Mariana Islands, Northern",
57
+ "MS"=>"Mississippi",
58
+ "MT"=>"Montana",
59
+ "NC"=>"North Carolina",
60
+ "ND"=>"North Dakota",
61
+ "NE"=>"Nebraska",
62
+ "NH"=>"New Hampshire",
63
+ "NJ"=>"New Jersey",
64
+ "NM"=>"New Mexico",
65
+ "NV"=>"Nevada",
66
+ "NY"=>"New York",
67
+ "OH"=>"Ohio",
68
+ "OK"=>"Oklahoma",
69
+ "OR"=>"Oregon",
70
+ "PA"=>"Pennsylvania",
71
+ "PR"=>"Puerto Rico",
72
+ "PW"=>"Palau",
73
+ "RI"=>"Rhode Island",
74
+ "SC"=>"South Carolina",
75
+ "SD"=>"South Dakota",
76
+ "TN"=>"Tennessee",
77
+ "TX"=>"Texas",
78
+ "UT"=>"Utah",
79
+ "VA"=>"Virginia",
80
+ "VI"=>"Virgin Islands",
81
+ "VT"=>"Vermont",
82
+ "WA"=>"Washington",
83
+ "WI"=>"Wisconsin",
84
+ "WV"=>"West Virginia",
85
+ "WY"=>"Wyoming",
86
+ "ZZ"=>"Foreign Country"
87
+ },
88
+ country: {
89
+ "AF"=>"Afghanistan",
90
+ "AX"=>"Åland Islands",
91
+ "AL"=>"Albania",
92
+ "DZ"=>"Algeria",
93
+ "AS"=>"American Samoa",
94
+ "AD"=>"Andorra",
95
+ "AO"=>"Angola",
96
+ "AI"=>"Anguilla",
97
+ "AQ"=>"Antarctica",
98
+ "AG"=>"Antigua and Barbuda",
99
+ "AR"=>"Argentina",
100
+ "AM"=>"Armenia",
101
+ "AW"=>"Aruba",
102
+ "AU"=>"Australia",
103
+ "AT"=>"Austria",
104
+ "AZ"=>"Azerbaijan",
105
+ "BS"=>"Bahamas",
106
+ "BH"=>"Bahrain",
107
+ "BD"=>"Bangladesh",
108
+ "BB"=>"Barbados",
109
+ "BY"=>"Belarus",
110
+ "BE"=>"Belgium",
111
+ "BZ"=>"Belize",
112
+ "BJ"=>"Benin",
113
+ "BM"=>"Bermuda",
114
+ "BT"=>"Bhutan",
115
+ "BO"=>"Bolivia, Plurinational State of",
116
+ "BQ"=>"Bonaire, Sint Eustatius and Saba",
117
+ "BA"=>"Bosnia and Herzegovina",
118
+ "BW"=>"Botswana",
119
+ "BV"=>"Bouvet Island",
120
+ "BR"=>"Brazil",
121
+ "IO"=>"British Indian Ocean Territory",
122
+ "BN"=>"Brunei Darussalam",
123
+ "BG"=>"Bulgaria",
124
+ "BF"=>"Burkina Faso",
125
+ "BI"=>"Burundi",
126
+ "KH"=>"Cambodia",
127
+ "CM"=>"Cameroon",
128
+ "CA"=>"Canada",
129
+ "CV"=>"Cape Verde",
130
+ "KY"=>"Cayman Islands",
131
+ "CF"=>"Central African Republic",
132
+ "TD"=>"Chad",
133
+ "CL"=>"Chile",
134
+ "CN"=>"China",
135
+ "CX"=>"Christmas Island",
136
+ "CC"=>"Cocos (Keeling) Islands",
137
+ "CO"=>"Colombia",
138
+ "KM"=>"Comoros",
139
+ "CG"=>"Congo",
140
+ "CD"=>"Congo, the Democratic Republic of the",
141
+ "CK"=>"Cook Islands",
142
+ "CR"=>"Costa Rica",
143
+ "CI"=>"Côte d'Ivoire",
144
+ "HR"=>"Croatia",
145
+ "CU"=>"Cuba",
146
+ "CW"=>"Curaçao",
147
+ "CY"=>"Cyprus",
148
+ "CZ"=>"Czech Republic",
149
+ "DK"=>"Denmark",
150
+ "DJ"=>"Djibouti",
151
+ "DM"=>"Dominica",
152
+ "DO"=>"Dominican Republic",
153
+ "EC"=>"Ecuador",
154
+ "EG"=>"Egypt",
155
+ "SV"=>"El Salvador",
156
+ "GQ"=>"Equatorial Guinea",
157
+ "ER"=>"Eritrea",
158
+ "EE"=>"Estonia",
159
+ "ET"=>"Ethiopia",
160
+ "FK"=>"Falkland Islands (Malvinas)",
161
+ "FO"=>"Faroe Islands",
162
+ "FJ"=>"Fiji",
163
+ "FI"=>"Finland",
164
+ "FR"=>"France",
165
+ "GF"=>"French Guiana",
166
+ "PF"=>"French Polynesia",
167
+ "TF"=>"French Southern Territories",
168
+ "GA"=>"Gabon",
169
+ "GM"=>"Gambia",
170
+ "GE"=>"Georgia",
171
+ "DE"=>"Germany",
172
+ "GH"=>"Ghana",
173
+ "GI"=>"Gibraltar",
174
+ "GR"=>"Greece",
175
+ "GL"=>"Greenland",
176
+ "GD"=>"Grenada",
177
+ "GP"=>"Guadeloupe",
178
+ "GU"=>"Guam",
179
+ "GT"=>"Guatemala",
180
+ "GG"=>"Guernsey",
181
+ "GN"=>"Guinea",
182
+ "GW"=>"Guinea-Bissau",
183
+ "GY"=>"Guyana",
184
+ "HT"=>"Haiti",
185
+ "HM"=>"Heard Island and McDonald Islands",
186
+ "VA"=>"Holy See (Vatican City State)",
187
+ "HN"=>"Honduras",
188
+ "HK"=>"Hong Kong",
189
+ "HU"=>"Hungary",
190
+ "IS"=>"Iceland",
191
+ "IN"=>"India",
192
+ "ID"=>"Indonesia",
193
+ "IR"=>"Iran, Islamic Republic of",
194
+ "IQ"=>"Iraq",
195
+ "IE"=>"Ireland",
196
+ "IM"=>"Isle of Man",
197
+ "IL"=>"Israel",
198
+ "IT"=>"Italy",
199
+ "JM"=>"Jamaica",
200
+ "JP"=>"Japan",
201
+ "JE"=>"Jersey",
202
+ "JO"=>"Jordan",
203
+ "KZ"=>"Kazakhstan",
204
+ "KE"=>"Kenya",
205
+ "KI"=>"Kiribati",
206
+ "KP"=>"Korea, Democratic People's Republic of",
207
+ "KR"=>"Korea, Republic of",
208
+ "KW"=>"Kuwait",
209
+ "KG"=>"Kyrgyzstan",
210
+ "LA"=>"Lao People's Democratic Republic",
211
+ "LV"=>"Latvia",
212
+ "LB"=>"Lebanon",
213
+ "LS"=>"Lesotho",
214
+ "LR"=>"Liberia",
215
+ "LY"=>"Libya",
216
+ "LI"=>"Liechtenstein",
217
+ "LT"=>"Lithuania",
218
+ "LU"=>"Luxembourg",
219
+ "MO"=>"Macao",
220
+ "MK"=>"Macedonia, the former Yugoslav Republic of",
221
+ "MG"=>"Madagascar",
222
+ "MW"=>"Malawi",
223
+ "MY"=>"Malaysia",
224
+ "MV"=>"Maldives",
225
+ "ML"=>"Mali",
226
+ "MT"=>"Malta",
227
+ "MH"=>"Marshall Islands",
228
+ "MQ"=>"Martinique",
229
+ "MR"=>"Mauritania",
230
+ "MU"=>"Mauritius",
231
+ "YT"=>"Mayotte",
232
+ "MX"=>"Mexico",
233
+ "FM"=>"Micronesia, Federated States of",
234
+ "MD"=>"Moldova, Republic of",
235
+ "MC"=>"Monaco",
236
+ "MN"=>"Mongolia",
237
+ "ME"=>"Montenegro",
238
+ "MS"=>"Montserrat",
239
+ "MA"=>"Morocco",
240
+ "MZ"=>"Mozambique",
241
+ "MM"=>"Myanmar",
242
+ "NA"=>"Namibia",
243
+ "NR"=>"Nauru",
244
+ "NP"=>"Nepal",
245
+ "NL"=>"Netherlands",
246
+ "NC"=>"New Caledonia",
247
+ "NZ"=>"New Zealand",
248
+ "NI"=>"Nicaragua",
249
+ "NE"=>"Niger",
250
+ "NG"=>"Nigeria",
251
+ "NU"=>"Niue",
252
+ "NF"=>"Norfolk Island",
253
+ "MP"=>"Northern Mariana Islands",
254
+ "NO"=>"Norway",
255
+ "OM"=>"Oman",
256
+ "PK"=>"Pakistan",
257
+ "PW"=>"Palau",
258
+ "PS"=>"Palestine, State of",
259
+ "PA"=>"Panama",
260
+ "PG"=>"Papua New Guinea",
261
+ "PY"=>"Paraguay",
262
+ "PE"=>"Peru",
263
+ "PH"=>"Philippines",
264
+ "PN"=>"Pitcairn",
265
+ "PL"=>"Poland",
266
+ "PT"=>"Portugal",
267
+ "PR"=>"Puerto Rico",
268
+ "QA"=>"Qatar",
269
+ "RE"=>"Réunion",
270
+ "RO"=>"Romania",
271
+ "RU"=>"Russian Federation",
272
+ "RW"=>"Rwanda",
273
+ "BL"=>"Saint Barthélemy",
274
+ "SH"=>"Saint Helena, Ascension and Tristan da Cunha",
275
+ "KN"=>"Saint Kitts and Nevis",
276
+ "LC"=>"Saint Lucia",
277
+ "MF"=>"Saint Martin (French part)",
278
+ "PM"=>"Saint Pierre and Miquelon",
279
+ "VC"=>"Saint Vincent and the Grenadines",
280
+ "WS"=>"Samoa",
281
+ "SM"=>"San Marino",
282
+ "ST"=>"Sao Tome and Principe",
283
+ "SA"=>"Saudi Arabia",
284
+ "SN"=>"Senegal",
285
+ "RS"=>"Serbia",
286
+ "SC"=>"Seychelles",
287
+ "SL"=>"Sierra Leone",
288
+ "SG"=>"Singapore",
289
+ "SX"=>"Sint Maarten (Dutch part)",
290
+ "SK"=>"Slovakia",
291
+ "SI"=>"Slovenia",
292
+ "SB"=>"Solomon Islands",
293
+ "SO"=>"Somalia",
294
+ "ZA"=>"South Africa",
295
+ "GS"=>"South Georgia and the South Sandwich Islands",
296
+ "SS"=>"South Sudan",
297
+ "ES"=>"Spain",
298
+ "LK"=>"Sri Lanka",
299
+ "SD"=>"Sudan",
300
+ "SR"=>"Suriname",
301
+ "SJ"=>"Svalbard and Jan Mayen",
302
+ "SZ"=>"Swaziland",
303
+ "SE"=>"Sweden",
304
+ "CH"=>"Switzerland",
305
+ "SY"=>"Syrian Arab Republic",
306
+ "TW"=>"Taiwan, Province of China",
307
+ "TJ"=>"Tajikistan",
308
+ "TZ"=>"Tanzania, United Republic of",
309
+ "TH"=>"Thailand",
310
+ "TL"=>"Timor-Leste",
311
+ "TG"=>"Togo",
312
+ "TK"=>"Tokelau",
313
+ "TO"=>"Tonga",
314
+ "TT"=>"Trinidad and Tobago",
315
+ "TN"=>"Tunisia",
316
+ "TR"=>"Turkey",
317
+ "TM"=>"Turkmenistan",
318
+ "TC"=>"Turks and Caicos Islands",
319
+ "TV"=>"Tuvalu",
320
+ "UG"=>"Uganda",
321
+ "UA"=>"Ukraine",
322
+ "AE"=>"United Arab Emirates",
323
+ "GB"=>"United Kingdom",
324
+ "US"=>"United States",
325
+ "UM"=>"United States Minor Outlying Islands",
326
+ "UY"=>"Uruguay",
327
+ "UZ"=>"Uzbekistan",
328
+ "VU"=>"Vanuatu",
329
+ "VE"=>"Venezuela, Bolivarian Republic of",
330
+ "VN"=>"Viet Nam",
331
+ "VG"=>"Virgin Islands, British",
332
+ "VI"=>"Virgin Islands, U.S.",
333
+ "WF"=>"Wallis and Futuna",
334
+ "EH"=>"Western Sahara",
335
+ "YE"=>"Yemen",
336
+ "ZM"=>"Zambia"
337
+ },
338
+ taxonomy_code: {
339
+ "193200000X"=>"Multi-Specialty",
340
+ "193400000X"=>"Single Specialty",
341
+ "207KA0200X"=>"Allergy",
342
+ "207KI0005X"=>"Clinical & Laboratory Immunology",
343
+ "207LA0401X"=>"Addiction Medicine",
344
+ "207LC0200X"=>"Critical Care Medicine",
345
+ "207LH0002X"=>"Hospice and Palliative Medicine",
346
+ "207LP2900X"=>"Pain Medicine",
347
+ "207LP3000X"=>"Pediatric Anesthesiology",
348
+ "208U00000X"=>"Clinical Pharmacology",
349
+ "208C00000X"=>"Colon & Rectal Surgery",
350
+ "207NI0002X"=>"Clinical & Laboratory Dermatological Immunology",
351
+ "207ND0900X"=>"Dermatopathology",
352
+ "207ND0101X"=>"MOHS-Micrographic Surgery",
353
+ "207NP0225X"=>"Pediatric Dermatology",
354
+ "207NS0135X"=>"Procedural Dermatology",
355
+ "204R00000X"=>"Electrodiagnostic Medicine",
356
+ "207PE0004X"=>"Emergency Medical Services",
357
+ "207PH0002X"=>"Hospice and Palliative Medicine",
358
+ "207PT0002X"=>"Medical Toxicology",
359
+ "207PP0204X"=>"Pediatric Emergency Medicine",
360
+ "207PS0010X"=>"Sports Medicine",
361
+ "207PE0005X"=>"Undersea and Hyperbaric Medicine",
362
+ "207QA0401X"=>"Addiction Medicine",
363
+ "207QA0000X"=>"Adolescent Medicine",
364
+ "207QA0505X"=>"Adult Medicine",
365
+ "207QB0002X"=>"Bariatric Medicine",
366
+ "207QG0300X"=>"Geriatric Medicine",
367
+ "207QH0002X"=>"Hospice and Palliative Medicine",
368
+ "207QS1201X"=>"Sleep Medicine",
369
+ "207QS0010X"=>"Sports Medicine",
370
+ "208D00000X"=>"General Practice",
371
+ "208M00000X"=>"Hospitalist",
372
+ "202C00000X"=>"Independent Medical Examiner",
373
+ "207RA0401X"=>"Addiction Medicine",
374
+ "207RA0000X"=>"Adolescent Medicine",
375
+ "207RA0201X"=>"Allergy & Immunology",
376
+ "207RB0002X"=>"Bariatric Medicine",
377
+ "207RC0000X"=>"Cardiovascular Disease",
378
+ "207RI0001X"=>"Clinical & Laboratory Immunology",
379
+ "207RC0001X"=>"Clinical Cardiac Electrophysiology",
380
+ "207RC0200X"=>"Critical Care Medicine",
381
+ "207RE0101X"=>"Endocrinology, Diabetes & Metabolism",
382
+ "207RG0100X"=>"Gastroenterology",
383
+ "207RG0300X"=>"Geriatric Medicine",
384
+ "207RH0000X"=>"Hematology",
385
+ "207RH0003X"=>"Hematology & Oncology",
386
+ "207RI0008X"=>"Hepatology",
387
+ "207RH0002X"=>"Hospice and Palliative Medicine",
388
+ "207RH0005X"=>"Hypertension Specialist",
389
+ "207RI0200X"=>"Infectious Disease",
390
+ "207RI0011X"=>"Interventional Cardiology",
391
+ "207RM1200X"=>"Magnetic Resonance Imaging (MRI)",
392
+ "207RX0202X"=>"Medical Oncology",
393
+ "207RN0300X"=>"Nephrology",
394
+ "207RP1001X"=>"Pulmonary Disease",
395
+ "207RR0500X"=>"Rheumatology",
396
+ "207RS0012X"=>"Sleep Medicine",
397
+ "207RS0010X"=>"Sports Medicine",
398
+ "207RT0003X"=>"Transplant Hepatology",
399
+ "209800000X"=>"Legal Medicine",
400
+ "207SG0202X"=>"Clinical Biochemical Genetics",
401
+ "207SC0300X"=>"Clinical Cytogenetic",
402
+ "207SG0201X"=>"Clinical Genetics (M.D.)",
403
+ "207SG0203X"=>"Clinical Molecular Genetics",
404
+ "207SM0001X"=>"Molecular Genetic Pathology",
405
+ "207SG0205X"=>"Ph.D. Medical Genetics",
406
+ "207T00000X"=>"Neurological Surgery",
407
+ "207UN0903X"=>"In Vivo & In Vitro Nuclear Medicine",
408
+ "207UN0901X"=>"Nuclear Cardiology",
409
+ "207UN0902X"=>"Nuclear Imaging & Therapy",
410
+ "204D00000X"=>"Neuromusculoskeletal Medicine & OMM",
411
+ "204C00000X"=>"Neuromusculoskeletal Medicine, Sports Medicine",
412
+ "207VB0002X"=>"Bariatric Medicine",
413
+ "207VC0200X"=>"Critical Care Medicine",
414
+ "207VF0040X"=>"Female Pelvic Medicine and Reconstructive Surgery",
415
+ "207VX0201X"=>"Gynecologic Oncology",
416
+ "207VG0400X"=>"Gynecology",
417
+ "207VH0002X"=>"Hospice and Palliative Medicine",
418
+ "207VM0101X"=>"Maternal & Fetal Medicine",
419
+ "207VX0000X"=>"Obstetrics",
420
+ "207VE0102X"=>"Reproductive Endocrinology",
421
+ "207W00000X"=>"Ophthalmology",
422
+ "207XS0114X"=>"Adult Reconstructive Orthopaedic Surgery",
423
+ "207XX0004X"=>"Foot and Ankle Surgery",
424
+ "207XS0106X"=>"Hand Surgery",
425
+ "207XS0117X"=>"Orthopaedic Surgery of the Spine",
426
+ "207XX0801X"=>"Orthopaedic Trauma",
427
+ "207XP3100X"=>"Pediatric Orthopaedic Surgery",
428
+ "207XX0005X"=>"Sports Medicine",
429
+ "207YS0123X"=>"Facial Plastic Surgery",
430
+ "207YX0602X"=>"Otolaryngic Allergy",
431
+ "207YX0905X"=>"Otolaryngology/Facial Plastic Surgery",
432
+ "207YX0901X"=>"Otology & Neurotology",
433
+ "207YP0228X"=>"Pediatric Otolaryngology",
434
+ "207YX0007X"=>"Plastic Surgery within the Head & Neck",
435
+ "207YS0012X"=>"Sleep Medicine",
436
+ "207ZP0101X"=>"Anatomic Pathology",
437
+ "207ZP0102X"=>"Anatomic Pathology & Clinical Pathology",
438
+ "207ZB0001X"=>"Blood Banking & Transfusion Medicine",
439
+ "207ZP0104X"=>"Chemical Pathology",
440
+ "207ZC0006X"=>"Clinical Pathology",
441
+ "207ZP0105X"=>"Clinical Pathology/Laboratory Medicine",
442
+ "207ZC0500X"=>"Cytopathology",
443
+ "207ZD0900X"=>"Dermatopathology",
444
+ "207ZF0201X"=>"Forensic Pathology",
445
+ "207ZH0000X"=>"Hematology",
446
+ "207ZI0100X"=>"Immunopathology",
447
+ "207ZM0300X"=>"Medical Microbiology",
448
+ "207ZP0007X"=>"Molecular Genetic Pathology",
449
+ "207ZN0500X"=>"Neuropathology",
450
+ "207ZP0213X"=>"Pediatric Pathology",
451
+ "2080A0000X"=>"Adolescent Medicine",
452
+ "2080C0008X"=>"Child Abuse Pediatrics",
453
+ "2080I0007X"=>"Clinical & Laboratory Immunology",
454
+ "2080P0006X"=>"Developmental \u0096 Behavioral Pediatrics",
455
+ "2080H0002X"=>"Hospice and Palliative Medicine",
456
+ "2080T0002X"=>"Medical Toxicology",
457
+ "2080N0001X"=>"Neonatal-Perinatal Medicine",
458
+ "2080P0008X"=>"Neurodevelopmental Disabilities",
459
+ "2080P0201X"=>"Pediatric Allergy/Immunology",
460
+ "2080P0202X"=>"Pediatric Cardiology",
461
+ "2080P0203X"=>"Pediatric Critical Care Medicine",
462
+ "2080P0204X"=>"Pediatric Emergency Medicine",
463
+ "2080P0205X"=>"Pediatric Endocrinology",
464
+ "2080P0206X"=>"Pediatric Gastroenterology",
465
+ "2080P0207X"=>"Pediatric Hematology-Oncology",
466
+ "2080P0208X"=>"Pediatric Infectious Diseases",
467
+ "2080P0210X"=>"Pediatric Nephrology",
468
+ "2080P0214X"=>"Pediatric Pulmonology",
469
+ "2080P0216X"=>"Pediatric Rheumatology",
470
+ "2080T0004X"=>"Pediatric Transplant Hepatology",
471
+ "2080S0012X"=>"Sleep Medicine",
472
+ "2080S0010X"=>"Sports Medicine",
473
+ "202K00000X"=>"Phlebology",
474
+ "2081H0002X"=>"Hospice and Palliative Medicine",
475
+ "2081N0008X"=>"Neuromuscular Medicine",
476
+ "2081P2900X"=>"Pain Medicine",
477
+ "2081P0010X"=>"Pediatric Rehabilitation Medicine",
478
+ "2081P0004X"=>"Spinal Cord Injury Medicine",
479
+ "2081S0010X"=>"Sports Medicine",
480
+ "2082S0099X"=>"Plastic Surgery Within the Head and Neck",
481
+ "2082S0105X"=>"Surgery of the Hand",
482
+ "2083A0100X"=>"Aerospace Medicine",
483
+ "2083T0002X"=>"Medical Toxicology",
484
+ "2083X0100X"=>"Occupational Medicine",
485
+ "2083P0500X"=>"Preventive Medicine/Occupational Environmental Medicine",
486
+ "2083P0901X"=>"Public Health & General Preventive Medicine",
487
+ "2083S0010X"=>"Sports Medicine",
488
+ "2083P0011X"=>"Undersea and Hyperbaric Medicine",
489
+ "2084A0401X"=>"Addiction Medicine",
490
+ "2084P0802X"=>"Addiction Psychiatry",
491
+ "2084B0002X"=>"Bariatric Medicine",
492
+ "2084B0040X"=>"Behavioral Neurology & Neuropsychiatry",
493
+ "2084P0804X"=>"Child & Adolescent Psychiatry",
494
+ "2084N0600X"=>"Clinical Neurophysiology",
495
+ "2084D0003X"=>"Diagnostic Neuroimaging",
496
+ "2084F0202X"=>"Forensic Psychiatry",
497
+ "2084P0805X"=>"Geriatric Psychiatry",
498
+ "2084H0002X"=>"Hospice and Palliative Medicine",
499
+ "2084P0005X"=>"Neurodevelopmental Disabilities",
500
+ "2084N0400X"=>"Neurology",
501
+ "2084N0402X"=>"Neurology with Special Qualifications in Child Neurology",
502
+ "2084N0008X"=>"Neuromuscular Medicine",
503
+ "2084P2900X"=>"Pain Medicine",
504
+ "2084P0800X"=>"Psychiatry",
505
+ "2084P0015X"=>"Psychosomatic Medicine",
506
+ "2084S0012X"=>"Sleep Medicine",
507
+ "2084S0010X"=>"Sports Medicine",
508
+ "2084V0102X"=>"Vascular Neurology",
509
+ "208VP0014X"=>"Interventional Pain Medicine",
510
+ "208VP0000X"=>"Pain Medicine",
511
+ "2085B0100X"=>"Body Imaging",
512
+ "2085D0003X"=>"Diagnostic Neuroimaging",
513
+ "2085R0202X"=>"Diagnostic Radiology",
514
+ "2085U0001X"=>"Diagnostic Ultrasound",
515
+ "2085H0002X"=>"Hospice and Palliative Medicine",
516
+ "2085N0700X"=>"Neuroradiology",
517
+ "2085N0904X"=>"Nuclear Radiology",
518
+ "2085P0229X"=>"Pediatric Radiology",
519
+ "2085R0001X"=>"Radiation Oncology",
520
+ "2085R0205X"=>"Radiological Physics",
521
+ "2085R0203X"=>"Therapeutic Radiology",
522
+ "2085R0204X"=>"Vascular & Interventional Radiology",
523
+ "2086H0002X"=>"Hospice and Palliative Medicine",
524
+ "2086S0120X"=>"Pediatric Surgery",
525
+ "2086S0122X"=>"Plastic and Reconstructive Surgery",
526
+ "2086S0105X"=>"Surgery of the Hand",
527
+ "2086S0102X"=>"Surgical Critical Care",
528
+ "2086X0206X"=>"Surgical Oncology",
529
+ "2086S0127X"=>"Trauma Surgery",
530
+ "2086S0129X"=>"Vascular Surgery",
531
+ "208G00000X"=>"Thoracic Surgery (Cardiothoracic Vascular Surgery)",
532
+ "204F00000X"=>"Transplant Surgery",
533
+ "2088F0040X"=>"Female Pelvic Medicine and Reconstructive Surgery",
534
+ "2088P0231X"=>"Pediatric Urology",
535
+ "103K00000X"=>"Behavioral Analyst",
536
+ "101YA0400X"=>"Addiction (Substance Use Disorder)",
537
+ "101YM0800X"=>"Mental Health",
538
+ "101YP1600X"=>"Pastoral",
539
+ "101YP2500X"=>"Professional",
540
+ "101YS0200X"=>"School",
541
+ "106H00000X"=>"Marriage & Family Therapist",
542
+ "102X00000X"=>"Poetry Therapist",
543
+ "102L00000X"=>"Psychoanalyst",
544
+ "103TA0400X"=>"Addiction (Substance Use Disorder)",
545
+ "103TA0700X"=>"Adult Development & Aging",
546
+ "103TC0700X"=>"Clinical",
547
+ "103TC2200X"=>"Clinical Child & Adolescent",
548
+ "103TB0200X"=>"Cognitive & Behavioral",
549
+ "103TC1900X"=>"Counseling",
550
+ "103TE1100X"=>"Exercise & Sports",
551
+ "103TF0000X"=>"Family",
552
+ "103TF0200X"=>"Forensic",
553
+ "103TP2701X"=>"Group Psychotherapy",
554
+ "103TH0004X"=>"Health",
555
+ "103TH0100X"=>"Health Service",
556
+ "103TM1800X"=>"Mental Retardation & Developmental Disabilities",
557
+ "103TP0016X"=>"Prescribing (Medical)",
558
+ "103TP0814X"=>"Psychoanalysis",
559
+ "103TR0400X"=>"Rehabilitation",
560
+ "103TS0200X"=>"School",
561
+ "1041C0700X"=>"Clinical",
562
+ "1041S0200X"=>"School",
563
+ "111NI0013X"=>"Independent Medical Examiner",
564
+ "111NI0900X"=>"Internist",
565
+ "111NN0400X"=>"Neurology",
566
+ "111NN1001X"=>"Nutrition",
567
+ "111NX0100X"=>"Occupational Health",
568
+ "111NX0800X"=>"Orthopedic",
569
+ "111NP0017X"=>"Pediatric Chiropractor",
570
+ "111NR0200X"=>"Radiology",
571
+ "111NR0400X"=>"Rehabilitation",
572
+ "111NS0005X"=>"Sports Physician",
573
+ "111NT0100X"=>"Thermography",
574
+ "125K00000X"=>"Advanced Practice Dental Therapist",
575
+ "126800000X"=>"Dental Assistant",
576
+ "124Q00000X"=>"Dental Hygienist",
577
+ "126900000X"=>"Dental Laboratory Technician",
578
+ "125J00000X"=>"Dental Therapist",
579
+ "1223D0001X"=>"Dental Public Health",
580
+ "1223D0004X"=>"Dentist Anesthesiologist",
581
+ "1223E0200X"=>"Endodontics",
582
+ "1223G0001X"=>"General Practice",
583
+ "1223P0106X"=>"Oral and Maxillofacial Pathology",
584
+ "1223X0008X"=>"Oral and Maxillofacial Radiology",
585
+ "1223S0112X"=>"Oral and Maxillofacial Surgery",
586
+ "1223X0400X"=>"Orthodontics and Dentofacial Orthopedics",
587
+ "1223P0221X"=>"Pediatric Dentistry",
588
+ "1223P0300X"=>"Periodontics",
589
+ "1223P0700X"=>"Prosthodontics",
590
+ "122400000X"=>"Denturist",
591
+ "132700000X"=>"Dietary Manager",
592
+ "136A00000X"=>"Dietetic Technician, Registered",
593
+ "133VN1006X"=>"Nutrition, Metabolic",
594
+ "133VN1004X"=>"Nutrition, Pediatric",
595
+ "133VN1005X"=>"Nutrition, Renal",
596
+ "133NN1002X"=>"Nutrition, Education",
597
+ "146N00000X"=>"Emergency Medical Technician, Basic",
598
+ "146M00000X"=>"Emergency Medical Technician, Intermediate",
599
+ "146L00000X"=>"Emergency Medical Technician, Paramedic",
600
+ "146D00000X"=>"Personal Emergency Response Attendant",
601
+ "152WC0802X"=>"Corneal and Contact Management",
602
+ "152WL0500X"=>"Low Vision Rehabilitation",
603
+ "152WX0102X"=>"Occupational Vision",
604
+ "152WP0200X"=>"Pediatrics",
605
+ "152WS0006X"=>"Sports Vision",
606
+ "152WV0400X"=>"Vision Therapy",
607
+ "156FC0800X"=>"Contact Lens",
608
+ "156FC0801X"=>"Contact Lens Fitter",
609
+ "156FX1700X"=>"Ocularist",
610
+ "156FX1100X"=>"Ophthalmic",
611
+ "156FX1101X"=>"Ophthalmic Assistant",
612
+ "156FX1800X"=>"Optician",
613
+ "156FX1201X"=>"Optometric Assistant",
614
+ "156FX1202X"=>"Optometric Technician",
615
+ "156FX1900X"=>"Orthoptist",
616
+ "164W00000X"=>"Licensed Practical Nurse",
617
+ "167G00000X"=>"Licensed Psychiatric Technician",
618
+ "164X00000X"=>"Licensed Vocational Nurse",
619
+ "163WA0400X"=>"Addiction (Substance Use Disorder)",
620
+ "163WA2000X"=>"Administrator",
621
+ "163WP2201X"=>"Ambulatory Care",
622
+ "163WC3500X"=>"Cardiac Rehabilitation",
623
+ "163WC0400X"=>"Case Management",
624
+ "163WC1400X"=>"College Health",
625
+ "163WC1500X"=>"Community Health",
626
+ "163WC2100X"=>"Continence Care",
627
+ "163WC1600X"=>"Continuing Education/Staff Development",
628
+ "163WC0200X"=>"Critical Care Medicine",
629
+ "163WD0400X"=>"Diabetes Educator",
630
+ "163WD1100X"=>"Dialysis, Peritoneal",
631
+ "163WE0003X"=>"Emergency",
632
+ "163WE0900X"=>"Enterostomal Therapy",
633
+ "163WF0300X"=>"Flight",
634
+ "163WG0100X"=>"Gastroenterology",
635
+ "163WG0000X"=>"General Practice",
636
+ "163WG0600X"=>"Gerontology",
637
+ "163WH0500X"=>"Hemodialysis",
638
+ "163WH0200X"=>"Home Health",
639
+ "163WH1000X"=>"Hospice",
640
+ "163WI0600X"=>"Infection Control",
641
+ "163WI0500X"=>"Infusion Therapy",
642
+ "163WL0100X"=>"Lactation Consultant",
643
+ "163WM0102X"=>"Maternal Newborn",
644
+ "163WM0705X"=>"Medical-Surgical",
645
+ "163WN0002X"=>"Neonatal Intensive Care",
646
+ "163WN0003X"=>"Neonatal, Low-Risk",
647
+ "163WN0300X"=>"Nephrology",
648
+ "163WN0800X"=>"Neuroscience",
649
+ "163WM1400X"=>"Nurse Massage Therapist (NMT)",
650
+ "163WN1003X"=>"Nutrition Support",
651
+ "163WX0002X"=>"Obstetric, High-Risk",
652
+ "163WX0003X"=>"Obstetric, Inpatient",
653
+ "163WX0106X"=>"Occupational Health",
654
+ "163WX0200X"=>"Oncology",
655
+ "163WX1100X"=>"Ophthalmic",
656
+ "163WX0800X"=>"Orthopedic",
657
+ "163WX1500X"=>"Ostomy Care",
658
+ "163WX0601X"=>"Otorhinolaryngology & Head-Neck",
659
+ "163WP0000X"=>"Pain Management",
660
+ "163WP0218X"=>"Pediatric Oncology",
661
+ "163WP0200X"=>"Pediatrics",
662
+ "163WP1700X"=>"Perinatal",
663
+ "163WS0121X"=>"Plastic Surgery",
664
+ "163WP0808X"=>"Psychiatric/Mental Health",
665
+ "163WP0809X"=>"Psychiatric/Mental Health, Adult",
666
+ "163WP0807X"=>"Psychiatric/Mental Health, Child & Adolescent",
667
+ "163WR0006X"=>"Registered Nurse First Assistant",
668
+ "163WR0400X"=>"Rehabilitation",
669
+ "163WR1000X"=>"Reproductive Endocrinology/Infertility",
670
+ "163WS0200X"=>"School",
671
+ "163WU0100X"=>"Urology",
672
+ "163WW0101X"=>"Women's Health Care, Ambulatory",
673
+ "163WW0000X"=>"Wound Care",
674
+ "372600000X"=>"Adult Companion",
675
+ "372500000X"=>"Chore Provider",
676
+ "373H00000X"=>"Day Training/Habilitation Specialist",
677
+ "374J00000X"=>"Doula",
678
+ "374U00000X"=>"Home Health Aide",
679
+ "376J00000X"=>"Homemaker",
680
+ "376K00000X"=>"Nurse's Aide",
681
+ "376G00000X"=>"Nursing Home Administrator",
682
+ "374T00000X"=>"Religious Nonmedical Nursing Personnel",
683
+ "374K00000X"=>"Religious Nonmedical Practitioner",
684
+ "3747A0650X"=>"Attendant Care Provider",
685
+ "3747P1801X"=>"Personal Care Attendant",
686
+ "171100000X"=>"Acupuncturist",
687
+ "171M00000X"=>"Case Manager/Care Coordinator",
688
+ "174V00000X"=>"Clinical Ethicist",
689
+ "172V00000X"=>"Community Health Worker",
690
+ "171WH0202X"=>"Home Modifications",
691
+ "171WV0202X"=>"Vehicle Modifications",
692
+ "172A00000X"=>"Driver",
693
+ "176P00000X"=>"Funeral Director",
694
+ "170300000X"=>"Genetic Counselor, MS",
695
+ "174H00000X"=>"Health Educator",
696
+ "175L00000X"=>"Homeopath",
697
+ "171R00000X"=>"Interpreter",
698
+ "174N00000X"=>"Lactation Consultant, Non-RN",
699
+ "173000000X"=>"Legal Medicine",
700
+ "172M00000X"=>"Mechanotherapist",
701
+ "170100000X"=>"Medical Genetics, Ph.D. Medical Genetics",
702
+ "176B00000X"=>"Midwife",
703
+ "175M00000X"=>"Midwife, Lay",
704
+ "1710I1002X"=>"Independent Duty Corpsman",
705
+ "1710I1003X"=>"Independent Duty Medical Technicians",
706
+ "172P00000X"=>"Naprapath",
707
+ "175F00000X"=>"Naturopath",
708
+ "173C00000X"=>"Reflexologist",
709
+ "173F00000X"=>"Sleep Specialist, PhD",
710
+ "1744G0900X"=>"Graphics Designer",
711
+ "1744P3200X"=>"Prosthetics Case Management",
712
+ "1744R1103X"=>"Research Data Abstracter/Coder",
713
+ "1744R1102X"=>"Research Study",
714
+ "174MM1900X"=>"Medical Research",
715
+ "1835G0303X"=>"Geriatric",
716
+ "1835N0905X"=>"Nuclear",
717
+ "1835N1003X"=>"Nutrition Support",
718
+ "1835X0200X"=>"Oncology",
719
+ "1835P0018X"=>"Pharmacist Clinician (PhC)/ Clinical Pharmacy Specialist",
720
+ "1835P1200X"=>"Pharmacotherapy",
721
+ "1835P1300X"=>"Psychiatric",
722
+ "183700000X"=>"Pharmacy Technician",
723
+ "367A00000X"=>"Advanced Practice Midwife",
724
+ "367H00000X"=>"Anesthesiologist Assistant",
725
+ "364SA2100X"=>"Acute Care",
726
+ "364SA2200X"=>"Adult Health",
727
+ "364SC2300X"=>"Chronic Care",
728
+ "364SC1501X"=>"Community Health/Public Health",
729
+ "364SC0200X"=>"Critical Care Medicine",
730
+ "364SE0003X"=>"Emergency",
731
+ "364SE1400X"=>"Ethics",
732
+ "364SF0001X"=>"Family Health",
733
+ "364SG0600X"=>"Gerontology",
734
+ "364SH1100X"=>"Holistic",
735
+ "364SH0200X"=>"Home Health",
736
+ "364SI0800X"=>"Informatics",
737
+ "364SL0600X"=>"Long-Term Care",
738
+ "364SM0705X"=>"Medical-Surgical",
739
+ "364SN0000X"=>"Neonatal",
740
+ "364SN0800X"=>"Neuroscience",
741
+ "364SX0106X"=>"Occupational Health",
742
+ "364SX0200X"=>"Oncology",
743
+ "364SX0204X"=>"Oncology, Pediatrics",
744
+ "364SP0200X"=>"Pediatrics",
745
+ "364SP1700X"=>"Perinatal",
746
+ "364SP2800X"=>"Perioperative",
747
+ "364SP0808X"=>"Psychiatric/Mental Health",
748
+ "364SP0809X"=>"Psychiatric/Mental Health, Adult",
749
+ "364SP0807X"=>"Psychiatric/Mental Health, Child & Adolescent",
750
+ "364SP0810X"=>"Psychiatric/Mental Health, Child & Family",
751
+ "364SP0811X"=>"Psychiatric/Mental Health, Chronically Ill",
752
+ "364SP0812X"=>"Psychiatric/Mental Health, Community",
753
+ "364SP0813X"=>"Psychiatric/Mental Health, Geropsychiatric",
754
+ "364SR0400X"=>"Rehabilitation",
755
+ "364SS0200X"=>"School",
756
+ "364ST0500X"=>"Transplantation",
757
+ "364SW0102X"=>"Women's Health",
758
+ "367500000X"=>"Nurse Anesthetist, Certified Registered",
759
+ "363LA2100X"=>"Acute Care",
760
+ "363LA2200X"=>"Adult Health",
761
+ "363LC1500X"=>"Community Health",
762
+ "363LC0200X"=>"Critical Care Medicine",
763
+ "363LF0000X"=>"Family",
764
+ "363LG0600X"=>"Gerontology",
765
+ "363LN0000X"=>"Neonatal",
766
+ "363LN0005X"=>"Neonatal, Critical Care",
767
+ "363LX0001X"=>"Obstetrics & Gynecology",
768
+ "363LX0106X"=>"Occupational Health",
769
+ "363LP0200X"=>"Pediatrics",
770
+ "363LP0222X"=>"Pediatrics, Critical Care",
771
+ "363LP1700X"=>"Perinatal",
772
+ "363LP2300X"=>"Primary Care",
773
+ "363LP0808X"=>"Psychiatric/Mental Health",
774
+ "363LS0200X"=>"School",
775
+ "363LW0102X"=>"Women's Health",
776
+ "363AM0700X"=>"Medical",
777
+ "363AS0400X"=>"Surgical",
778
+ "211D00000X"=>"Assistant, Podiatric",
779
+ "213ES0103X"=>"Foot & Ankle Surgery",
780
+ "213ES0131X"=>"Foot Surgery",
781
+ "213EP1101X"=>"Primary Podiatric Medicine",
782
+ "213EP0504X"=>"Public Medicine",
783
+ "213ER0200X"=>"Radiology",
784
+ "213ES0000X"=>"Sports Medicine",
785
+ "229N00000X"=>"Anaplastologist",
786
+ "221700000X"=>"Art Therapist",
787
+ "224Y00000X"=>"Clinical Exercise Physiologist",
788
+ "225600000X"=>"Dance Therapist",
789
+ "222Q00000X"=>"Developmental Therapist",
790
+ "226300000X"=>"Kinesiotherapist",
791
+ "225700000X"=>"Massage Therapist",
792
+ "224900000X"=>"Mastectomy Fitter",
793
+ "225A00000X"=>"Music Therapist",
794
+ "225XR0403X"=>"Driving and Community Mobility",
795
+ "225XE0001X"=>"Environmental Modification",
796
+ "225XE1200X"=>"Ergonomics",
797
+ "225XF0002X"=>"Feeding, Eating & Swallowing",
798
+ "225XG0600X"=>"Gerontology",
799
+ "225XH1200X"=>"Hand",
800
+ "225XH1300X"=>"Human Factors",
801
+ "225XL0004X"=>"Low Vision",
802
+ "225XM0800X"=>"Mental Health",
803
+ "225XN1300X"=>"Neurorehabilitation",
804
+ "225XP0200X"=>"Pediatrics",
805
+ "225XP0019X"=>"Physical Rehabilitation",
806
+ "224ZR0403X"=>"Driving and Community Mobility",
807
+ "224ZE0001X"=>"Environmental Modification",
808
+ "224ZF0002X"=>"Feeding, Eating & Swallowing",
809
+ "224ZL0004X"=>"Low Vision",
810
+ "225000000X"=>"Orthotic Fitter",
811
+ "224L00000X"=>"Pedorthist",
812
+ "2251C2600X"=>"Cardiopulmonary",
813
+ "2251E1300X"=>"Electrophysiology, Clinical",
814
+ "2251E1200X"=>"Ergonomics",
815
+ "2251G0304X"=>"Geriatrics",
816
+ "2251H1200X"=>"Hand",
817
+ "2251H1300X"=>"Human Factors",
818
+ "2251N0400X"=>"Neurology",
819
+ "2251X0800X"=>"Orthopedic",
820
+ "2251P0200X"=>"Pediatrics",
821
+ "2251S0007X"=>"Sports",
822
+ "225200000X"=>"Physical Therapy Assistant",
823
+ "225B00000X"=>"Pulmonary Function Technologist",
824
+ "225800000X"=>"Recreation Therapist",
825
+ "225CA2400X"=>"Assistive Technology Practitioner",
826
+ "225CA2500X"=>"Assistive Technology Supplier",
827
+ "225CX0006X"=>"Orientation and Mobility Training Provider",
828
+ "225400000X"=>"Rehabilitation Practitioner",
829
+ "2278C0205X"=>"Critical Care",
830
+ "2278E1000X"=>"Educational",
831
+ "2278E0002X"=>"Emergency Care",
832
+ "2278G1100X"=>"General Care",
833
+ "2278G0305X"=>"Geriatric Care",
834
+ "2278H0200X"=>"Home Health",
835
+ "2278P3900X"=>"Neonatal/Pediatrics",
836
+ "2278P3800X"=>"Palliative/Hospice",
837
+ "2278P4000X"=>"Patient Transport",
838
+ "2278P1004X"=>"Pulmonary Diagnostics",
839
+ "2278P1006X"=>"Pulmonary Function Technologist",
840
+ "2278P1005X"=>"Pulmonary Rehabilitation",
841
+ "2278S1500X"=>"SNF/Subacute Care",
842
+ "2279C0205X"=>"Critical Care",
843
+ "2279E1000X"=>"Educational",
844
+ "2279E0002X"=>"Emergency Care",
845
+ "2279G1100X"=>"General Care",
846
+ "2279G0305X"=>"Geriatric Care",
847
+ "2279H0200X"=>"Home Health",
848
+ "2279P3900X"=>"Neonatal/Pediatrics",
849
+ "2279P3800X"=>"Palliative/Hospice",
850
+ "2279P4000X"=>"Patient Transport",
851
+ "2279P1004X"=>"Pulmonary Diagnostics",
852
+ "2279P1006X"=>"Pulmonary Function Technologist",
853
+ "2279P1005X"=>"Pulmonary Rehabilitation",
854
+ "2279S1500X"=>"SNF/Subacute Care",
855
+ "2255A2300X"=>"Athletic Trainer",
856
+ "2255R0406X"=>"Rehabilitation, Blind",
857
+ "231HA2400X"=>"Assistive Technology Practitioner",
858
+ "231HA2500X"=>"Assistive Technology Supplier",
859
+ "237600000X"=>"Audiologist-Hearing Aid Fitter",
860
+ "237700000X"=>"Hearing Instrument Specialist",
861
+ "2355A2700X"=>"Audiology Assistant",
862
+ "2355S0801X"=>"Speech-Language Assistant",
863
+ "235Z00000X"=>"Speech-Language Pathologist",
864
+ "390200000X"=>"Student in an Organized Health Care Education/Training Program",
865
+ "242T00000X"=>"Perfusionist",
866
+ "2471B0102X"=>"Bone Densitometry",
867
+ "2471C1106X"=>"Cardiac-Interventional Technology",
868
+ "2471C1101X"=>"Cardiovascular-Interventional Technology",
869
+ "2471C3401X"=>"Computed Tomography",
870
+ "2471M1202X"=>"Magnetic Resonance Imaging",
871
+ "2471M2300X"=>"Mammography",
872
+ "2471N0900X"=>"Nuclear Medicine Technology",
873
+ "2471Q0001X"=>"Quality Management",
874
+ "2471R0002X"=>"Radiation Therapy",
875
+ "2471C3402X"=>"Radiography",
876
+ "2471S1302X"=>"Sonography",
877
+ "2471V0105X"=>"Vascular Sonography",
878
+ "2471V0106X"=>"Vascular-Interventional Technology",
879
+ "243U00000X"=>"Radiology Practitioner Assistant",
880
+ "246XC2901X"=>"Cardiovascular Invasive Specialist",
881
+ "246XS1301X"=>"Sonography",
882
+ "246XC2903X"=>"Vascular Specialist",
883
+ "246YC3301X"=>"Coding Specialist, Hospital Based",
884
+ "246YC3302X"=>"Coding Specialist, Physician Office Based",
885
+ "246YR1600X"=>"Registered Record Administrator",
886
+ "246ZA2600X"=>"Art, Medical",
887
+ "246ZB0500X"=>"Biochemist",
888
+ "246ZB0301X"=>"Biomedical Engineering",
889
+ "246ZB0302X"=>"Biomedical Photographer",
890
+ "246ZB0600X"=>"Biostatistician",
891
+ "246ZC0007X"=>"Certified First Assistant",
892
+ "246ZE0500X"=>"EEG",
893
+ "246ZE0600X"=>"Electroneurodiagnostic",
894
+ "246ZG1000X"=>"Geneticist, Medical (PhD)",
895
+ "246ZG0701X"=>"Graphics Methods",
896
+ "246ZI1000X"=>"Illustration, Medical",
897
+ "246ZN0300X"=>"Nephrology",
898
+ "246ZS0400X"=>"Surgical",
899
+ "246QB0000X"=>"Blood Banking",
900
+ "246QC1000X"=>"Chemistry",
901
+ "246QC2700X"=>"Cytotechnology",
902
+ "246QH0401X"=>"Hemapheresis Practitioner",
903
+ "246QH0000X"=>"Hematology",
904
+ "246QH0600X"=>"Histology",
905
+ "246QI0000X"=>"Immunology",
906
+ "246QL0900X"=>"Laboratory Management",
907
+ "246QL0901X"=>"Laboratory Management, Diplomate",
908
+ "246QM0706X"=>"Medical Technologist",
909
+ "246QM0900X"=>"Microbiology",
910
+ "246W00000X"=>"Technician, Cardiology",
911
+ "2470A2800X"=>"Assistant Record Technician",
912
+ "2472B0301X"=>"Biomedical Engineering",
913
+ "2472D0500X"=>"Darkroom",
914
+ "2472E0500X"=>"EEG",
915
+ "2472R0900X"=>"Renal Dialysis",
916
+ "2472V0600X"=>"Veterinary",
917
+ "247ZC0005X"=>"Clinical Laboratory Director, Non-physician",
918
+ "246RH0600X"=>"Histology",
919
+ "246RM2200X"=>"Medical Laboratory",
920
+ "246RP1900X"=>"Phlebotomy",
921
+ "251300000X"=>"Local Education Agency (LEA)",
922
+ "251B00000X"=>"Case Management",
923
+ "251S00000X"=>"Community/Behavioral Health",
924
+ "251C00000X"=>"Day Training, Developmentally Disabled Services",
925
+ "252Y00000X"=>"Early Intervention Provider Agency",
926
+ "253J00000X"=>"Foster Care Agency",
927
+ "251E00000X"=>"Home Health",
928
+ "251F00000X"=>"Home Infusion",
929
+ "251G00000X"=>"Hospice Care, Community Based",
930
+ "253Z00000X"=>"In Home Supportive Care",
931
+ "251J00000X"=>"Nursing Care",
932
+ "251T00000X"=>"Program of All-Inclusive Care for the Elderly (PACE) Provider Organization",
933
+ "251K00000X"=>"Public Health or Welfare",
934
+ "251X00000X"=>"Supports Brokerage",
935
+ "251V00000X"=>"Voluntary or Charitable",
936
+ "261QM0855X"=>"Adolescent and Children Mental Health",
937
+ "261QA0600X"=>"Adult Day Care",
938
+ "261QM0850X"=>"Adult Mental Health",
939
+ "261QA0005X"=>"Ambulatory Family Planning Facility",
940
+ "261QA0006X"=>"Ambulatory Fertility Facility",
941
+ "261QA1903X"=>"Ambulatory Surgical",
942
+ "261QA0900X"=>"Amputee",
943
+ "261QA3000X"=>"Augmentative Communication",
944
+ "261QB0400X"=>"Birthing",
945
+ "261QC1500X"=>"Community Health",
946
+ "261QC1800X"=>"Corporate Health",
947
+ "261QC0050X"=>"Critical Access Hospital",
948
+ "261QD0000X"=>"Dental",
949
+ "261QD1600X"=>"Developmental Disabilities",
950
+ "261QE0002X"=>"Emergency Care",
951
+ "261QE0800X"=>"Endoscopy",
952
+ "261QE0700X"=>"End-Stage Renal Disease (ESRD) Treatment",
953
+ "261QF0050X"=>"Family Planning, Non-Surgical",
954
+ "261QF0400X"=>"Federally Qualified Health Center (FQHC)",
955
+ "261QG0250X"=>"Genetics",
956
+ "261QH0100X"=>"Health Service",
957
+ "261QH0700X"=>"Hearing and Speech",
958
+ "261QI0500X"=>"Infusion Therapy",
959
+ "261QL0400X"=>"Lithotripsy",
960
+ "261QM1200X"=>"Magnetic Resonance Imaging (MRI)",
961
+ "261QM2500X"=>"Medical Specialty",
962
+ "261QM3000X"=>"Medically Fragile Infants and Children Day Care",
963
+ "261QM0801X"=>"Mental Health (Including Community Mental Health Center)",
964
+ "261QM2800X"=>"Methadone",
965
+ "261QM1000X"=>"Migrant Health",
966
+ "261QM1103X"=>"Military Ambulatory Procedure Visits Operational (Transportable)",
967
+ "261QM1101X"=>"Military and U.S. Coast Guard Ambulatory Procedure",
968
+ "261QM1102X"=>"Military Outpatient Operational (Transportable) Component",
969
+ "261QM1100X"=>"Military/U.S. Coast Guard Outpatient",
970
+ "261QM1300X"=>"Multi-Specialty",
971
+ "261QX0100X"=>"Occupational Medicine",
972
+ "261QX0200X"=>"Oncology",
973
+ "261QX0203X"=>"Oncology, Radiation",
974
+ "261QS0132X"=>"Ophthalmologic Surgery",
975
+ "261QS0112X"=>"Oral and Maxillofacial Surgery",
976
+ "261QP3300X"=>"Pain",
977
+ "261QP2000X"=>"Physical Therapy",
978
+ "261QP1100X"=>"Podiatric",
979
+ "261QP2300X"=>"Primary Care",
980
+ "261QP2400X"=>"Prison Health",
981
+ "261QP0904X"=>"Public Health, Federal",
982
+ "261QP0905X"=>"Public Health, State or Local",
983
+ "261QR0200X"=>"Radiology",
984
+ "261QR0206X"=>"Radiology, Mammography",
985
+ "261QR0208X"=>"Radiology, Mobile",
986
+ "261QR0207X"=>"Radiology, Mobile Mammography",
987
+ "261QR0800X"=>"Recovery Care",
988
+ "261QR0400X"=>"Rehabilitation",
989
+ "261QR0404X"=>"Rehabilitation, Cardiac Facilities",
990
+ "261QR0401X"=>"Rehabilitation, Comprehensive Outpatient Rehabilitation Facility (CORF)",
991
+ "261QR0405X"=>"Rehabilitation, Substance Use Disorder",
992
+ "261QR1100X"=>"Research",
993
+ "261QR1300X"=>"Rural Health",
994
+ "261QS1200X"=>"Sleep Disorder Diagnostic",
995
+ "261QS1000X"=>"Student Health",
996
+ "261QU0200X"=>"Urgent Care",
997
+ "261QV0200X"=>"VA",
998
+ "273100000X"=>"Epilepsy Unit",
999
+ "275N00000X"=>"Medicare Defined Swing Bed Unit",
1000
+ "273R00000X"=>"Psychiatric Unit",
1001
+ "273Y00000X"=>"Rehabilitation Unit",
1002
+ "276400000X"=>"Rehabilitation, Substance Use Disorder Unit",
1003
+ "281PC2000X"=>"Children",
1004
+ "282NC2000X"=>"Children",
1005
+ "282NC0060X"=>"Critical Access",
1006
+ "282NR1301X"=>"Rural",
1007
+ "282NW0100X"=>"Women",
1008
+ "282E00000X"=>"Long Term Care Hospital",
1009
+ "2865M2000X"=>"Military General Acute Care Hospital",
1010
+ "2865X1600X"=>"Military General Acute Care Hospital. Operational (Transportable)",
1011
+ "283Q00000X"=>"Psychiatric Hospital",
1012
+ "283XC2000X"=>"Children",
1013
+ "282J00000X"=>"Religious Nonmedical Health Care Institution",
1014
+ "284300000X"=>"Special Hospital",
1015
+ "291U00000X"=>"Clinical Medical Laboratory",
1016
+ "292200000X"=>"Dental Laboratory",
1017
+ "291900000X"=>"Military Clinical Medical Laboratory",
1018
+ "293D00000X"=>"Physiological Laboratory",
1019
+ "302F00000X"=>"Exclusive Provider Organization",
1020
+ "302R00000X"=>"Health Maintenance Organization",
1021
+ "305S00000X"=>"Point of Service",
1022
+ "305R00000X"=>"Preferred Provider Organization",
1023
+ "311500000X"=>"Alzheimer Center (Dementia Center)",
1024
+ "3104A0630X"=>"Assisted Living, Behavioral Disturbances",
1025
+ "3104A0625X"=>"Assisted Living, Mental Illness",
1026
+ "311ZA0620X"=>"Adult Care Home",
1027
+ "315D00000X"=>"Hospice, Inpatient",
1028
+ "310500000X"=>"Intermediate Care Facility, Mental Illness",
1029
+ "315P00000X"=>"Intermediate Care Facility, Mentally Retarded",
1030
+ "313M00000X"=>"Nursing Facility/Intermediate Care Facility",
1031
+ "3140N1450X"=>"Nursing Care, Pediatric",
1032
+ "177F00000X"=>"Lodging",
1033
+ "174200000X"=>"Meals",
1034
+ "320800000X"=>"Community Based Residential Treatment Facility, Mental Illness",
1035
+ "320900000X"=>"Community Based Residential Treatment Facility, Mental Retardation and/or Developmental Disabilities",
1036
+ "323P00000X"=>"Psychiatric Residential Treatment Facility",
1037
+ "322D00000X"=>"Residential Treatment Facility, Emotionally Disturbed Children",
1038
+ "320600000X"=>"Residential Treatment Facility, Mental Retardation and/or Developmental Disabilities",
1039
+ "320700000X"=>"Residential Treatment Facility, Physical Disabilities",
1040
+ "3245S0500X"=>"Substance Abuse Treatment, Children",
1041
+ "385HR2050X"=>"Respite Care Camp",
1042
+ "385HR2055X"=>"Respite Care, Mental Illness, Child",
1043
+ "385HR2060X"=>"Respite Care, Mental Retardation and/or Developmental Disabilities",
1044
+ "385HR2065X"=>"Respite Care, Physical Disabilities, Child",
1045
+ "331L00000X"=>"Blood Bank",
1046
+ "332100000X"=>"Department of Veterans Affairs (VA) Pharmacy",
1047
+ "332BC3200X"=>"Customized Equipment",
1048
+ "332BD1200X"=>"Dialysis Equipment & Supplies",
1049
+ "332BN1400X"=>"Nursing Facility Supplies",
1050
+ "332BX2000X"=>"Oxygen Equipment & Supplies",
1051
+ "332BP3500X"=>"Parenteral & Enteral Nutrition",
1052
+ "333300000X"=>"Emergency Response System Companies",
1053
+ "332G00000X"=>"Eye Bank",
1054
+ "332H00000X"=>"Eyewear Supplier (Equipment, not the service)",
1055
+ "332S00000X"=>"Hearing Aid Equipment",
1056
+ "332U00000X"=>"Home Delivered Meals",
1057
+ "332800000X"=>"Indian Health Service/Tribal/Urban Indian Health (I/T/U) Pharmacy",
1058
+ "335G00000X"=>"Medical Foods Supplier",
1059
+ "332000000X"=>"Military/U.S. Coast Guard Pharmacy",
1060
+ "332900000X"=>"Non-Pharmacy Dispensing Site",
1061
+ "335U00000X"=>"Organ Procurement Organization",
1062
+ "3336C0002X"=>"Clinic Pharmacy",
1063
+ "3336C0003X"=>"Community/Retail Pharmacy",
1064
+ "3336C0004X"=>"Compounding Pharmacy",
1065
+ "3336H0001X"=>"Home Infusion Therapy Pharmacy",
1066
+ "3336I0012X"=>"Institutional Pharmacy",
1067
+ "3336L0003X"=>"Long Term Care Pharmacy",
1068
+ "3336M0002X"=>"Mail Order Pharmacy",
1069
+ "3336M0003X"=>"Managed Care Organization Pharmacy",
1070
+ "3336N0007X"=>"Nuclear Pharmacy",
1071
+ "3336S0011X"=>"Specialty Pharmacy",
1072
+ "335V00000X"=>"Portable X-Ray Supplier",
1073
+ "344800000X"=>"Air Carrier",
1074
+ "3416A0800X"=>"Air Transport",
1075
+ "3416L0300X"=>"Land Transport",
1076
+ "3416S0300X"=>"Water Transport",
1077
+ "347B00000X"=>"Bus",
1078
+ "3418M1120X"=>"Military or U.S. Coast Guard Ambulance, Air Transport",
1079
+ "3418M1110X"=>"Military or U.S. Coast Guard Ambulance, Ground Transport",
1080
+ "3418M1130X"=>"Military or U.S. Coast Guard Ambulance, Water Transport",
1081
+ "343900000X"=>"Non-emergency Medical Transport (VAN)",
1082
+ "347C00000X"=>"Private Vehicle",
1083
+ "343800000X"=>"Secured Medical Transport (VAN)",
1084
+ "344600000X"=>"Taxi",
1085
+ "347D00000X"=>"Train",
1086
+ "347E00000X"=>"Transportation Broker",
1087
+ "207K00000X"=>"Allergy & Immunology",
1088
+ "207L00000X"=>"Anesthesiology",
1089
+ "207N00000X"=>"Dermatology",
1090
+ "207P00000X"=>"Emergency Medicine",
1091
+ "207Q00000X"=>"Family Medicine",
1092
+ "207R00000X"=>"Internal Medicine",
1093
+ "207U00000X"=>"Nuclear Medicine",
1094
+ "207V00000X"=>"Obstetrics & Gynecology",
1095
+ "207X00000X"=>"Orthopaedic Surgery",
1096
+ "207Y00000X"=>"Otolaryngology",
1097
+ "208000000X"=>"Pediatrics",
1098
+ "208100000X"=>"Physical Medicine & Rehabilitation",
1099
+ "208200000X"=>"Plastic Surgery",
1100
+ "208600000X"=>"Surgery",
1101
+ "208800000X"=>"Urology",
1102
+ "103G00000X"=>"Clinical Neuropsychologist",
1103
+ "101Y00000X"=>"Counselor",
1104
+ "103T00000X"=>"Psychologist",
1105
+ "104100000X"=>"Social Worker",
1106
+ "111N00000X"=>"Chiropractor",
1107
+ "122300000X"=>"Dentist",
1108
+ "133V00000X"=>"Dietitian, Registered",
1109
+ "133N00000X"=>"Nutritionist",
1110
+ "152W00000X"=>"Optometrist",
1111
+ "156F00000X"=>"Technician/Technologist",
1112
+ "163W00000X"=>"Registered Nurse",
1113
+ "374700000X"=>"Technician",
1114
+ "171W00000X"=>"Contractor",
1115
+ "171000000X"=>"Military Health Care Provider",
1116
+ "174400000X"=>"Specialist",
1117
+ "174M00000X"=>"Veterinarian",
1118
+ "183500000X"=>"Pharmacist",
1119
+ "364S00000X"=>"Clinical Nurse Specialist",
1120
+ "363L00000X"=>"Nurse Practitioner",
1121
+ "363A00000X"=>"Physician Assistant",
1122
+ "213E00000X"=>"Podiatrist",
1123
+ "225X00000X"=>"Occupational Therapist",
1124
+ "224Z00000X"=>"Occupational Therapy Assistant",
1125
+ "225100000X"=>"Physical Therapist",
1126
+ "225C00000X"=>"Rehabilitation Counselor",
1127
+ "227800000X"=>"Respiratory Therapist, Certified",
1128
+ "227900000X"=>"Respiratory Therapist, Registered",
1129
+ "225500000X"=>"Specialist/Technologist",
1130
+ "231H00000X"=>"Audiologist",
1131
+ "235500000X"=>"Specialist/Technologist",
1132
+ "247100000X"=>"Radiologic Technologist",
1133
+ "246X00000X"=>"Specialist/Technologist Cardiovascular",
1134
+ "246Y00000X"=>"Specialist/Technologist, Health Information",
1135
+ "246Z00000X"=>"Specialist/Technologist, Other",
1136
+ "246Q00000X"=>"Specialist/Technologist, Pathology",
1137
+ "247000000X"=>"Technician, Health Information",
1138
+ "247200000X"=>"Technician, Other",
1139
+ "246R00000X"=>"Technician, Pathology",
1140
+ "261Q00000X"=>"Clinic/Center",
1141
+ "281P00000X"=>"Chronic Disease Hospital",
1142
+ "282N00000X"=>"General Acute Care Hospital",
1143
+ "286500000X"=>"Military Hospital",
1144
+ "283X00000X"=>"Rehabilitation Hospital",
1145
+ "310400000X"=>"Assisted Living Facility",
1146
+ "311Z00000X"=>"Custodial Care Facility",
1147
+ "314000000X"=>"Skilled Nursing Facility",
1148
+ "324500000X"=>"Substance Abuse Rehabilitation Facility",
1149
+ "385H00000X"=>"Respite Care",
1150
+ "332B00000X"=>"Durable Medical Equipment & Medical Supplies",
1151
+ "333600000X"=>"Pharmacy",
1152
+ "341600000X"=>"Ambulance",
1153
+ "341800000X"=>"Military/U.S. Coast Guard Transport"
1154
+ }
1155
+ }
1156
+
1157
+ class << self
1158
+ def decode(type, val)
1159
+ code_values[type.downcase.to_sym][val.try :upcase]
1160
+ end
1161
+ end
1162
+ end
1163
+ end
1164
+ end