Search Patients
Perform Search Patients through Bonafide.
bonafide_search_patientsreadbonafide
Inputs
- First Name
first_nameexpressionrequiredRequired literal value or workflow expression.
- Last Name
last_nameexpressionrequiredRequired literal value or workflow expression.
- Date Of Birth
date_of_birthdateOptional date in YYYY-MM-DD format.
Outputs
successSuccesspatient_foundPatient Foundsingle_matchSingle Matchmatch_countMatch Countexternal_idExternal Idcustomer_typeCustomer TypeurlUrlmatchesMatchesmatched_byMatched ByambiguousAmbiguousidentity_verifiedIdentity Verifiedreview_requiredReview RequiredmessageMessageerrorErrorerror_messageError Message
Output schema completeness: best_effort_declared
Safety
- External effect
- read
- Confirmation recommended
- No
- Retry safe
- Yes
- Dry run supported
- No
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"required": [
"first_name",
"last_name"
],
"properties": {
"last_name": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"first_name": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"date_of_birth": {
"type": "string",
"format": "date",
"description": "Optional date in YYYY-MM-DD format.",
"x-workflow-field-type": "date"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"url": {},
"error": {},
"matches": {},
"message": {},
"success": {},
"ambiguous": {},
"matched_by": {},
"external_id": {},
"match_count": {},
"single_match": {},
"customer_type": {},
"error_message": {},
"patient_found": {},
"review_required": {},
"identity_verified": {}
},
"additionalProperties": true
}