action twinehealth_fetch_patient_plan_summary { label: "Get the plan summary for a patient" description: "Get the plan summary for a patient." provider: twinehealth method: GET path: "/patient_plan_summary/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } include: { type: "string" enum: ["actions", "bundles", "patient", "current_results"] } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }