division
Parameter specifying divisional groupings of US States
Usability Options:
- Selected division parameter options may be leveraged in the CareQuery API as
- A string:
division = "mountain"
- A list of strings for OR logic:
division = ["mountain", "pacific"]
- List of lists of strings for AND logic:
division = [["mountain"], ["pacific"]]
- A string:
Help within CareQuery API:
# import package
from care_query.care_query import CareQuery
# instantiate and connect
cq = CareQuery(email = "your-email",
token = "your-api-token")
# search parameter options available
print(cq.glossary.list_options(parameter = "division"))
Queries Where Parameter is Used:
- careEncounter
- careVisit
- careEpisode
- careJourney
- nppesDetail
- geoDetail
- execOutreach
- providerOutreach
- affiliationActivity
- procAllowedAvgs
Parameter Options:
division | underlying states |
---|---|
east north central | ['OH', 'IL', 'WI', 'IN', 'MI'] |
east south central | ['AL', 'KY', 'MS', 'TN'] |
middle atlantic | ['NY', 'PA', 'NJ'] |
mountain | ['ID', 'NM', 'NV', 'MT', 'WY', 'CO', 'UT', 'AZ'] |
new england | ['MA', 'RI', 'ME', 'NH', 'VT', 'CT'] |
pacific | ['OR', 'HI', 'AK', 'CA', 'WA'] |
south atlantic | ['DC', 'NC', 'MD', 'WV', 'SC', 'FL', 'DE', 'VA', 'GA'] |
west north central | ['MN', 'KS', 'IA', 'ND', 'SD', 'MO', 'NE'] |
west south central | ['LA', 'TX', 'OK', 'AR'] |
Updated about 1 year ago