List registry fields
talonic_list_fieldsDiscover the canonical fields in your workspace's document registry before querying. Get stable IDs, maturity levels, and synonyms to select the right concept for questions or filtering.
Instructions
List the workspace's Field Registry — the canonical concepts Talonic has discovered across every ingested document, each with a stable id, maturity level, data type, synonyms and occurrence count.
USE WHEN: you need to know WHAT data exists before querying it, want to pick the right concept for a question, or need the exact field id for talonic_get_field / talonic_field_values. NOT FOR: locating a specific document (talonic_search) or filtering documents by a value (talonic_filter).
ARGS: search (case-insensitive contains on name), maturity (core | proven | candidate — prefer core/proven for anything you will build on), include_superseded (default false: rows merged into another concept are hidden so you never see two ids for one concept), limit, cursor.
RETURNS: data[] of { id, canonical_name, display_name, data_type, maturity, tier, synonyms, description, occurrence_count, superseded_by, links } plus cursor pagination.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Page size (default 20, max 100). | |
| cursor | No | Opaque cursor from pagination.next_cursor. | |
| search | No | Case-insensitive contains match on canonical_name / display_name. | |
| maturity | No | Filter by maturity: `core` (universal, fully trusted — safe to build on), `proven` (recurring, stable id), `candidate` (newly discovered, may still be merged or renamed). | |
| include_superseded | No | Include rows merged into a survivor (they carry `superseded_by`). Default false. |