action drchrono_patient_risk_assessments_list { label: "patient_risk_assessments_list" provider: drchrono method: GET path: "/api/patient_risk_assessments" 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" } } additionalProperties: false } output: { type: "object" description: "Paginated Result" properties: { data: { type: "array" description: "result data" items: { type: "object" required: ["doctor", "patient"] properties: { code: { type: "string" } code_system: { type: "string" } created_at: { type: "string" } doctor: { type: "integer" } effective_time: { type: "string" } id: { type: "integer" } name: { type: "string" } patient: { type: "integer" } value_code: { type: "string" } value_code_system: { type: "string" } value_name: { type: "string" } } } } next: { type: "string" description: "Next Paginated page" } previous: { type: "string" description: "Previous paginated page" } } } }