Skip to main content

Markdown Structured Object Notation (MaSON)
draft-lee-mason-01

Document Type Active Internet-Draft (individual)
Author Dustin Lee
Last updated 2026-06-28
RFC stream (None)
Intended RFC status (None)
Formats
Additional resources Issue Tracker
GitHub Repository
MaSON Homepage
TypeScript Reference Parser and Conformance Suite
Stream Stream state (No stream defined)
Consensus boilerplate Unknown
RFC Editor Note (None)
IESG IESG state I-D Exists
Telechat date (None)
Responsible AD (None)
Send notices to (None)
draft-lee-mason-01
Independent Submission                                           DL. Lee
Internet-Draft                                               Independent
Intended status: Standards Track                            28 June 2026
Expires: 30 December 2026

              Markdown Structured Object Notation (MaSON)
                           draft-lee-mason-01

Abstract

   This document defines MaSON (Markdown Structured Object Notation), a
   lightweight data serialization format that maps standard Markdown
   syntax trees into structured key-value objects.  MaSON is designed to
   maximize human readability and LLM token efficiency by eliminating
   bracket-based nesting and strict indentation rules.  This updated
   specification introduces "Compact Mode" optimized for extreme token
   density, support for multi-line string encapsulation, and mixed-type
   array isolation via forced brackets.

Status of This Memo

   This Internet-Draft is submitted in full conformance with the
   provisions of BCP 78 and BCP 79.

   Internet-Drafts are working documents of the Internet Engineering
   Task Force (IETF).  Note that other groups may also distribute
   working documents as Internet-Drafts.  The list of current Internet-
   Drafts is at https://datatracker.ietf.org/drafts/current/.

   Internet-Drafts are draft documents valid for a maximum of six months
   and may be updated, replaced, or obsoleted by other documents at any
   time.  It is inappropriate to use Internet-Drafts as reference
   material or to cite them other than as "work in progress."

   This Internet-Draft will expire on 30 December 2026.

Copyright Notice

   Copyright (c) 2026 IETF Trust and the persons identified as the
   document authors.  All rights reserved.

Lee                     Expires 30 December 2026                [Page 1]
Internet-Draft                    MaSON                        June 2026

   This document is subject to BCP 78 and the IETF Trust's Legal
   Provisions Relating to IETF Documents (https://trustee.ietf.org/
   license-info) in effect on the date of publication of this document.
   Please review these documents carefully, as they describe your rights
   and restrictions with respect to this document.  Code Components
   extracted from this document must include Revised BSD License text as
   described in Section 4.e of the Trust Legal Provisions and are
   provided without warranty as described in the Revised BSD License.

Table of Contents

   1.  Introduction  . . . . . . . . . . . . . . . . . . . . . . . .   3
     1.1.  Requirements Language . . . . . . . . . . . . . . . . . .   3
     1.2.  Semantic Reinterpretation of Markdown . . . . . . . . . .   3
   2.  Architectural Goals and Core Paradigms  . . . . . . . . . . .   4
   3.  Syntax Specification  . . . . . . . . . . . . . . . . . . . .   4
     3.1.  Document Structure, Encoding, and Comments  . . . . . . .   4
     3.2.  Structural Hierarchy and Headers  . . . . . . . . . . . .   5
     3.3.  Key-Value Pairs, Multiline Values, and Escaping . . . . .   5
     3.4.  Lists as Arrays . . . . . . . . . . . . . . . . . . . . .   6
     3.5.  Array Suffixes, Compact Arrays, and Forced Brackets . . .   6
       3.5.1.  Explicit Array Suffixes . . . . . . . . . . . . . . .   6
       3.5.2.  Compact Arrays and Property Maps  . . . . . . . . . .   6
       3.5.3.  Forced Brackets . . . . . . . . . . . . . . . . . . .   7
     3.6.  Formal Grammar (EBNF) . . . . . . . . . . . . . . . . . .   7
   4.  Processing, Stringification, and Behavior . . . . . . . . . .   8
     4.1.  Structural Scope Stack Operations . . . . . . . . . . . .   8
     4.2.  Primitive Value Coercion Rules  . . . . . . . . . . . . .   8
     4.3.  Text and Scope Trimming . . . . . . . . . . . . . . . . .   9
     4.4.  Duplicate Member Handling . . . . . . . . . . . . . . . .   9
     4.5.  Stringification and Visual Purity . . . . . . . . . . . .   9
   5.  Security Considerations . . . . . . . . . . . . . . . . . . .  10
     5.1.  Resource Exhaustion and Stack Overflow  . . . . . . . . .  10
     5.2.  Type Coercion and Key Injection . . . . . . . . . . . . .  10
     5.3.  Embedded Content and Code Block Safety  . . . . . . . . .  10
   6.  IANA Considerations . . . . . . . . . . . . . . . . . . . . .  10
     6.1.  Media Type Registration: application/mason  . . . . . . .  10
     6.2.  File Extension Registration . . . . . . . . . . . . . . .  11
   7.  Normative References  . . . . . . . . . . . . . . . . . . . .  11
   Appendix A.  References . . . . . . . . . . . . . . . . . . . . .  11
     A.1.  Normative References  . . . . . . . . . . . . . . . . . .  11
     A.2.  Informative References  . . . . . . . . . . . . . . . . .  11
   Appendix B.  Structural Mapping Examples  . . . . . . . . . . . .  11
     B.1.  Standard Structured Object Configuration  . . . . . . . .  11
     B.2.  Arrays of Complex Objects via Suffix Syntax . . . . . . .  12
     B.3.  Multiline String Blocks with Language Tags  . . . . . . .  13
     B.4.  Compact Mode Arrays . . . . . . . . . . . . . . . . . . .  13
     B.5.  Forced Brackets Isolation (Mixed-Type Arrays) . . . . . .  13

