action drchrono_clinical_note_field_types_read { label: "clinical_note_field_types_read" description: "Retrieve an existing clinial note field type" provider: drchrono method: GET path: "/api/clinical_note_field_types/{id}" encoding: json input: { type: "object" properties: { clinical_note_template: { type: "integer" } doctor: { type: "integer" } id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { allowed_values: { type: "array" description: "Value options the field type relies on if applicable, otherwise it will be an empty array" items: { type: "string" description: "Value option" } } archived: { type: "boolean" description: "Indicates that the field has been soft-deleted by the doctor and will not be used in future notes" } clinical_note_template: { type: "string" description: "ID of the `/api/clinical_note_templates` object that the field belongs to" } comment: { type: "string" description: "Comment" } data_type: { type: "string" description: "One of `\"\"`, `\"Checkbox\"`, `\"NullCheckbox\"`, `\"String\"`, `\"TwoStrings\"`, `\"FreeDraw\"`, `\"Photo\"`, `\"Header\"`, `\"Subheader\"`" } id: { type: "integer" } name: { type: "string" } required: { type: "boolean" description: "Indicates that a note should not be locked unless a value is provided for this field" } } } }