Get Patient Demographics From Parachute
Perform Get Patient Demographics From Parachute through Parachute Health.
parachute_get_patient_demographicsreadparachute
Inputs
- Inbox Document Id
inbox_document_idexpressionrequiredRequired literal value or workflow expression.
- Parachute Org Id
parachute_org_idexpressionOptional literal value or workflow expression.
- Mode
modeselectrequiredRequired selected identifier or value.
Options: off ("off"), shadow ("shadow"), enforce ("enforce")
Outputs
address_streetAddress Streetaddress_line2Address Line2address_cityAddress Cityaddress_stateAddress Stateaddress_zip_codeAddress Zip Codephone_numberPhone Numberfirst_nameFirst Namelast_nameLast Namebirth_dateBirth DatemodeMode
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": [
"inbox_document_id",
"mode"
],
"properties": {
"mode": {
"enum": [
"off",
"shadow",
"enforce"
],
"type": "string",
"description": "Required selected identifier or value.",
"x-workflow-field-type": "select"
},
"parachute_org_id": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"inbox_document_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"mode": {},
"last_name": {},
"birth_date": {},
"first_name": {},
"address_city": {},
"phone_number": {},
"address_line2": {},
"address_state": {},
"address_street": {},
"address_zip_code": {}
},
"additionalProperties": true
}