department
Parameter specifying the administrative area or functional department within healthcare organization.
Usability Options:
- Selected department parameter options may be leveraged in the CareQuery API as
- A string:
department = "chief executive"
- A list of strings for OR logic:
department = ["pharmacy", "medical"]
- Inter-parameterAND logic is not possible for the department parameter
- 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 = "department"))
Queries Where Parameter is Used:
Parameter Options:
department |
---|
administrative |
legal |
board of directors |
chief executive |
nurse |
other |
medical |
finance |
pharmacy |
purchasing |
laboratory |
sales |
operations |
radiology |
information technology |
womens health |
Updated about 1 year ago