action drchrono_patient_risk_assessments_read { label: "patient_risk_assessments_read" provider: drchrono method: GET path: "/api/patient_risk_assessments/{id}" encoding: json input: { type: "object" properties: { doctor: { type: "integer" } id: { type: "string" } patient: { type: "integer" } } required: ["id"] additionalProperties: false } output: { 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" } } } }