action opentrials_get_record { label: "getRecord" description: "Returns a trial's raw record from its sources" provider: opentrials method: GET path: "/trials/{trialId}/records/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } trialId: { type: "string" } } required: ["id", "trialId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }