action drchrono_patient_physical_exams_read { label: "patient_physical_exams_read" description: "Retrieve an existing patient physical exam for CQM" provider: drchrono method: GET path: "/api/patient_physical_exams/{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" description: "Description of physical exam" } patient: { type: "integer" } value_code: { type: "string" description: "Code from different code system represent physical exam value" } value_code_system: { type: "string" description: "Can be `SNOMEDCT`, `ICD10CM`, `LOINC`" } value_name: { type: "string" description: "Description of value" } } } }