Option A: Create from files already in your File Library
In File Library , select the documents you want to use. You can choose specific files by checking the box next to the file name. To create a schema, select between 1 and 5 files.
After selecting the files, click Create Schema.Option B: Upload files to Schema
In File Library, click on the Schemas tab.
Click the “Create Schema” button in the top-right corner.
Upload up to 5 files in one of these formats: PDF, DOCX, TXT, HTML or Markdown. Alternatively, select files from your library.
Wrong or inconsistent dates: Standardize date formats (e.g., YYYY-MM-DD) in the schema and source docs, then re-create the schema.
Limited coverage: Confirm your documents actually contain the fields you defined (names and phrasing matter). Consider adding more representative documents.
Each parameter represents a type of data your system expects.
Parameters can have different value types, and in many cases, you can (or must) define constraints to limit or validate the input.
int: A whole number.➤ You can define a **range **if needed (e.g., min: 0, max: 100).float: A decimal number.➤ You can define a **range **if needed (e.g., min: 0.0, max: 1.0).enum: A predefined set of allowed values (e.g., ["low", "medium", "high"]).➤ You must define at least one value. This is a mandatory constraint.bool: A true/false value.➤ No constraint is needed, just indicate the type. Use for clear yes/no distinctions.datetime: A specific date.➤ You can optionally define a date range (e.g., from 2025-01-01 to 2025-12-31).string: Any text value.➤ You can optionally define a regex pattern to restrict the format (e.g., for emails or IDs).