Lee                     Expires 30 December 2026                [Page 2]
Internet-Draft                    MaSON                        June 2026

     B.6.  Recursive Deep Merging of Duplicate Headers . . . . . . .  14
   Appendix C.  Complex Edge Case and Tokenization Reference . . . .  15
     C.1.  Token and Character Density Methodology and Comparison  .  15
     C.2.  Edge Case Matrix  . . . . . . . . . . . . . . . . . . . .  15
   Appendix D.  Technical Design Rationale . . . . . . . . . . . . .  16
   Author's Address  . . . . . . . . . . . . . . . . . . . . . . . .  16

1.  Introduction

   Data serialization formats play a critical role in configuration,
   distributed systems, and application state management.  Traditional
   formats such as JSON (RFC 8259) offer deterministic parsing but
   present syntax overhead (e.g., explicit braces, quotation marks, and
   strict trailing comma rules) that impairs manual, human-authored
   editing.  Alternative human-readable formats, notably YAML, resolve
   bracket verbosity but introduce structural fragility through strict
   multi-space indentation constraints.

   Concurrently, the rise of Large Language Models (LLMs) has introduced
   a new serialization constraint: token optimization.  Repetitive
   structural characters in JSON and YAML consume valuable context
   window resources when data structures are injected into generative AI
   system prompts.

   This document defines MaSON (Markdown Structured Object Notation), a
   format designed to bridge human readability, machine parsing
   efficiency, and token density.  MaSON repurposes ubiquitous Markdown
   (RFC 7763) layout paradigms—specifically headers and list
   delimiters—to establish object hierarchies without syntax-heavy
   nesting markers.

1.1.  Requirements Language

   The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
   "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and
   "OPTIONAL" in this document are to be interpreted as described in BCP
   14 [RFC2119] [RFC8174] when, and only when, they appear in all
   capitals, as shown here.

1.2.  Semantic Reinterpretation of Markdown

   This specification intentionally assigns structured, machine-readable
   data serialization semantics to Markdown heading syntax beyond the
   purely presentational or structural document behaviors defined in RFC
   7763.  While a MaSON document remains syntactically valid Markdown,
   its document tree is explicitly mapped to associative data structures
   rather than an HTML visual layout.

Lee                     Expires 30 December 2026                [Page 3]
Internet-Draft                    MaSON                        June 2026

2.  Architectural Goals and Core Paradigms

   The design of MaSON is governed by the following core architectural
   principles:

   *  *Visual Ubiquity:* The serialization layout MUST closely mimic
      standard human-readable Markdown documentation.  A non-technical
      user should be capable of modifying a MaSON configuration file
      using a basic text editor without violating language grammar
      rules.
   *  *Indentation Independence:* To prevent layout-based parsing errors
      common in formats like YAML, MaSON schemas MUST NOT rely on white-
      space or multi-space indentation depth to determine object or
      array scope boundaries.
   *  *Token Efficiency:* By removing structural punctuation, quotes,
      and structural padding, MaSON text structures seek to minimize the
      character-to-data footprint relative to equivalent JSON payloads,
      optimizing it for text-based LLM processing and prompt engineering
      workflows.
   *  *Deterministic Bidirectional Equivalence:* MaSON must support
      deterministic round-tripping.  Serializing an active JSON object
      structure into MaSON text and immediately parsing it back into
      memory MUST yield an identical object topology, with specific
      handling for visual purity upon re-serialization.

