Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

Field options

Name

Type

Description

name

string

The name by which the field will internally be referenced

displayText

string

The main field label displayed above the field

description

string

An additional description displayed below the main label

defaultValue

string

The value the field should initially be filled with in ISO format, e.g. 2018-01-01

options

object

Additional field options (see below)

options.required

boolean

Whether the field must be filled to advance

options.readOnly

boolean

Whether it’s allowed to change the field value

JSON Example

{
  "name": "Date",
  "displayText": "Choose a date",
  "description": "This is a date picker field.",
  "type": "DatePicker",
  "defaultValue": "2018-01-01",
  "options": {
    "required": true
  }
}
  • No labels