action drchrono_patient_physical_exams_list { label: "patient_physical_exams_list" description: "Retrieve or search patient physical exams for CQM" provider: drchrono method: GET path: "/api/patient_physical_exams" 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" 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" } } } } next: { type: "string" description: "Next Paginated page" } previous: { type: "string" description: "Previous paginated page" } } } }