We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 621d1a3 + b9c023c commit cf5d874Copy full SHA for cf5d874
huntflow_webhook_models/common_models/applicant.py
@@ -84,7 +84,7 @@ class Applicant(BaseModel):
84
85
class Respondent(BaseModel):
86
account_id: int = Field(..., description="Account ID", example=1)
87
- custom_id: int = Field(..., description="Custom ID", example=1)
+ custom_id: Optional[int] = Field(None, description="Custom ID", example=1)
88
name: Optional[str] = Field(None, description="Respondent name", example="John")
89
email: str = Field(..., description="Respondent email", example="[email protected]")
90
0 commit comments