action drchrono_clinical_note_field_types_list { label: "clinical_note_field_types_list" description: "Retrieve or search clinical note field types" provider: drchrono method: GET path: "/api/clinical_note_field_types" encoding: json input: { type: "object" properties: { clinical_note_template: { type: "integer" } 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: "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" } } } } next: { type: "string" description: "Next Paginated page" } previous: { type: "string" description: "Previous paginated page" } } } }