action drchrono_patient_communications_read { label: "patient_communications_read" description: "Retrieve an existing patient communication for CQM" provider: drchrono method: GET path: "/api/patient_communications/{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" description: "Code from different code system" } code_system: { type: "string" description: "Can be `SNOMEDCT`, `LOINC`" } created_at: { type: "string" } doctor: { type: "integer" } effective_time: { type: "string" } id: { type: "integer" } name: { type: "string" } patient: { type: "integer" } value_code: { type: "string" description: "Code from different code system represent communication value" } value_code_system: { type: "string" description: "Can be `SNOMEDCT`, `ICD10CM`, `LOINC`" } value_name: { type: "string" description: "Description of value" } } } }