Skip to content
This repository was archived by the owner on Aug 30, 2021. It is now read-only.

Commit 69ecabe

Browse files
shashank025Shashank Ramaprasad
and
Shashank Ramaprasad
authored
Add more providers (L - Z) found in data (#21)
* Add more providers (L - Z) found in data * removed new subsidiaries from providers list Co-authored-by: Shashank Ramaprasad <[email protected]>
1 parent 0a020a0 commit 69ecabe

File tree

1 file changed

+42
-12
lines changed

1 file changed

+42
-12
lines changed

vaccine_feed_ingest_schema/location.py

+42-12
Original file line numberDiff line numberDiff line change
@@ -192,22 +192,25 @@ class WheelchairAccessLevel(str, enum.Enum):
192192

193193
@enum.unique
194194
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+
"""
196206

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"
206207
ACME = "acme"
208+
ALBERTSONS = "albertson"
207209
BIG_Y = "big_y"
208210
BROOKSHIRE = "brookshire"
209211
COSTCO = "costco"
210212
CUB = "cub_pharmacy"
213+
CVS = "cvs"
211214
DILLONS = "dillons"
212215
DRUGCO = "drugco"
213216
FAMILY_FARE = "family_fare"
@@ -219,20 +222,47 @@ class VaccineProvider(str, enum.Enum):
219222
GIANT = "giant"
220223
GIANT_EAGLE = "giant_eagle"
221224
GIANT_FOOD = "giant_food"
222-
HEB = "heb"
223225
HAGGEN = "haggen"
224226
HANNAFORD = "hannaford"
225227
HARMONS = "harmons"
226228
HARPS = "harps"
227229
HARRIS_TEETER = "harris_teeter"
228230
HARTIG = "hartig"
231+
HEB = "heb"
229232
HOMELAND = "homeland"
230233
HY_VEE = "hyvee"
234+
INGLES = "ingles"
231235
KAISER_HEALTH_PLAN = "kaiser_health_plan"
232236
KAISER_PERMANENTE = "kaiser_permanente"
233237
KING_SOOPERS = "king_soopers"
234238
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"
236266

237267

238268
@enum.unique

0 commit comments

Comments
 (0)