action drchrono_custom_vitals_read { label: "custom_vitals_read" description: "Retrieve an existing custom vital type" provider: drchrono method: GET path: "/api/custom_vitals/{id}" encoding: json input: { type: "object" properties: { doctor: { type: "integer" } id: { type: "string" } } required: ["id"] additionalProperties: false } output: { 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" } } } }