Check Local Document Exists in Niko
Perform Check Local Document Exists in Niko through NikoHealth.
nikohealth_check_local_patient_document_existswritenikohealth
Inputs
- Document Id
document_idexpressionrequiredRequired literal value or workflow expression.
- Patient Id
patient_idexpressionrequiredRequired literal value or workflow expression.
Outputs
successSuccessstatusStatusfoundFoundpatient_document_idPatient Document Iddocument_idDocument IderrorError
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",
"patient_id"
],
"properties": {
"patient_id": {
"description": "Required 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": {},
"found": {},
"status": {},
"success": {},
"document_id": {},
"patient_document_id": {}
},
"additionalProperties": true
}