-
Notifications
You must be signed in to change notification settings - Fork 23
healthcare.prior-authorization
#115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
7e4eba8 to
25b6ac9
Compare
| class PriorAuthorization(BaseModel): | ||
| member: MemberInformation | ||
| requesting_provider: RequestingProvider | ||
| servicing_provider: ServicingProvider | ||
| service_info: ServiceInformation | ||
| submission_date: date = Field(..., description="Date of submission") No newline at end of file |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@outtanames no field description required?
| class ServiceType(str, Enum): | ||
| INPATIENT = "Inpatient" | ||
| OUTPATIENT = "Outpatient" | ||
| HOME_HEALTH = "Home Health" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use lowercase and hyphens home-health for enums.
| from enum import Enum | ||
|
|
||
| class ServiceType(str, Enum): | ||
| INPATIENT = "Inpatient" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use lowercase
|
|
||
| class MemberInformation(BaseModel): | ||
| member_id: str = Field(..., description="Member's insurance ID number") | ||
| first_name: str |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All of these fields need to be Optional[str] with Field(None, description=...)
No description provided.