> ## Documentation Index
> Fetch the complete documentation index at: https://learn.nextedy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Fields

> The Fields section covers how Polarion work item fields are mapped, displayed, and managed within the Nextedy RISKSHEET grid.

export const LastReviewed = ({date}) => {
  if (!date) return null;
  const formatted = new Date(`${date}T00:00:00Z`).toLocaleDateString("en-US", {
    year: "numeric",
    month: "long",
    day: "numeric",
    timeZone: "UTC"
  });
  return <p className="mt-10 text-sm text-gray-400 dark:text-zinc-500 not-prose">
      Last reviewed on {formatted}
    </p>;
};

<Columns cols={3}>
  <Card title="Field Mapping" icon="file" href="/risksheet/reference/fields/field-mapping">
    How Risksheet columns bind to Polarion work item fields through the `bindings` property, with automatic type detection, conversion rules, and naming conventions.
  </Card>

  <Card title="Supported Field Types" icon="file" href="/risksheet/reference/fields/supported-field-types">
    Complete reference of Polarion field types supported by Risksheet, including string, integer, float, enum, date, boolean, duration, and custom field types with their grid behavior.
  </Card>

  <Card title="Lightbox Fields" icon="file" href="/risksheet/reference/fields/lightbox-fields">
    Fields displayed in the item detail lightbox panel for viewing and editing work item properties outside the main grid, including field selection and layout configuration.
  </Card>

  <Card title="System Fields" icon="file" href="/risksheet/reference/fields/system-fields">
    Protected system fields (ID, status, type, author, created, updated, resolution) that are automatically set to read-only in the Risksheet grid regardless of column configuration.
  </Card>
</Columns>

<Frame>
  <img src="https://mintcdn.com/none-17b4493f/yWl5nA2D0IzEnZC1/risksheet/diagrams/reference/fields/index/diagram-1.svg?fit=max&auto=format&n=yWl5nA2D0IzEnZC1&q=85&s=b27a1cb3867e90dedc2ade2fec80002e" alt="diagram" style={{ maxWidth: "650px", width: "100%" }} width="650" height="200" data-path="risksheet/diagrams/reference/fields/index/diagram-1.svg" />
</Frame>

<Tip title="Column Types vs Field Types">
  Polarion field types and Risksheet column types are related but distinct. A Polarion string field can be displayed as a date column, and an integer field can be shown as an enum. When the `type` property is not explicitly set in a column definition, Risksheet auto-detects the type from the Polarion field metadata. See [Supported Field Types](/risksheet/reference/fields/supported-field-types) for the mapping between Polarion storage types and Risksheet display types.
</Tip>

## Related Sections

* [Column Types](/risksheet/reference/columns/index) --- column definitions that consume field data
* [Configuration Properties Index](/risksheet/reference/configuration/properties-index) --- full sheet configuration property reference
* [Formulas](/risksheet/reference/formulas/index) --- calculated columns that derive values from field data

<LastReviewed date="2026-06-24" />
