action drchrono_care_plans_list { label: "care_plans_list" description: "Retrieve or search care plans" provider: drchrono method: GET path: "/api/care_plans" encoding: json input: { type: "object" properties: { cursor: { type: "string" description: "The pagination cursor value." } doctor: { type: "integer" } page_size: { type: "integer" description: "Number of results to return per page." } patient: { type: "integer" } plan_type: { type: "integer" } } additionalProperties: false } output: { type: "object" description: "Paginated Result" properties: { data: { type: "array" description: "result data" items: { type: "object" properties: { appointment: { type: "string" } code: { type: "string" } code_system: { type: "string" } created_at: { type: "string" } description: { type: "string" } id: { type: "integer" } instructions: { type: "string" } patient: { type: "string" } plan_type: { type: "string" description: "Can be one of the following: `1`(Goal), `2`(Patient education), `3`(Patient decision aid), `4`(Patient clinical instruction), `5`(Referral to other doctor), `6`(Health concerns)" enum: ["1", "2", "3", "4", "5", "6"] } scheduled_date: { type: "string" } title: { type: "string" } updated_at: { type: "string" } } } } next: { type: "string" description: "Next Paginated page" } previous: { type: "string" description: "Previous paginated page" } } } }