action patientview_get_patient_entered_observations_by_code { label: "Get patient entered Observations of a Certain Type For a User" description: "Given a User ID and observation code, retrieve patient entered observations." provider: patientview method: GET path: "/user/{userId}/observations/{code}/patiententered" encoding: json input: { type: "object" properties: { code: { type: "string" } userId: { type: "integer" format: "int64" } } required: ["code", "userId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }