action drchrono_insurances_read { label: "insurances_read" provider: drchrono method: GET path: "/api/insurances/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } payer_type: { type: "string" } term: { type: "string" } } required: ["id", "payer_type"] additionalProperties: false } output: { type: "object" properties: { payer_id: { type: "string" } payer_name: { type: "string" } state: { type: "string" } } } }