> ## 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.

# Reference

> Technical reference documentation for Nextedy CHECKLIST configuration properties, workflow functions, the service API, and version compatibility.

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="Configuration Properties" icon="gear" href="/checklist/reference/configuration-properties">
    Complete listing of all `nextedy.checklist.*` configuration properties with the 4-level hierarchical precedence system.
  </Card>

  <Card title="Workflow Functions and Conditions" icon="file" href="/checklist/reference/workflow-functions">
    All seven workflow functions and conditions for gate enforcement, including parameters and workflow XML examples.
  </Card>

  <Card title="IChecklistService API" icon="code" href="/checklist/reference/api">
    Service API for parsing, storing, and managing checklists programmatically from Velocity templates and workflow scripts.
  </Card>

  <Card title="Compatibility" icon="file" href="/checklist/reference/compatibility">
    Supported object types, the feature matrix, custom field requirements, and rendering modes.
  </Card>

  <Card title="Polarion Version Support" icon="code-compare" href="/overview/resources/polarion-version-support">
    Which Polarion versions Checklist supports — Siemens' supported versions plus one additional year.
  </Card>
</Columns>

<Tip title="Configuration property hierarchy">
  Checklist configuration properties follow a 4-level precedence pattern. The system resolves properties from most specific to least specific:

  1. **Type + Field specific:** `nextedy.checklist._TYPEID._FIELDID.property`
  2. **Field specific:** `nextedy.checklist._FIELDID.property`
  3. **Type specific:** `nextedy.checklist._TYPEID.property`
  4. **Global default:** `nextedy.checklist.property`

  See [Configuration Properties](/checklist/reference/configuration-properties) for the full property listing and examples.
</Tip>

## Quick Lookup

| What you need                                       | Where to find it                                                                                 |
| --------------------------------------------------- | ------------------------------------------------------------------------------------------------ |
| Set a template for a work item type                 | [Configuration Properties](/checklist/reference/configuration-properties) -- Template properties |
| Block a workflow transition until items are checked | [Workflow Functions and Conditions](/checklist/reference/workflow-functions) -- Conditions       |
| Reset checklists during a transition                | [Workflow Functions and Conditions](/checklist/reference/workflow-functions) -- Functions        |
| Access checklist data from Velocity                 | [IChecklistService API](/checklist/reference/api)                                                |
| Check supported Polarion versions                   | [Polarion Version Support](/overview/resources/polarion-version-support)                         |
| Check object type and feature compatibility         | [Compatibility](/checklist/reference/compatibility)                                              |

<LastReviewed date="2026-07-02" />
