String

A UTF-8 character string type.

In expressions

Strings can be concatenated using the + operator.

"Hello," + " world!" == "Hello, world!"

Defining a string valued attribute

#!test[schema]
define
  attribute name value string;

Inserting a string valued attribute

#!test[write]
insert
  $_ isa name "John";