action twinehealth_update_patient { label: "Update a patient" description: "Update a patient record." provider: twinehealth method: PATCH path: "/patient/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }