@@ -192,22 +192,25 @@ class WheelchairAccessLevel(str, enum.Enum):
192
192
193
193
@enum .unique
194
194
class VaccineProvider (str , enum .Enum ):
195
- """Parent organization that provides vaccines"""
195
+ """Brand that administers vaccines.
196
+
197
+ The list of participating US pharmacies can be found here:
198
+ https://www.cdc.gov/vaccines/covid-19/retail-pharmacy-program/participating-pharmacies.html
199
+
200
+ If multiple brands (eg Big Y Pharmacy, Brookshires) are owned by the same
201
+ parent (eg TOPCO), each brand will get a separate entry in this enum.
202
+
203
+ In the future, the parent corporations that own one or more brands
204
+ might also be explicitly represented in the schema.
205
+ """
196
206
197
- RITE_AID = "rite_aid"
198
- WALGREENS = "walgreens"
199
- SAFEWAY = "safeway"
200
- VONS = "vons"
201
- SAMS = "sams"
202
- ALBERTSONS = "albertson"
203
- PAVILIONS = "pavilions"
204
- WALMART = "walmart"
205
- CVS = "cvs"
206
207
ACME = "acme"
208
+ ALBERTSONS = "albertson"
207
209
BIG_Y = "big_y"
208
210
BROOKSHIRE = "brookshire"
209
211
COSTCO = "costco"
210
212
CUB = "cub_pharmacy"
213
+ CVS = "cvs"
211
214
DILLONS = "dillons"
212
215
DRUGCO = "drugco"
213
216
FAMILY_FARE = "family_fare"
@@ -219,20 +222,47 @@ class VaccineProvider(str, enum.Enum):
219
222
GIANT = "giant"
220
223
GIANT_EAGLE = "giant_eagle"
221
224
GIANT_FOOD = "giant_food"
222
- HEB = "heb"
223
225
HAGGEN = "haggen"
224
226
HANNAFORD = "hannaford"
225
227
HARMONS = "harmons"
226
228
HARPS = "harps"
227
229
HARRIS_TEETER = "harris_teeter"
228
230
HARTIG = "hartig"
231
+ HEB = "heb"
229
232
HOMELAND = "homeland"
230
233
HY_VEE = "hyvee"
234
+ INGLES = "ingles"
231
235
KAISER_HEALTH_PLAN = "kaiser_health_plan"
232
236
KAISER_PERMANENTE = "kaiser_permanente"
233
237
KING_SOOPERS = "king_soopers"
234
238
KROGER = "kroger"
235
- INGLES = "ingles"
239
+ LITTLE_CLINIC = "little_clinic"
240
+ MARIANOS = "marianos"
241
+ MARKET_STREET = "market_street"
242
+ MEDICAP = "medicap"
243
+ MEIJER = "meijer"
244
+ OSCO = "osco"
245
+ PAVILIONS = "pavilions"
246
+ PICK_N_SAVE = "pick_n_save"
247
+ PRICE_CHOPPER = "price_chopper"
248
+ PUBLIX = "publix"
249
+ QFC = "qfc"
250
+ RALEYS = "raleys"
251
+ RITE_AID = "rite_aid"
252
+ SAFEWAY = "safeway"
253
+ SAMS = "sams"
254
+ SAV_ON = "sav_on"
255
+ SHOP_RITE = "shop_rite"
256
+ SMITHS = "smiths"
257
+ SOUTH_EASTERN = "south_eastern"
258
+ STOP_AND_SHOP = "stop_and_shop"
259
+ THRIFTY = "thrifty"
260
+ TOM_THUMB = "tom_thumb"
261
+ VONS = "vons"
262
+ WALGREENS = "walgreens"
263
+ WALMART = "walmart"
264
+ WEIS = "weis"
265
+ WINN_DIXIE = "winn_dixie"
236
266
237
267
238
268
@enum .unique
0 commit comments