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