Download Patient Document
Perform Download Patient Document through NikoHealth.
nikohealth_download_patient_documentwritenikohealth
Inputs
- Patient Document Id
patient_document_idtextrequiredRequired text value.
- Document
documentjsonOptional JSON value.
Outputs
successSuccessstatusStatusdocument_idDocument Idniko_patient_document_idNiko Patient Document IddownloadedDownloadedwas_existingWas ExistingtitleTitlesha256Sha256sizeSizeerrorError
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": [
"patient_document_id"
],
"properties": {
"document": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
},
"patient_document_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"size": {},
"error": {},
"title": {},
"sha256": {},
"status": {},
"success": {},
"downloaded": {},
"document_id": {},
"was_existing": {},
"niko_patient_document_id": {}
},
"additionalProperties": true
}