Fields

Assignment Fields

Assignment fields can only be used in so-called "configurable" blocks. These fields are used to set configuration options for the block. They are key-value pairs that are used by the parser and the migration engine.

Syntax

field_name = field_value

Value Types

The value of an assignment field can be one of the following types:

String

A string is a sequence of characters. It can be enclosed in backticks.

field_name = `field_value`

Number

A number is a numeric value. It can be an integer or a floating-point number.

field_name = 123
field_name = 123.456

Boolean

A boolean is a value that can be either true or false.

field_name = true
Previous
Fields