Custom Fields

In the file <project>/config/custom-fields.yaml, you can provide additional information (meta information) for custom fields.

The information you provide here is used and displayed on the content assistant in the Name column of the custom fields table, in the developer workflow UI, in the Portal application or via the Public API.

Editor

The Axon Ivy Designer delivers a Yaml-Editor to edit the <project>/config/custom-fields.yaml file, where you can maintain additional information about your custom fields.

 1CustomFields:
 2  Tasks:
 3    branchOffice:
 4      Label: Branch Office
 5      Description: The location (city) of the branch office
 6      Type: STRING
 7      Icon: gear
 8  Cases:
 9    MyCaseCustomField:
10      Label: My case custom field
11      Description: This new case custom field can be used to ...
12      Type: STRING
13  Starts:
14    MyStartCustomField:
15      Label: My start custom field
16      Description: This new start custom field can be used to ...
  • Label The label that is displayed on user interfaces instead of the custom field name.

  • Description The description that is displayed on user interfaces for the custom field.

  • Type The type of the custom field. Can be either STRING, TEXT, NUMBER or TIMESTAMP.

  • Category The category of the custom field. Can be used to categorize custom fields.

  • Hidden If hidden, the custom field will not be displayed to end users. Use this for technical custom fields to hide them from end users. Can be either true or false.

You can add as many other attributes as you like. E.g., Icon.

Warning

The number of indentation spaces needs to be the same in the whole yaml file.

Localize Label, Description and Category

For processes that support multiple languages, the Label, Description and Category can be provided in multiple languages by using the CMS.

Simply add content objects with paths /CustomFields/{kind}/{name}/Label, /CustomFields/{kind}/{name}/Description or /CustomFields/Categories/{category} to the CMS. E.g., /CustomFields/Tasks/branchOffice/Label, /CustomFields/Categories/hrm