Additional attributes of data short description

When working with metadata of an app, workspace, process, or other entities, the model contains a display parameter view, which can define a list of fields. For example, app properties or workspace parameters.

Fields of types String, Number, Money and Date/Time include additional attributes in thedataobject. The structure of these parameters depends on the field type. Below is the structure of the viewparameter depending on thetypeof the field.

Type String

    "data": {
        // Subtype. Possible values: "string" or"text"
        "additionalType": "string"
    }

Type Float (Number)

    "data": {
        // Subtype. Possible values: "integer" or"float"
        "additionalType": "string"
    }

Type Money

    "data": {
        // hree-letter currency code according to ISO 4217 (https://www.iso.org/iso-4217-currency-codes.html)
        "currency": "string"
    }

Type Datetime

    "data": {
        // Subtype. Possible values: "datetime", "date", "time" or "datetimeShort"
        "additionalType": "string"
    }