action patientview_get_basic_patient_details { label: "Get Basic Patient Information" description: "Given a User ID, get basic patient information for a user from clinical data stored in FHIR" provider: patientview method: GET path: "/patient/{userId}/basic" encoding: json input: { type: "object" properties: { userId: { type: "integer" format: "int64" } } required: ["userId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }