Extract Patient Tags
Perform Extract Patient Tags through GenHealth.
extract_patient_tagswrite
Inputs
- Document Id
document_idexpressionrequiredRequired literal value or workflow expression.
- Patient Id
patient_idexpressionOptional literal value or workflow expression.
Outputs
successSuccesstag_idsTag Idstag_summariesTag SummarieserrorError
Output schema completeness: best_effort_declared
Safety
- External effect
- write
- Confirmation recommended
- No
- Retry safe
- No
- Dry run supported
- No
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"required": [
"document_id"
],
"properties": {
"patient_id": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"document_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"success": {},
"tag_ids": {},
"tag_summaries": {}
},
"additionalProperties": true
}