action drchrono_custom_vitals_list { label: "custom_vitals_list" description: "Retrieve or search custom vital types" provider: drchrono method: GET path: "/api/custom_vitals" 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." } } additionalProperties: false } output: { type: "object" description: "Paginated Result" properties: { data: { type: "array" description: "result data" items: { type: "object" properties: { allowed_values: { type: "array" description: "If `data_type` is `single_sel`, this is the array of values in the select's dropdown." items: { type: "string" } } archived: { type: "boolean" description: "Indicates that the object has been soft-deleted and should not be used" } data_type: { type: "string" description: "One of `text`, `number`, or `single_sel`" enum: ["text", "number", "single_sel"] } description: { type: "string" } doctor: { type: "string" description: "ID of the doctor who created the custom vital" } fraction_delimiter: { type: "string" description: "If `is_fraction_field` is true, this is the character separating the numerator and denominator" } id: { type: "integer" } is_fraction_field: { type: "boolean" } name: { type: "string" } unit: { type: "string" } } } } next: { type: "string" description: "Next Paginated page" } previous: { type: "string" description: "Previous paginated page" } } } }