Field Service Mobile Element Type Aliases

Some listed element types are aliases rather than distinct element types. Each alias sets default properties for a base element type.

For example, the currency element type is an alias for a number element with unit set to usd and step set to 0.01.

          "newcurrencyelement": {
  "type": "currency",
  "label": "A Currency Field"
} 

        

Same as Number Element Below:

          "newcurrencyelement": {
  "type": "number",
  "label": "A Currency Field",
  "unit": "usd",
  "step": 0.01
} 

        

The following table lists the aliases for each base element type.

Currency Shorthand Element:

Base Element Type

Shorthand Element Types

textarea

help, longtext

html

inlinehtml, richtext

number

float, integer, percent, currency

select

multiselect

tel

phone

file

document

datetime

datetimetz

time

timeofday

Related Topics

General Notices