(
a=1;
b=2;
c=3
)

MODL Specification
1. Introduction
MODL is a data serialisation language with the goal of describing objects in as few characters as possible. MODL has particular application in DNS TXT records because:
-
it is character-efficient
-
it is easily minified
-
keys and values do not need to be "quoted" – avoiding DNS storage issues
Until now, developers have rolled their own methods of storing data in DNS TXT records, presenting significant limitations and a barrier to entry for those looking to store data in DNS. MODL aims to standardise data storage in DNS TXT.
2. Status
MODL was first published on 25th March 2018, we do not anticipate any further changes to the grammar or interpreter rules.
3. Rules
-
Whitespace means space (
0x20
) or tab (0x09
). -
Newline means
LF
(<0x0A
) orCRLF
(0x0D0A
). -
MODL ignores all leading and trailing whitespace.
-
MODL files must be valid UTF-8 encoded Unicode documents.
4. Values
Values are described precisely below:
4.1. Map
A map is known in other languages as a hash table, object, record, struct, dictionary, keyed list, or associative array. A map begins with left parenthesis (
and ends with right parenthesis )
, it contains zero or more pairs separated by a semi-colon (;
).
4.2. Array
Arrays in MODL will be familiar to most – beginning with a left square bracket [
and ending with a right square bracket ]
containing zero or more values separated by a semi-colon ;
. Array items can be of any data type and data types can be mixed.
[
1;
2;
3
]
4.3. Pair
Pairs are the primary building block of MODL and consist of a value assigned to a key. They can be used in a number of ways to aid character efficiency. Orphan pairs (not within a map) are allowed for character efficiency and are converted into a map when parsed.
4.3.2. Map Pair
When assigning a map to a key, we can omit =
since the left parenthesis separates the key from the map contents:
(
a(
b=1
)
)
4.3.3. Array Pair
When assigning an array to a key, we can omit =
since the left square bracket separates the key from the array contents:
(
a[
1;
2
]
)
4.5. String
Strings in MODL are the same as strings in JSON view RFC, with the exception that they can also be unquoted and
.graved
5. Type Inference
MODL infers the type of a value, to set a number to a string it can be quoted. For example:
(
force_number_as_string="1"
)
6. Quoting Values
Values can be quoted using double quotes ("
) or DNS-friendly graves ( `
), for example:
(
force_number_as_string="1";
force_another_number_as_string=`2`
)
7. Escaping
Like JSON, the backslash (\
) can be used to escape characters. In addition, the DNS-friendly tilde (\~
) can also be used as an escape character. For character efficiency, it’s usually better to quote values that include more than one reserved character. For example:
(
include_one_reserved_char = we won :\);
include_many_reserved_chars = "this (that [the other]"
)
In MODL tilde (\~
) is equivalent to backslash (\
). Backslash can be used to escape tilde and tilde can be used to escape backslash. Tilde can be used to escape tilde. Backslash can be used to escape backslash.
8. Encoding For DNS
MODL is not limited to ASCII characters. but some storage media are (e.g. DNS TXT records). Non-ASCII characters can be expressed in ASCII MODL in two ways:
8.1. Hex Values
Any unicode character represented by four hex digits can be used in MODL in the same way as JSON:
(
symbol=\u03C0
)
A DNS-friendly version is also available using the tilde (\~
) in place of the back slash (\
):
(
symbol=~u03C0
)
8.2. Punycode
For more complex strings, it’s more efficient to Punycode the string before storing it in an ASCII system (e.g. DNS), then decode the string before parsing. Any Unicode character can be punycode encoded, providing ASCII support for almost every language on Earth and symbols like emojis.
In the Russian language object below, the name
field uses the punycode conversion of пример
(English translation: 'Example') and the department
uses the punycode conversion of обслуживание клиентов
(English: 'Customer Service'):
name=пример;
department=обслуживание клиентов
9. Reserved Characters
For character efficiency, you should use a quoted or graved string if a value includes two or more reserved characters, otherwise use an escape character (\
or \~
) for a single reserved character. The following characters have special meaning in MODL:
-
Brackets: The left bracket
(
indicates the start of a map, the right bracket)
indicates the end. -
Square Brackets: The left square bracket
[
indicates the start of an array, the right square bracket]
indicates the end. -
Semi-colon
;
is used in a map to separate pairs and used in an array to separate items. -
Grave accents and double quotes (
`
and"
respectively) are used for quoting values -
Backslash and tilde (
\
and~
respectively) are escape characters and can be used before any reserved character to escape its reserved use. To use a backlash or tilde in a MODL object, simply use two:\\
,~~
,\~
or~\
.