get_vital_signs
Retrieve a patient's vital signs history within a specified timeframe using FHIR API, enabling efficient clinical data access and analysis in Google Cloud Healthcare.
Instructions
Get patient's vital signs history
Input Schema
Name | Required | Description | Default |
---|---|---|---|
patientId | Yes | ||
timeframe | No | e.g., 3m, 6m, 1y, all |
Input Schema (JSON Schema)
{
"properties": {
"patientId": {
"type": "string"
},
"timeframe": {
"description": "e.g., 3m, 6m, 1y, all",
"type": "string"
}
},
"required": [
"patientId"
],
"type": "object"
}