3.  Syntax Specification

3.1.  Document Structure, Encoding, and Comments

   MaSON documents MUST be encoded using UTF-8.  Line endings MUST be
   represented by a single Carriage Return and Line Feed (CRLF) sequence
   or a single Line Feed (LF) character.  The parser MUST normalize line
   endings to a single uniform delimiter prior to processing.

   The formal grammar rules specified via EBNF in Section {{formal-
   grammar}} describe the format's lexical structure.  When parsing
   multi-byte sequences representing valid UTF-8 encoded Unicode scalar
   values outside the standard ASCII range, the parser MUST treat any
   continuous block of non-ASCII multibyte octets as a valid literal
   character sequence.

   Lines where the first non-whitespace character consists of a double
   forward-slash sequence (//) or standard HTML comment blocks (``) MUST
   be treated as comment streams.  Parsers MUST ignore comments and
   blank whitespace lines during lexical token processing.

Lee                     Expires 30 December 2026                [Page 4]
Internet-Draft                    MaSON                        June 2026

   To initialize the entire document as a top-level anonymous array
   rather than a root object, a bracketed token (e.g., [] or a property
   map like [id, name]) MAY be defined on the very first non-empty line
   of the file.

3.2.  Structural Hierarchy and Headers

   Object nesting depth and scope are defined structurally by Markdown
   heading tokens.

   The document root represents an implicit top-level associative array
   (object) unless overridden by a top-level array token.  A heading
   line beginning with one or more # characters followed by exactly one
   space character (0x20) MUST introduce a new nested object scope.

   The number of # characters determines the absolute nesting depth:

   *  A single # denotes a direct child key of the root object.
   *  Subsequent heading blocks with additional # characters (e.g., ##,
      ###) denote deeply nested child keys under the most recently
      declared parent object of a higher logical tier (fewer #
      characters).
   *  A structural transition to a heading with fewer or equal #
      characters MUST cleanly close out all preceding active scopes up
      to that nesting depth.
   *  Heading names are fully optional when defining elements of an
      array.  Empty heading lines (e.g., ##) or descriptive notes (e.g.,
      ## Alice (Admin)) do not affect the structured JSON properties.

3.3.  Key-Value Pairs, Multiline Values, and Escaping

   Properties within a structural scope MUST be declared as a single-
   line key-value pair separated by a colon character (0x3A).

   *  Inline property keys MUST precede the colon separator and MUST NOT
      contain whitespace characters or control flags.
   *  Conversely, a header key declared via heading tokens MAY contain
      internal horizontal whitespace characters, which MUST be preserved
      by the parser.
   *  Optional space characters MAY follow the colon separator before
      the value payload begins.
   *  Values MUST be treated as strings by default unless they conform
      to primitive data types defined in Section {{primitives}}.

   *Multiline Values:* To support multi-line string blocks or formatted
   text, MaSON dynamically matches backtick delimiters (`). * A block or
   string starts with any count of backticks _N_ and ends with exactly
   _N_ backticks.  The surrounding delimiters on both ends MUST be

Lee                     Expires 30 December 2026                [Page 5]
Internet-Draft                    MaSON                        June 2026

   stripped. * If opening with 3 or more backticks (e.g.,
   ```javascript), a single alphanumeric language identifier following
   the backticks MUST be automatically parsed and stripped by the
   parser.

   *Escaping:* To permit structural characters inside property values or
   header keys, the backslash character (\, 0x5C) MUST act as an escape
   character.  The sequence \: explicitly escapes a colon separator, \#
   escapes a header token, and \\ escapes the backslash itself.

3.4.  Lists as Arrays

   Sequential lines beginning with an asterisk (*, 0x2A), hyphen (-,
   0x2D), or plus (+, 0x2B) followed by exactly one space character
   (0x20) MUST be parsed as sequential array items.

   *  If a bullet is parsed under an active heading, and the active
      heading is currently an empty object ({}), its container type MUST
      be morphed to an ordered array ([]).
   *  If the container already has property keys, the bullet value MUST
      be pushed into an implicit _items key in that object to protect
      properties from silent deletion.

3.5.  Array Suffixes, Compact Arrays, and Forced Brackets

3.5.1.  Explicit Array Suffixes

   To prevent structural ambiguity when constructing arrays of complex
   objects, a header key MAY append an explicit array suffix consisting
   of opening and closing square brackets ([], 0x5B 0x5D).  Immediate
   child headers encountered beneath an explicit array declaration
   establish element boundaries but do not themselves become object keys
   in the mapped memory state.

3.5.2.  Compact Arrays and Property Maps

   To minimize token overhead for repetitive structures, inline arrays
   and property mappings MAY be declared directly on headings: *
   *Primitive Lists:* A heading ending in (val1, val2) pushes those
   primitive values into the array. * *Property Maps:* A heading ending
   in [key1, key2] (with or without ()) maps subsequent nested child
   entries as objects with those positional keys, skipping the need to
   repeat keys for each array item. * *Top-Level Maps:* The top-level
   document array can begin with a property map (e.g., [key1, key2]) on
   the first line to apply the mapping to all root array entries.

Lee                     Expires 30 December 2026                [Page 6]
Internet-Draft                    MaSON                        June 2026

3.5.3.  Forced Brackets

   For mixed-type arrays, appending [ or { to a heading explicitly
   forces the parsed container type to be an array or object,
   respectively, until a matching closing bracket (] or }) is
   encountered on a line by itself or at the end of a value.  This
   isolates nested structures within mixed-type sequences.

3.6.  Formal Grammar (EBNF)

   The syntax of a MaSON document is defined formally using Extended
   Backus-Naur Form (EBNF).  The semantic construction of hierarchical
   object depths and state stack validation based on these tokens MUST
   be governed exclusively by the processing rules defined in
   Section {{processing}}.

   document             = [ top_level_array | root_properties ] ;

   (* Structural Core *)
   top_level_array      = "[" , [ property_list ] , "]" , newline , { newline } , [ array_elements ] ;
   root_properties      = { property_line | comment_line | newline } , [ heading_hierarchy ] ;

   heading_hierarchy    = heading_line , { heading_content | heading_hierarchy } ;
   heading_content      = property_line | array_bullet_line | comment_line | newline ;

   (* Line Types *)
   heading_line         = spaces , hash_sequence , spaces , heading_label , newline ;
   property_line        = spaces , key , spaces , ":" , spaces , value , newline ;
   array_bullet_line    = spaces , bullet_char , spaces , value , newline ;
   comment_line         = spaces , "" , newline ;

   (* Tokens and Identifiers *)
   hash_sequence        = "#" , { "#" } ;
   bullet_char          = "*" | "-" | "+" ;
   spaces               = { " " | "\t" } ;
   newline              = "\r\n" | "\n" ;

   heading_label        = [ explicit_array_label | forced_array_label | forced_object_label | compact_array_label | literal_label ] ;
   explicit_array_label = literal_label , "[]" ;
   forced_array_label   = literal_label , "[" ;
   forced_object_label  = literal_label , "{" ;
   compact_array_label  = literal_label , [ "(" , primitive_list , ")" ] , [ "[" , property_list , "]" ] ;
   primitive_list       = primitive_value , { "," , primitive_value } ;
   property_list        = key , { "," , key } ;
   literal_label        = { any_character_except_brackets_or_hash } ;

   key                  = { any_character_except_colon_or_spaces } ;
   value                = multiline_value | primitive_value ;

Lee                     Expires 30 December 2026                [Page 7]
Internet-Draft                    MaSON                        June 2026

   (* Values & Types *)
   multiline_value      = backticks , [ language_tag ] , newline , multiline_text , backticks ;
   backticks            = "`" , { "`" } ;
   language_tag         = { letter } ;
   multiline_text       = { any_character } ;

   primitive_value      = boolean_literal | null_literal | number_literal | string_literal ;
   boolean_literal      = "true" | "false" ;
   null_literal         = "null" ;
   number_literal       = [ "+" | "-" ] , digit , { digit } , [ "." , { digit } ] , [ ( "e" | "E" ) , [ "+" | "-" ] , { digit } ] ;
   string_literal       = quoted_string | unquoted_string ;

   quoted_string        = ( '"' , { escaped_char | any_char_except_double_quote } , '"' )
                        | ( "'" , { escaped_char | any_char_except_single_quote } , "'" ) ;
   escaped_char         = "\\" , ( '"' | "'" | "`" | "\\" ) ;
   unquoted_string      = { any_character_except_newline_and_trailing_spaces } ;

4.  Processing, Stringification, and Behavior

4.1.  Structural Scope Stack Operations

   A MaSON parser MUST maintain an internal state stack to keep track of
   the active structural hierarchy while traversing a document linearly.

   *  Upon encountering a header with an absolute depth of N (where N is
      the count of # characters), the parser MUST examine the current
      depth of the state stack.
   *  If N is exactly equal to the current stack depth plus one, the new
      object scope MUST be pushed onto the stack as a nested child of
      the active object.
   *  If N is less than or equal to the current stack depth, the parser
      MUST repeatedly pop scopes off the stack until the stack depth
      equals N minus one, at which point the new object scope is
      instantiated and pushed.

4.2.  Primitive Value Coercion Rules

   Values extracted from key-value properties or array lists MUST be
   evaluated against literal structural patterns to determine if they
   undergo data type coercion:

   *  *Null Coercion:* The exact character sequence "null" (case-
      sensitive) MUST be coerced to a native null reference.
   *  *Boolean Coercion:* The exact character sequences "true" or
      "false" (case-sensitive) MUST be coerced to their respective
      native boolean definitions.

Lee                     Expires 30 December 2026                [Page 8]
Internet-Draft                    MaSON                        June 2026

   *  *Numeric Coercion:* Character streams matching the number rule
      defined in Section {{formal-grammar}} MUST be coerced directly to
      native floating-point or integer numeric signatures.  Any token
      sequence containing characters deviating from that structure MUST
      NOT undergo numeric coercion and falls back cleanly to a string
      representation.
   *  *String Quoting:* To force any numerical sequence or boolean value
      to remain a string, it MUST be wrapped in double or single quotes
      (e.g., zipCode: "16801").

4.3.  Text and Scope Trimming

   Parsers MUST strip leading and trailing horizontal whitespace from
   both property keys and property values prior to evaluation or
   storage.  Internal whitespace within a value payload MUST be
   preserved explicitly.

4.4.  Duplicate Member Handling

   If a document contains duplicate inline property keys within the same
   active object scope, the parser MUST enforce a last-assignment-wins
   strategy.

   Conversely, if a nested sub-header configuration path matches a path
   that has been declared previously in the document stream, the parser
   MUST execute a deep recursive merge of the subsequent properties into
   the existing structure rather than overwriting or purging the
   original object hierarchy.

4.5.  Stringification and Visual Purity

   MaSON stringifiers MUST support bi-directional data integrity with
   two formatting modes:

   *  *Clean Mode (compact: false):* Optimized for human readability,
      inserting blank lines between properties and collections.
   *  *Compact Mode (compact: true):* Minimizes token usage for LLMs,
      stripping empty lines and collapsing array-of-objects into dense
      tuple structures (e.g. # users[name,age]).

   *No Forced Brackets on JSON Stringification:* When parsing/converting
   from JSON back to MaSON via stringification, forced brackets ([ or {)
   MUST NOT be introduced.  The stringifier MUST automatically reorder
   array elements so that primitive/scalar types are written as simple
   bullet points first, and complex objects/arrays are placed last and
   serialized under clean heading syntax (# or #[]).

Lee                     Expires 30 December 2026                [Page 9]
Internet-Draft                    MaSON                        June 2026

5.  Security Considerations

5.1.  Resource Exhaustion and Stack Overflow

   Because MaSON determines structural depth and nesting scope by the
   linear accumulation of heading tokens, naive implementations relying
   on recursive parsing strategies or unbounded internal state stacks
   are vulnerable to stack overflow or out-of-memory errors.
   Implementations MUST enforce an upper limit on maximum nesting depth
   (a RECOMMENDED default limit of 32 levels) to guarantee deterministic
   termination.

5.2.  Type Coercion and Key Injection

   Parsers are expected to automatically coerce primitive string
   sequences.  Implementations MUST validate that incoming token
   sequences do not trigger prototype pollution or unexpected type
   mutation behaviors within the execution environment.

5.3.  Embedded Content and Code Block Safety

   MaSON implementations handling complex multiline inline values or
   embedded code blocks MUST treat the underlying isolated content
   strictly as static string fragments.  Parsers MUST NOT evaluate or
   execute code blocks embedded within a document stream.  Applications
   displaying data extracted from a MaSON payload MUST apply contextual
   sanitization to prevent downstream Cross-Site Scripting (XSS) or
   command injection vulnerabilities.

6.  IANA Considerations

   This document requests the registration of a new media type and file
   extension in accordance with the procedures defined in RFC 6838
   [RFC6838].

6.1.  Media Type Registration: application/mason

   Type name: application Subtype name: mason Required parameters: None
   Optional parameters: charset (The value MUST be "utf-8") Encoding
   considerations: binary (UTF-8 encoded text) Security considerations:
   See Section 5 of this document.  Interoperability considerations:
   MaSON is designed for cross-platform data interchange across server,
   browser, and language-model environments.  Published specification:
   This document.

Lee                     Expires 30 December 2026               [Page 10]
Internet-Draft                    MaSON                        June 2026

6.2.  File Extension Registration

   The standard file extensions designated for MaSON structured data
   documents are ".mason" and ".mson".

7.  Normative References

   [RFC2119]  Bradner, S., "Key words for use in RFCs to Indicate
              Requirement Levels", BCP 14, RFC 2119,
              DOI 10.17487/RFC2119, March 1997,
              <https://www.rfc-editor.org/info/rfc2119>.

   [RFC6838]  Freed, N., Klensin, J., and T. Hansen, "Media Type
              Specifications and Registration Procedures", BCP 13,
              RFC 6838, DOI 10.17487/RFC6838, January 2013,
              <https://www.rfc-editor.org/info/rfc6838>.

   [RFC8174]  Leiba, B., "Ambiguity of Uppercase vs Lowercase in RFC
              2119 Key Words", BCP 14, RFC 8174, DOI 10.17487/RFC8174,
              May 2017, <https://www.rfc-editor.org/info/rfc8174>.

Appendix A.  References

A.1.  Normative References

A.2.  Informative References

Appendix B.  Structural Mapping Examples

B.1.  Standard Structured Object Configuration

   # Server Setup
   debugMode: false
   maxRetries: 5

   # Servers
   * https://api.prod.coolapp.com
   * https://api.backup.coolapp.com

   # Database
   driver: postgres

   ## Credentials
   user: admin
   host: localhost

Lee                     Expires 30 December 2026               [Page 11]
Internet-Draft                    MaSON                        June 2026

   {
     "Server Setup": {
       "debugMode": false,
       "maxRetries": 5
     },
     "Servers": [
       "https://api.prod.coolapp.com",
       "https://api.backup.coolapp.com"
     ],
     "Database": {
       "driver": "postgres",
       "Credentials": {
         "user": "admin",
         "host": "localhost"
       }
     }
   }

B.2.  Arrays of Complex Objects via Suffix Syntax

   # Cluster Infrastructure
   environment: production

   ## Nodes[]

   ### Node Item
   host: compute-01.local
   capacity: 64

   ### Node Item
   host: compute-02.local
   capacity: 128

   {
     "Cluster Infrastructure": {
       "environment": "production",
       "Nodes": [
         {
           "host": "compute-01.local",
           "capacity": 64
         },
         {
           "host": "compute-02.local",
           "capacity": 128
         }
       ]
     }
   }

Lee                     Expires 30 December 2026               [Page 12]
Internet-Draft                    MaSON                        June 2026

B.3.  Multiline String Blocks with Language Tags

   # Documentation
   readme: ```markdown
   Welcome to the project!
   Use `npm run dev` to start.

   ```json
   {
     "Documentation": {
       "readme": "Welcome to the project!\nUse `npm run dev` to start."
     }
   }

B.4.  Compact Mode Arrays

   # MixedDataset
   ## PayloadMixedList(42, "100", false, null, 2026-06-27)[x, y, z]
   ###
   1
   2
   33

   {
     "MixedDataset": {
       "PayloadMixedList": [
         42,
         "100",
         false,
         null,
         "2026-06-27",
         {
           "x": 1,
           "y": 2,
           "z": 33
         }
       ]
     }
   }

B.5.  Forced Brackets Isolation (Mixed-Type Arrays)

Lee                     Expires 30 December 2026               [Page 13]
Internet-Draft                    MaSON                        June 2026

   # MixedDataset
   ## PayloadMixedList[]
   ### InnerArrayForcedBrackets[
   x: 1
   y: 2
   z: 33]

   ### InnerObjectForcedBrackets{
   x: 1
   y: 2
   z: 33}
   * 42
   * "100"

   {
     "MixedDataset": {
       "PayloadMixedList": [
         [
           {"x": 1},
           {"y": 2},
           {"z": 33}
         ],
         {
           "x": 1,
           "y": 2,
           "z": 33
         },
         42,
         "100"
       ]
     }
   }

B.6.  Recursive Deep Merging of Duplicate Headers

   # Target Object
   ## Nested Child
   initial_key: true

   # Target Object
   ## Nested Child
   appended_key: false

Lee                     Expires 30 December 2026               [Page 14]
Internet-Draft                    MaSON                        June 2026

   {
     "Target Object": {
       "Nested Child": {
         "initial_key": true,
         "appended_key": false
       }
     }
   }

Appendix C.  Complex Edge Case and Tokenization Reference

C.1.  Token and Character Density Methodology and Comparison

   The structural efficiency metrics detailed below were generated
   empirically by processing a single, logically identical Agent
   Configuration payload compiled across formats and evaluated using
   OpenAI's production "cl100k_base" tokenization algorithm.  The
   benchmark results are illustrative rather than normative.

       +========+============+================+====================+
       | Format | Characters | Tokens (GPT-4) | Overhead Reduction |
       +========+============+================+====================+
       | JSON   | 194        | 58             | Baseline           |
       +--------+------------+----------------+--------------------+
       | YAML   | 132        | 44             | 24.1%              |
       +--------+------------+----------------+--------------------+
       | MaSON  | 98         | 31             | 46.5%              |
       +--------+------------+----------------+--------------------+

                                  Table 1

   In this specific benchmark, MaSON reduced token count by
   approximately 46.5% relative to the JSON baseline.

C.2.  Edge Case Matrix

     +=======================+=======================================+
     | Input Payload (MaSON) | Resulting Memory State (JSON)         |
     +=======================+=======================================+
     | key: null             | { "key": null }                       |
     +-----------------------+---------------------------------------+
     | msg: err\: failed     | { "msg": "err: failed" }              |
     +-----------------------+---------------------------------------+
     | hex: #ff0000          | { "hex": "#ff0000" }                  |
     +-----------------------+---------------------------------------+
     | # Empty Array[]       | []                                    |
     +-----------------------+---------------------------------------+
     | script:javascript`    | Strips language identifier javascript |

Lee                     Expires 30 December 2026               [Page 15]
Internet-Draft                    MaSON                        June 2026

     +-----------------------+---------------------------------------+

                                  Table 2

Appendix D.  Technical Design Rationale

   The design decisions governing the assembly of MaSON are structured
   to address specific historical limitations encountered in standard
   data serialization languages:

   *  *Headings vs Indentation:* Standard indentation-based layouts
      (such as YAML) frequently create parsing vulnerabilities across
      distributed application boundaries due to non-visible structural
      spacing variants or text translation wrapping.  By shifting
      dependency strictly to explicit, character-anchored heading tokens
      (The # element), MaSON decouples hierarchy entirely from spatial
      indent levels.
   *  *Explicit [] Suffixing:* While implicit layout scanning can
      determine list boundaries for primitive sequences, arrays tracking
      complex structures with dynamic nesting depths introduce deep
      tracking ambiguity.  Enforcing an explicit [] suffix ensures that
      any multi-language compiler instantly knows the type-class of the
      upcoming frame tree without relying on heavy schema lookaheads.
   *  *Omission of Closing Enclosures:* Braces, brackets, and closing
      lines are heavily utilized by machines to clear stack frames but
      represent significant token redundancy when processed by text-
      transformer algorithms.  MaSON shifts the responsibility of stack
      scope tracking from closing symbols to progressive line state
      shifts.  In the benchmark corpus described in Appendix B, this
      strategy reduced token counts by approximately 46.5% compared to
      conventional JSON structures.

Author's Address

   Dustin Lee
   Independent
   Email: dlee@lemone.online
   URI:   https://github.com/LoanLemon/MaSON

Lee                     Expires 30 December 2026               [Page 16]