FLOW Syntax
"I sure love text!"
Overview
Carries over your basic JSON syntax.
Basic structure
- Numbers: Supports both integers and floating-point numbers.
-
Strings: Delimited with
"
or '.
If string only contains valid characters
(alphanumeric characters or underscore),
and doesn't begin with a number,
delimiters can be omitted.
- Arrays: Formatted as
[ <element> ]. Separators are optional.
- Objects: Formatted as
{ <key> <value> }. Separators and designators are optional.
- Binary: See Encoded Entities.
Reserved keywords
undefined: Represents an undefined value.
null: Represents a null value.
true: Represents a boolean true value.
false: Represents a boolean false value.