String

String is the primitive type to store any type of text. Usually a string field is used as a logical key for an entity record, like the example below for the entity with name Category.

type: ENTITY
entity:
  name: CATEGORY
  displayName: Category
  lk: [id]
  fields:
    - name: id
      type: STRING
      required: true
    - name: description
      type: STRING

Last updated