<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.43 (Ruby 3.4.9) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-buckeyne-jsox-format-00" category="info" submissionType="independent" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.34.0 -->
  <front>
    <title abbrev="JSOX">The JavaScript Object eXchange (JSOX) Data Interchange Format</title>
    <seriesInfo name="Internet-Draft" value="draft-buckeyne-jsox-format-00"/>
    <author fullname="James Buckeyne">
      <organization>Independent</organization>
      <address>
        <email>james.buckeyne@gmail.com</email>
      </address>
    </author>
    <date year="2026" month="August" day="31"/>
    <keyword>JSON</keyword>
    <keyword>serialization</keyword>
    <keyword>data interchange</keyword>
    <keyword>media type</keyword>
    <abstract>
      <?line 78?>

<t>JavaScript Object eXchange (JSOX) is a lightweight, text-based,
language-independent data interchange format.  It is derived from JSON
and from the object literal syntax of the ECMAScript Programming
Language Standard.  Every well-formed JSON text is a well-formed JSOX
text.</t>
      <t>JSOX extends JSON with unquoted identifiers, additional string quoting
and escape forms, comments, additional number forms including dates and
arbitrary-precision integers, binary typed arrays, user-defined types
carried by a type tag, field-name macros that remove repeated keys from
a document, and references that permit shared and cyclic structures to
be encoded.</t>
      <t>This document defines the JSOX grammar and registers the media type
"application/jsox".</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://d3x0r.github.io/jsox.rfc/draft-buckeyne-jsox-format.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-buckeyne-jsox-format/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/d3x0r/jsox.rfc"/>.</t>
    </note>
  </front>
  <middle>
    <?line 96?>

<section anchor="intro">
      <name>Introduction</name>
      <t>JavaScript Object eXchange (JSOX) is a text format for the
serialization of structured data.  It is derived from JSON <xref target="RFC8259"/>
and from the object literal syntax of the ECMAScript Programming
Language Standard <xref target="ECMA-262"/>.</t>
      <t>A JSOX parser accepts every text that a JSON parser accepts, and
assigns it the same meaning.  The converse does not hold: a JSOX
generator can produce texts that a JSON parser will reject.</t>
      <t>JSOX's design goals were to extend JSON with features that improve
clarity for human authors and reduce redundancy for machine-generated
documents, while keeping JSON's original goals of being minimal,
portable, and textual.  Specifically, JSOX adds:</t>
      <ul spacing="normal">
        <li>
          <t>representation of the ECMAScript <tt>Date</tt> and <tt>BigInt</tt> types without
application-level conventions;</t>
        </li>
        <li>
          <t>representation of <tt>ArrayBuffer</tt> and the twelve <tt>TypedArray</tt> classes
as base 64 data carried by a type tag;</t>
        </li>
        <li>
          <t>a type tag on objects, arrays, and strings, so that a receiver can
revive application types directly;</t>
        </li>
        <li>
          <t>field-name macros, which declare a set of field names once and then
carry only values for each subsequent object of that shape;</t>
        </li>
        <li>
          <t>references, which allow a value to name another value already present
in the same text, so that shared and cyclic object graphs survive a
round trip;</t>
        </li>
        <li>
          <t>comments, unquoted object keys, and the additional string and number
forms of ECMAScript.</t>
        </li>
      </ul>
      <t>All of these features are optional.  A JSOX text that uses none of them
is a JSON text.</t>
      <t>A JSOX value is a primitive type (string, number, boolean, date,
arbitrary-precision integer, or binary array), a structured type
(object or array), or one of the two placeholder values <tt>null</tt> and
<tt>undefined</tt>.</t>
      <t>A string is a sequence of zero or more Unicode characters <xref target="UNICODE"/>.
Note that this citation references the latest version of Unicode rather
than a specific release.</t>
      <t>Many strings do not need quotation marks, and JSOX lets those be
written without them.  This is not a separate kind of token: an
unquoted string is a string, and it may appear anywhere a string may
appear.  It may be an object member name, a type tag, or a value in its
own right, so <tt>{a:b}</tt> and <tt>{"a":"b"}</tt> denote the same object.  Where
this document says "identifier", it means a string in a position where
a name is expected; the rules for when quotes may be omitted are the
same in every position, and are given in <xref target="identifiers"/>.</t>
      <t>An object is a collection of zero or more name/value pairs, where a
name is a string.  An array is an ordered sequence of zero or more
values.</t>
      <t>The terms "object" and "array" come from the conventions of
ECMAScript.  The term "class" is used in the general sense of a set of
values that share a common structure and are distinguished from other
values by that structure.</t>
      <section anchor="relationship-to-other-formats">
        <name>Relationship to Other Formats</name>
        <t>JSOX is a superset of JSON <xref target="RFC8259"/>.  It draws its relaxations of
JSON's punctuation and its string, number, and comment syntax from
JSON5 <xref target="JSON5"/> and JSON6 <xref target="JSON6"/>, and adds the type tags,
macros, references, dates, arbitrary-precision integers, and binary
arrays described in this document.</t>
        <t>I-JSON <xref target="RFC7493"/> defines a restricted profile of JSON for maximum
interoperability.  JSOX moves in the opposite direction, and a JSOX
text that uses any JSOX-specific construct is not an I-JSON message.</t>
        <t>A reference implementation is available at <xref target="JSOX-IMPL"/>.</t>
      </section>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</name>
      <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
      <?line -18?>

<t>The grammatical rules in this document are to be interpreted as
described in ABNF <xref target="RFC5234"/>, with the extension that numeric values
above %xFF denote Unicode scalar values rather than octets, as is done
in <xref target="RFC8259"/>.</t>
      <t>Angle-bracketed prose values are used where a rule is more clearly
stated in English than in ABNF.</t>
      <t>The grammar describes the text after comments have been removed
(<xref target="ws"/>).  Comments are therefore absent from every rule below,
including <tt>ws</tt>, and a comment may appear at any point that is not
inside a quoted string.</t>
      <t>The number rules of <xref target="numbers"/> are the one place where the ABNF is
deliberately looser than the language.  A number is recognized by a
closed set of characters, and several of its forms -- dates in
particular -- are then constrained by prose and by the references
rather than by the grammar.  Where the two disagree, the prose governs.</t>
    </section>
    <section anchor="jsox-grammar">
      <name>JSOX Grammar</name>
      <t>A JSOX text is a sequence of tokens.  The set of tokens includes six
structural characters, identifiers, strings, numbers, and six literal
names.</t>
      <t>A JSOX text is a single serialized value, optionally preceded by one or
more macro definitions (<xref target="macros"/>).</t>
      <sourcecode type="abnf"><![CDATA[
JSOX-text = ws *( macro-definition ws ) value ws
]]></sourcecode>
      <t>These are the six structural characters:</t>
      <sourcecode type="abnf"><![CDATA[
begin-array     = ws %x5B ws  ; [ left square bracket
begin-object    = ws %x7B ws  ; { left curly bracket
end-array       = ws %x5D ws  ; ] right square bracket
end-object      = ws %x7D ws  ; } right curly bracket
name-separator  = ws %x3A ws  ; : colon
value-separator = ws %x2C ws  ; , comma
]]></sourcecode>
      <t>Two additional rules are used in the places where a structural
character <bcp14>MUST NOT</bcp14> be preceded by whitespace: after the tag of a macro
definition (<xref target="macros"/>), and after the tag of a typed value at the top
level (<xref target="typed"/>).</t>
      <sourcecode type="abnf"><![CDATA[
open-object     = %x7B ws     ; { with no preceding whitespace
open-array      = %x5B ws     ; [ with no preceding whitespace
]]></sourcecode>
      <section anchor="ws">
        <name>Whitespace and Comments</name>
        <t>Insignificant whitespace is allowed before or after any of the six
structural characters.  A whitespace character explicitly ends the
preceding token; the next non-whitespace character begins a new token.</t>
        <t>All whitespace is optional except where it is needed to separate two
tokens that would otherwise be read as one.  For example, the text
<tt>1 2 3</tt> is three numbers and requires the separating whitespace, while
<tt>[1,2,3]</tt> does not.</t>
        <sourcecode type="abnf"><![CDATA[
ws = *(
        %x09 /              ; Horizontal tab
        %x0A /              ; Line feed or New line
        %x0D /              ; Carriage return
        %x20 /              ; Space
        %x2028 /            ; U+2028 Line separator
        %x2029 /            ; U+2029 Paragraph separator
        %xFEFF )            ; U+FEFF Zero width no-break space
]]></sourcecode>
        <t>Note that U+00A0 NO-BREAK SPACE is deliberately not whitespace in
JSOX.  Its purpose in text is to join words that must not be separated,
and JSOX preserves that meaning rather than overriding it.  U+00A0 is therefore an ordinary
string character with one exception, in numbers; see <xref target="nbsp"/>.</t>
        <t>U+FEFF is treated as whitespace wherever it occurs, which has the
effect that a byte order mark at the start of a text is ignored; see
<xref target="encoding"/>.</t>
        <t>Comments are removed from the character stream before it is divided
into tokens; they are not whitespace, and they are not values.  Two
forms are defined:</t>
        <sourcecode type="abnf"><![CDATA[
comment       = line-comment / block-comment

line-comment  = ( %x2F.2F / %x23 )
                *( %x00-09 / %x0B-0C / %x0E-2027 /
                   %x202A-10FFFF )
                ; "//" or "#" up to but not including the next
                ; %x0A, %x0D, %x2028 or %x2029

block-comment = %x2F.2A <any sequence of characters that does not
                contain the two-character sequence "*/"> %x2A.2F
                ; "/*" ... "*/"
]]></sourcecode>
        <t>A line comment is terminated by any of the four line terminators of
<xref target="ECMA-262"/>: U+000A LINE FEED, U+000D CARRIAGE RETURN, U+2028 LINE
SEPARATOR, and U+2029 PARAGRAPH SEPARATOR.  A line comment <bcp14>MUST NOT</bcp14> be treated as
continuing past any of them.  The terminator is not part of the
comment, so it remains in the stream as whitespace once the comment
has been removed.</t>
        <t>A line comment that is not terminated before the end of the text is an
error.  A block comment that is not closed before the end of the text
is likewise an error.</t>
        <t>A comment is recognized only outside a quoted string.  Inside one there
is no comment: <tt>//</tt>, <tt>/*</tt>, <tt>*/</tt>, and <tt>#</tt> are
ordinary characters and are part of the string's value.  The text
<tt>"blah /* whatever */ "</tt> is a single string of twenty characters,
and because a string may span lines (<xref target="strings"/>), the same is true of
comment delimiters that appear on a later line of a multi-line string.</t>
        <t>Because a comment is removed rather than replaced by a separator, a
comment does not divide the text around it.  <tt>[ab/*x*/cd]</tt> is the
single string <tt>abcd</tt>, and <tt>[tr/*c*/ue]</tt> is the boolean <tt>true</tt>, exactly
as if the comment had not been written.</t>
        <t>Numbers are the exception, and not because of the comment.  A number
is a whitelist: it is made only of the characters given in
<xref target="numbers"/>, all of which are below U+0080.  <tt>/</tt> is not among them, so
a number ends at the <tt>/</tt> that opens the comment, and the digits after
the comment begin a second number.  <tt>0.123/*or*/456</tt> is therefore two
numbers and never <tt>0.123456</tt>, and inside an array it is the adjacency
error of <xref target="adjacency"/>.  An unquoted string is the opposite kind of
rule -- anything not excluded -- which is why its two halves rejoin
and a number's do not.</t>
        <t>Because <tt>#</tt> always introduces a comment, a generator <bcp14>MUST</bcp14> quote any
string containing one.  <tt>/</tt> introduces a comment only as <tt>//</tt> or <tt>/*</tt>,
so a generator <bcp14>MUST</bcp14> quote a string in which a <tt>/</tt> is followed by <tt>/</tt>
or <tt>*</tt>, and need not quote one otherwise; see <xref target="identifiers"/>.</t>
      </section>
      <section anchor="identifiers">
        <name>Strings, Identifiers, and Quoting</name>
        <t>A string may be written with or without quotation marks.  A string
written without them is called an unquoted string, and the ABNF rule
<tt>unquoted-string</tt> below describes which strings may be written that
way.</t>
        <t>There is no separate identifier type.  Wherever this document writes
<tt>identifier</tt> -- for an object member name (<xref target="objects"/>) or a type tag
(<xref target="typed"/>) -- the token is a string, and it may be written quoted or
unquoted under exactly the rules given here.  The word "identifier" is
retained only because it reads more naturally in those positions.</t>
        <sourcecode type="abnf"><![CDATA[
string          = quoted-string / unquoted-string

identifier      = string

unquoted-string = id-begin *id-char

id-begin = <any id-char that is not DIGIT, "+", "-", or ".">

id-char  = <any Unicode scalar value that is not matched by ws, is
            not a structural character, is not a quotation-mark,
            and is not "#"; and "/" only where the character that
            follows it is neither "/" nor "*">
]]></sourcecode>
        <t><tt>.</tt> is excluded from <tt>id-begin</tt> but not from <tt>id-char</tt>, so it may
appear anywhere in an unquoted string except at the start.
<tt>this.is.a.test</tt> and <tt>M.C.Fields</tt> are each a single unquoted string,
while <tt>.5</tt> is a number (<xref target="numbers"/>).  The same holds for a member
name: <tt>{this.is.a.test:1}</tt> needs no quotes.</t>
        <t><tt>#</tt> is excluded everywhere, because it always introduces a comment
(<xref target="ws"/>).  <tt>/</tt> introduces one only as <tt>//</tt> or <tt>/*</tt>, so a solitary
solidus is an ordinary character and needs no quotes:
<tt>www.example.com/file.name</tt> is one unquoted string.</t>
        <t>A <tt>/</tt> that is followed by <tt>/</tt> or <tt>*</tt> opens a comment and so ends the
string, which is why a URL carrying a scheme still <bcp14>MUST</bcp14> be quoted:
in <tt>"http://example.com"</tt> the <tt>//</tt> would open a comment, and the <tt>:</tt>
is a structural character in any case.</t>
        <t>Nothing else is reserved.  A reverse solidus, for instance, is an
ordinary <tt>id-char</tt>, so <tt>\</tt> on its own is a valid unquoted string; it
carries no escape meaning outside a quoted string (<xref target="strings"/>).</t>
        <t><tt>quoted-string</tt> is defined in <xref target="strings"/>.</t>
        <t>Note that an unquoted string is a value in its own right, not only a
member name.  In <tt>{a:b}</tt> both <tt>a</tt> and <tt>b</tt> are strings, and the object
is the same one denoted by the JSON text <tt>{"a":"b"}</tt>.  Likewise
<tt>[abc]</tt> is an array of one string, and a JSOX text consisting of the
single token <tt>hello</tt> is a string.</t>
        <t>A token that matches one of the six literal names (<xref target="values"/>) is that
literal and not a string.  To write one of those words as a string, it
<bcp14>MUST</bcp14> be quoted: <tt>true</tt> is the boolean, and <tt>"true"</tt> is the string.
Similarly, a token that begins with a digit, <tt>+</tt>, <tt>-</tt>, or <tt>.</tt> is a
number, which is why <tt>id-begin</tt> excludes those characters.</t>
        <t>Quotes are <bcp14>OPTIONAL</bcp14> around a string that matches <tt>unquoted-string</tt>.
Generators <bcp14>MUST</bcp14> quote any string that does not.</t>
        <t>Generators <bcp14>SHOULD</bcp14> additionally quote a string that:</t>
        <ul spacing="normal">
          <li>
            <t>is one of the literal names <tt>true</tt>, <tt>false</tt>, <tt>null</tt>, <tt>NaN</tt>,
<tt>Infinity</tt>, or <tt>undefined</tt> -- here quoting is <bcp14>REQUIRED</bcp14>, per the
paragraph above; or</t>
          </li>
          <li>
            <t>contains any of the characters matched by the regular expression
<tt>/[\n\r\t {}()&lt;&gt;!+*/.:,-]/</tt>.</t>
          </li>
        </ul>
        <t>These characters are not all reserved by this document, but quoting
them avoids ambiguity with syntax that a future revision may define.
One of them, <tt>#</tt>, is not merely advisory: it is not an <tt>id-char</tt> at
all, so the <bcp14>MUST</bcp14> above already requires quoting any string containing
one.  A <tt>/</tt> is required to be quoted only where it is followed by <tt>/</tt>
or <tt>*</tt>; elsewhere quoting it is the advice of this list, not a rule.</t>
        <section anchor="nbsp">
          <name>U+00A0 in an Unquoted String</name>
          <t>U+00A0 NO-BREAK SPACE is an ordinary <tt>id-char</tt>, and this is deliberate.
Its purpose in text is to join words that must not be separated, and
JSOX preserves that meaning rather than overriding it: <tt>th&lt;NBSP&gt;ng</tt> is
one string of five characters, not two strings.  Once a token is known
to be a string, U+00A0 is collected into it like any other character.</t>
          <t>A generator is NOT <bcp14>REQUIRED</bcp14> to quote a string containing U+00A0, and
the reference implementation <xref target="JSOX-IMPL"/> does not.  Because U+00A0 is
an <tt>id-char</tt>, such a string round-trips unquoted without ambiguity.</t>
          <t>The consequence for a leading U+00A0 follows from the same rule.  It is
an <tt>id-begin</tt> character, so it starts a string: <tt>&lt;NBSP&gt;thing</tt> is one
six-character string, while <tt>&lt;NBSP&gt; thing</tt> is two strings, the first of
which is one character long, because the space between them is
whitespace and U+00A0 is not.</t>
          <t>U+00A0 does, however, terminate a number (<xref target="numbers"/>).  Numbers have
their own non-breaking separator, <tt>_</tt>, and a number's characters are
all below U+0080.</t>
        </section>
        <section anchor="adjacency">
          <name>Adjacent Values</name>
          <t>Whether two adjacent values may appear without a separator depends on
whether the surrounding context bounds them.</t>
          <t>The interior of an object or an array is a <em>bounded</em> context: the
closing <tt>}</tt> or <tt>]</tt> and the <tt>,</tt> and <tt>:</tt> separators mark where each value
ends, so no token is ambiguous.  The top level of a text is
<em>unbounded</em>: nothing follows a complete value except, in a stream
(<xref target="streams"/>), the next value.</t>
          <t>In a bounded context, two adjacent values with only whitespace between
them are a typed value if the first is a string, and an error
otherwise.  <tt>[ab cd]</tt> is the string <tt>cd</tt> tagged <tt>ab</tt> (<xref target="typed"/>), while
<tt>[1 2]</tt> is an error, since a number is never a tag.</t>
          <t>In an unbounded context, a complete value ends there.  <tt>"abc" {a:1}</tt> at
the top level is two values, not one tagged value; in a single-value
text the second is extra data, and in a stream it is the next item.</t>
        </section>
      </section>
    </section>
    <section anchor="values">
      <name>Values</name>
      <t>A JSOX value <bcp14>MUST</bcp14> be an object, an array, a number, a string, a typed
value, or one of the following six literal names:</t>
      <artwork><![CDATA[
false null true Infinity NaN undefined
]]></artwork>
      <t>The literal names <bcp14>MUST</bcp14> be lowercase except as spelled here, and <bcp14>MUST</bcp14>
match exactly.  No other literal names are allowed.</t>
      <sourcecode type="abnf"><![CDATA[
value = false / null / true / undefined / NaN / Infinity
      / number / string / object / array / typed-value

false     = %x66.61.6c.73.65             ; false
null      = %x6e.75.6c.6c                ; null
true      = %x74.72.75.65                ; true
undefined = %x75.6e.64.65.66.69.6e.65.64 ; undefined
NaN       = [ minus / plus ] %x4e.61.4e  ; [-]NaN
Infinity  = [ minus / plus ]
            %x49.6e.66.69.6e.69.74.79    ; [-]Infinity
]]></sourcecode>
      <t>The alternatives of <tt>value</tt> are ordered: a token is tested against the
six literal names first, then as a number, and only then as a string.
Because <tt>string</tt> includes <tt>unquoted-string</tt> (<xref target="identifiers"/>), a bare
word such as <tt>hello</tt> is a value -- a string -- and not an error.</t>
      <t><tt>-NaN</tt> and <tt>+NaN</tt> are accepted and denote the same value as <tt>NaN</tt>.</t>
      <t><tt>undefined</tt> denotes the absence of a value.  A member whose value is
<tt>undefined</tt> is equivalent to a member that is not present, and a
generator <bcp14>MAY</bcp14> omit such a member.  Receivers that have no
representation for <tt>undefined</tt> <bcp14>SHOULD</bcp14> treat it as <tt>null</tt>.</t>
    </section>
    <section anchor="objects">
      <name>Objects</name>
      <t>An object structure is represented as a pair of curly brackets
surrounding zero or more name/value pairs (or members).  A name is an
identifier.  A single colon comes after each name, separating the name
from the value.  A single comma separates a value from a following
name.  The names within an object <bcp14>SHOULD</bcp14> be unique.</t>
      <sourcecode type="abnf"><![CDATA[
object = begin-object
         [ member *( value-separator member )
           [ value-separator ] ]
         end-object

member = identifier name-separator value
]]></sourcecode>
      <t>A single trailing comma is permitted after the last member and has no
effect.  More than one consecutive comma between members is an error.</t>
      <t>An object whose names are all unique is interoperable in the sense that
all software implementations receiving that object will agree on the
name-value mappings.  When the names within an object are not unique,
the behavior of software that receives such an object is unpredictable.
Many implementations report the last name/value pair only.  Other
implementations report an error or fail to parse the object, and some
implementations report all of the name/value pairs, including
duplicates.</t>
      <t>JSOX parsing libraries <bcp14>MAY</bcp14> differ as to whether or not they make the
ordering of object members visible to calling software.
Implementations whose behavior does not depend on member ordering will
be interoperable in the sense that they will not be affected by these
differences.</t>
    </section>
    <section anchor="arrays">
      <name>Arrays</name>
      <t>An array structure is represented as square brackets surrounding zero
or more values (or elements).  Elements are separated by commas.</t>
      <sourcecode type="abnf"><![CDATA[
array   = begin-array
          [ element *( value-separator element ) ]
          end-array

element = ws [ value ] ws
]]></sourcecode>
      <t>There is no requirement that the values in an array be of the same
type.</t>
      <t>An element <bcp14>MAY</bcp14> be empty, in which case the array has a member at that
position whose value is <tt>undefined</tt>.  Consecutive commas therefore
produce elisions: <tt>[1,,3]</tt> is an array of three elements whose second
element is <tt>undefined</tt>.  A single trailing comma does not add an
element; <tt>[1,2,]</tt> and <tt>[1,2]</tt> denote the same array, while <tt>[1,2,,]</tt>
denotes an array of three elements.</t>
    </section>
    <section anchor="numbers">
      <name>Numbers</name>
      <t>The representation of numbers is similar to that used in most
programming languages, and follows <xref target="ECMA-262"/>.  A number is
represented in base 10 unless a radix prefix selects another base.  It
contains an integer component that may be prefixed with an optional
sign, which may be followed by a fraction part and/or an exponent part.</t>
      <t>Four further forms are recognized that JSON does not have: radix
numbers, arbitrary-precision integers, dates (<xref target="dates"/>), and the
non-finite literals <tt>NaN</tt> and <tt>Infinity</tt> (<xref target="values"/>).</t>
      <sourcecode type="abnf"><![CDATA[
number        = plain-number / radix-number / bigint / date

plain-number  = [ sign ] ( int [ frac ] / frac ) [ exp ]

radix-number  = [ sign ] zero radix 1*radix-digit

bigint        = [ sign ] int bigint-suffix

sign          = plus / minus

int           = DIGIT *DIGIT

frac          = decimal-point *DIGIT

exp           = e [ sign ] 1*DIGIT

decimal-point = %x2E                ; .

e             = %x65 / %x45         ; e E

minus         = %x2D                ; -

plus          = %x2B                ; +

zero          = %x30                ; 0

radix         = %x58 / %x78         ; X x  -- hexadecimal
              / %x4F / %x6F         ; O o  -- octal
              / %x42 / %x62         ; B b  -- binary

radix-digit   = DIGIT / %x41-46 / %x61-66
                ; restricted to the digits of the selected radix

bigint-suffix = %x6E                ; n

underscore    = %x5F                ; _
]]></sourcecode>
      <t>A number begins with a digit, <tt>+</tt>, <tt>-</tt>, or <tt>.</tt>.  Once a number has
started, only the characters named by the rules above may follow, and
all of them are below U+0080.</t>
      <t>A fraction part is a decimal point followed by zero or more digits, so
both a leading and a trailing decimal point are permitted: <tt>.5</tt> and
<tt>1.</tt> are valid numbers denoting 0.5 and 1.</t>
      <t>An exponent part begins with the letter E in upper or lower case, which
may be followed by a plus or minus sign.  The E and optional sign are
followed by one or more digits.</t>
      <t>Unlike JSON, leading zeros are permitted in a decimal number and do not
change its value: <tt>0123</tt> denotes 123.  A base other than 10 <bcp14>MUST</bcp14> be
selected with an explicit radix prefix.</t>
      <t>Earlier descriptions of JSOX followed C in reading a leading zero as
selecting octal, so that <tt>0123</tt> denoted 83.  That reading is
deprecated.  Implementations <bcp14>MUST NOT</bcp14> interpret a leading zero as
selecting octal, and <bcp14>MUST</bcp14> use the <tt>0o</tt> prefix to write an octal
number.  Generators <bcp14>SHOULD</bcp14> avoid emitting a leading zero at all, since
a reader familiar with C may misread it.</t>
      <t>Only one sign may appear, and it <bcp14>MUST</bcp14> be the first character.  A
sequence such as <tt>----123</tt> is an error.</t>
      <t>An underscore (<tt>_</tt>) <bcp14>MAY</bcp14> appear anywhere within a number, including
before or after the decimal point and at the end.  It is treated as a
zero-width separator: it is not stored and does not modify the value.
<tt>1_000_000</tt> and <tt>1000000</tt> denote the same number.  Note that a leading
underscore does not begin a number; it begins a string.</t>
      <t><tt>_</tt> is the only non-breaking separator a number has.  U+00A0 NO-BREAK
SPACE, which joins characters into a single string elsewhere
(<xref target="nbsp"/>), terminates a number instead: every character of a number is
below U+0080, so U+00A0 cannot be part of one.  <tt>1234&lt;NBSP&gt;</tt> is the
number 1234, and <tt>12&lt;NBSP&gt;34</tt> is two numbers -- allowed at the top
level of a stream, and an error in a bounded context (<xref target="adjacency"/>).</t>
      <t>This specification allows implementations to set limits on the range
and precision of numbers accepted.  Since software that implements IEEE
754 binary64 (double precision) numbers <xref target="IEEE754"/> is generally
available and widely used, good interoperability can be achieved by
implementations that expect no more precision or range than these
provide, in the sense that implementations will approximate JSOX
numbers within the expected precision.  A JSOX number such as <tt>1E400</tt>
or <tt>3.141592653589793238462643383279</tt> may indicate potential
interoperability problems, since it suggests that the software that
created it expects receiving software to have greater capabilities for
numeric magnitude and precision than is widely available.</t>
      <t>Note that when such software is used, numbers that are integers and are
in the range <tt>[-(2**53)+1, (2**53)-1]</tt> are interoperable in the
sense that implementations will agree exactly on their numeric values.</t>
      <section anchor="arbitrary-precision-integers">
        <name>Arbitrary-Precision Integers</name>
        <t>An integer suffixed with <tt>n</tt> is an arbitrary-precision integer,
corresponding to the ECMAScript BigInt type <xref target="ECMA-262"/>.  Its value is
exact and is not subject to the binary64 range and precision
considerations above.</t>
        <t>A receiver that has no arbitrary-precision integer type <bcp14>SHOULD</bcp14> report
an error rather than silently approximating the value, unless the
application has determined that approximation is acceptable.</t>
        <t>The suffix <bcp14>MUST NOT</bcp14> be combined with a fraction part or an exponent
part.</t>
      </section>
      <section anchor="dates">
        <name>Dates</name>
        <t>A number that contains one of the characters <tt>T</tt>, <tt>Z</tt>, or <tt>:</tt>, or that
contains <tt>+</tt> or <tt>-</tt> in a position other than the leading sign, is a
date rather than an ordinary number.</t>
        <sourcecode type="abnf"><![CDATA[
date        = [ sign ] 1*DIGIT time-symbol
              *( DIGIT / time-symbol )

time-symbol = %x54 / %x5A           ; T Z
            / %x2B / %x2D / %x3A    ; + - :
]]></sourcecode>
        <t>The value of a date is determined by interpreting its characters as an
ISO 8601 <xref target="ISO8601"/> date and time, as profiled by the Date Time String
Format of <xref target="ECMA-262"/>.  A date is written without quotation marks.</t>
        <t>Generators <bcp14>SHOULD</bcp14> emit a date that carries as much of the original
timestamp as is available, including the local time zone offset, so
that a receiver can recover it.  A date that is not a valid ISO 8601
date and time is an error; implementations that follow <xref target="ECMA-262"/>
will produce an "Invalid Date" value for it.</t>
        <t>The lexical rule above is deliberately permissive; it identifies which
token is a date, and <xref target="ISO8601"/> determines whether that token is
valid.  Generators <bcp14>MUST NOT</bcp14> rely on any interpretation outside
<xref target="ISO8601"/>.</t>
      </section>
    </section>
    <section anchor="strings">
      <name>Quoted Strings</name>
      <t>This section defines the quoted form of a string.  The unquoted form,
and the relationship between the two, are defined in
<xref target="identifiers"/>.</t>
      <t>The representation of quoted strings follows the conventions of
<xref target="ECMA-262"/>.  A quoted string begins and ends with a quotation mark.
Three quotation marks are available: U+0022 QUOTATION MARK, U+0027
APOSTROPHE, and U+0060 GRAVE ACCENT.  The closing quotation mark <bcp14>MUST</bcp14> be the same character as
the opening quotation mark.  No template substitution is performed
inside a grave-accent-quoted string; the grave accent is a third
quotation mark and nothing more.</t>
      <t>All Unicode characters may be placed within the quotation marks, except
for the quotation mark used to open the string and the reverse solidus,
which <bcp14>MUST</bcp14> be escaped.  The other two quotation marks need not be
escaped.</t>
      <t>A string <bcp14>MAY</bcp14> span more than one line.  Every character between the
opening and the closing quotation mark is retained, including line
terminators.  To continue a string onto the next line without including
the line terminator in its value, escape the line terminator with a
reverse solidus.</t>
      <sourcecode type="abnf"><![CDATA[
quoted-string   = quotation-mark *char quotation-mark
                  ; the closing mark is the same character as
                  ; the opening mark

quotation-mark  = %x22 / %x27 / %x60   ; " ' `

char            = unescaped / escape escape-sequence

escape          = %x5C                 ; \

escape-sequence = %x22 /               ; "  quotation mark
                  %x27 /               ; '  quotation mark
                  %x60 /               ; `  quotation mark
                  %x5C /               ; \  reverse solidus
                  %x2F /               ; /  solidus
                  %x62 /               ; b  backspace  U+0008
                  %x66 /               ; f  form feed  U+000C
                  %x6E /               ; n  line feed  U+000A
                  %x72 /               ; r  carriage return
                  %x74 /               ; t  tab        U+0009
                  %x76 /               ; v  vert. tab  U+000B
                  %x78 2HEXDIG /       ; xXX
                  %x30-32 2OCTDIG /    ; 0NN  octal, U+0000-U+00FF
                  %x75 4HEXDIG /       ; uXXXX
                  %x75 %x7B 1*HEXDIG %x7D /
                                       ; u{XXXXXX}
                  %x0A / %x0D /        ; line continuation
                  %x2028 / %x2029

unescaped       = <any Unicode scalar value other than the
                   quotation mark that opened this string and
                   %x5C reverse solidus>

OCTDIG          = %x30-37              ; 0-7
]]></sourcecode>
      <t>Any character may be escaped.  If the character is in the Basic
Multilingual Plane (U+0000 through U+FFFF), then it may be represented
as a six-character sequence: a reverse solidus, followed by the
lowercase letter u, followed by four hexadecimal digits that encode the
character's code point.  The hexadecimal letters A through F can be
upper or lower case.</t>
      <t>A character whose code point is below U+0100 may also be written as
<tt>\x</tt> followed by two hexadecimal digits, or as <tt>\0</tt> followed by two
octal digits.</t>
      <t>A character at any code point may be written as <tt>\u{</tt> followed by one
or more hexadecimal digits and <tt>}</tt>.</t>
      <t>Alternatively, there are two-character sequence escape representations
of some popular characters.  So, for example, a string containing only
a single reverse solidus character may be written as the four
characters <tt>"\\"</tt>.</t>
      <t>To escape an extended character that is not in the Basic Multilingual
Plane using the four-digit form, the character is represented as a
12-character sequence encoding the UTF-16 surrogate pair.  So, for
example, a string containing only the G clef character (U+1D11E) may be
represented as <tt>"𝄞"</tt>, or equivalently as <tt>"\u{1D11E}"</tt>.</t>
      <t>An escape sequence that is not listed above is an error.  Note in
particular that a reverse solidus followed by a decimal digit other
than <tt>0</tt>, <tt>1</tt>, or <tt>2</tt> is reserved and <bcp14>MUST NOT</bcp14> be generated.</t>
    </section>
    <section anchor="typed">
      <name>Typed Values</name>
      <t>A typed value is a value that carries a type tag: an identifier that
names an application type, immediately followed by the value's
representation.  A receiver that recognizes the tag may revive the
value as an instance of that type; a receiver that does not recognize
the tag <bcp14>MUST</bcp14> still be able to parse the value, and <bcp14>SHOULD</bcp14> make the tag
and the underlying value available to the application.</t>
      <sourcecode type="abnf"><![CDATA[
typed-value  = typed-object / typed-array / typed-string
             / macro-reference

typed-object = identifier begin-object
               [ member *( value-separator member )
                 [ value-separator ] ]
               end-object

typed-array  = identifier begin-array
               [ element *( value-separator element ) ]
               end-array

typed-string = identifier ws quoted-string
]]></sourcecode>
      <t>The <tt>ws</tt> these three rules admit before the value is permitted only in
a bounded context.  At the top level it <bcp14>MUST</bcp14> be absent, so that
<tt>open-object</tt> and <tt>open-array</tt> apply and a typed string's quotation
mark is adjacent to its tag.  See below.</t>
      <t>Whether whitespace may separate the tag from the value it carries
depends on the surrounding context, as described in <xref target="adjacency"/>.</t>
      <t>In a bounded context -- inside an object or an array -- whitespace <bcp14>MAY</bcp14>
appear between the tag and the <tt>{</tt>, <tt>[</tt>, or quotation mark that follows
it.  The enclosing <tt>}</tt> or <tt>]</tt> and the <tt>,</tt> and <tt>:</tt> separators already
mark where each value ends, so nothing is made ambiguous by the gap.
<tt>[ab"cd"]</tt> and <tt>[ab "cd"]</tt> both denote an array of one string, <tt>cd</tt>,
tagged <tt>ab</tt>.</t>
      <t>A comment between the two does not arise as a separate case: it is
removed before tokenizing (<xref target="ws"/>), so <tt>[ab/*x*/"cd"]</tt> is <tt>[ab"cd"]</tt>
and the tag is adjacent after all.  This is why the restriction below
can be stated in terms of whitespace alone.</t>
      <t>In an unbounded context -- the top level of a text or of a stream --
the tag <bcp14>MUST</bcp14> be adjacent to its value, with no whitespace
between them.  Nothing there marks where a value ends, so a complete
value ends at its last character: <tt>"abc" {a:1}</tt> is two values, and
<tt>"abc"{a:1}</tt> is one tagged value.</t>
      <t>A generator <bcp14>SHOULD NOT</bcp14> emit whitespace between a tag and its value in
either context, since output written that way is valid in only one of
them.</t>
      <t>A tag is a string (<xref target="identifiers"/>), so it may be quoted.  Quoting is
what allows a tag to contain a character that <tt>unquoted-string</tt> does
not admit; <tt>"o:1"{a:1}</tt> is a typed object whose tag is the three-
character name <tt>o:1</tt>.  A quoted tag names an application type in
exactly the same way an unquoted one does, and carries no other
meaning: the colon in <tt>o:1</tt> is part of the name, and does not make the
tag a name/value pair.</t>
      <t>A typed string is exactly two strings: the tag and the value.  A third
adjacent string matches no rule and is an error.  <tt>"a""b"</tt> is the
string <tt>b</tt> tagged <tt>a</tt> -- the same construct as <tt>color"#333"</tt>, with the
tag quoted -- while <tt>"a""b""c"</tt> is not a JSOX text.</t>
      <t>Because a quoted string is self-delimiting, a typed string at the top
level of a text <bcp14>MUST</bcp14> use an unquoted tag; otherwise the tag would be
read as a complete string value in its own right.  This restriction
applies only to typed strings, since <tt>{</tt> and <tt>[</tt> are unambiguous after
a closing quotation mark.</t>
      <t>A tag that the receiver has not registered does not make the text
invalid.  The value is parsed normally and the tag is reported to the
application; see <xref target="security"/>.</t>
      <section anchor="typed-arrays">
        <name>Typed Arrays and Binary Data</name>
        <t>The following tags are reserved and denote binary data rather than an
application type.  The content of such an array is a single base 64
token (<xref target="base64"/>), written without quotation marks, that encodes the
octets of the array.</t>
        <table anchor="tab-array-types">
          <name>Binary typed-array tags</name>
          <thead>
            <tr>
              <th align="left">Tag</th>
              <th align="left">Type</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">
                <tt>ab</tt></td>
              <td align="left">untyped octet buffer (ArrayBuffer)</td>
            </tr>
            <tr>
              <td align="left">
                <tt>u8</tt></td>
              <td align="left">unsigned 8-bit integers</td>
            </tr>
            <tr>
              <td align="left">
                <tt>cu8</tt></td>
              <td align="left">unsigned 8-bit integers, clamped</td>
            </tr>
            <tr>
              <td align="left">
                <tt>s8</tt></td>
              <td align="left">signed 8-bit integers</td>
            </tr>
            <tr>
              <td align="left">
                <tt>u16</tt></td>
              <td align="left">unsigned 16-bit integers</td>
            </tr>
            <tr>
              <td align="left">
                <tt>s16</tt></td>
              <td align="left">signed 16-bit integers</td>
            </tr>
            <tr>
              <td align="left">
                <tt>u32</tt></td>
              <td align="left">unsigned 32-bit integers</td>
            </tr>
            <tr>
              <td align="left">
                <tt>s32</tt></td>
              <td align="left">signed 32-bit integers</td>
            </tr>
            <tr>
              <td align="left">
                <tt>f32</tt></td>
              <td align="left">IEEE 754 binary32 numbers</td>
            </tr>
            <tr>
              <td align="left">
                <tt>f64</tt></td>
              <td align="left">IEEE 754 binary64 numbers</td>
            </tr>
          </tbody>
        </table>
        <t>The tags <tt>u64</tt> and <tt>s64</tt> are reserved for unsigned and signed 64-bit
integer arrays.  Generators <bcp14>MUST NOT</bcp14> emit them until their
representation is defined.</t>
        <t>For all tags other than <tt>ab</tt>, the encoded octets are the little-endian
in-memory representation of the array's elements, and the number of
octets <bcp14>MUST</bcp14> be a multiple of the element size.</t>
        <sourcecode type="abnf"><![CDATA[
binary-array = array-type open-array [ base64-data ] end-array

array-type   = "ab" / "u8" / "cu8" / "s8" / "u16" / "s16"
             / "u32" / "s32" / "f32" / "f64"
]]></sourcecode>
        <t>These ten tags <bcp14>MUST NOT</bcp14> be used by an application for any other
purpose.</t>
      </section>
      <section anchor="references">
        <name>References</name>
        <t>The reserved tag <tt>ref</tt> denotes a reference to a value that appears
elsewhere in the same text.  Its content is the path from the root of
the text to that value: a sequence of member names and array indices.</t>
        <sourcecode type="abnf"><![CDATA[
reference = "ref" open-array
            [ ref-step *( value-separator ref-step ) ]
            end-array

ref-step  = string / int
]]></sourcecode>
        <t>A string step selects an object member by name; an integer step selects
an array element by position, counting from zero.  An empty path
denotes the root value of the text.</t>
        <t>A reference is not a value in its own right: it is replaced, during
parsing, by the value that its path selects.  A <tt>ref</tt> array <bcp14>MUST NOT</bcp14> be
used where the referenced value has not yet been fully determined by
the text, except that a reference <bcp14>MAY</bcp14> point to an enclosing structure,
which is how cyclic structures are encoded.</t>
        <t>References are how JSOX preserves object identity.  Two members whose
values are the same object are encoded once, with the second member
carrying a <tt>ref</tt> to the first.</t>
        <t>Because a reference names a position in the text, a receiver <bcp14>MUST</bcp14>
resolve references against the text as received, and <bcp14>MUST NOT</bcp14> resolve
a path that leaves the text.  See <xref target="security"/>.</t>
      </section>
      <section anchor="macros">
        <name>Macros</name>
        <t>A macro declares a list of field names once, so that objects of that
shape can afterwards be written as a list of values.  This removes
repeated member names from a document; it does not change the value
that the document denotes.</t>
        <sourcecode type="abnf"><![CDATA[
macro-definition = identifier open-object
                   identifier *( value-separator identifier )
                   end-object

macro-reference  = identifier open-object
                   [ element *( value-separator element ) ]
                   end-object
]]></sourcecode>
        <t>A macro definition is distinguished from a typed object (<xref target="typed"/>) by
what follows the first name inside the braces: if a colon appears
before the first comma, the construct is a typed object; otherwise it
is a macro definition.</t>
        <t>Both halves of that test matter at the top level, where either
construct may appear.  <tt>x{a}</tt> declares a macro with the single field
name <tt>a</tt>; it is a definition, not a value, so a text containing only
that is a text with no value and is incomplete.  <tt>x{a:1}</tt> has a colon
before the first comma and is therefore a typed object, which is a
value.  The same applies to a quoted tag: <tt>"o:1"{a}</tt> is a macro
definition tagged <tt>o:1</tt>, and <tt>"o:1"{a:1}</tt> is a typed object.</t>
        <t>A macro definition <bcp14>MUST</bcp14> declare at least one name.  Empty braces
therefore never form a macro definition: <tt>x{}</tt> is a typed object with
no members, and it is a value -- an empty object carrying the tag <tt>x</tt>,
which a receiver that recognizes <tt>x</tt> may revive as a default-
constructed instance of that type.  A zero-name macro could declare
nothing and could never be referenced, so resolving the ambiguity the
other way would make <tt>x{}</tt> useless rather than merely empty.</t>
        <t>A macro definition <bcp14>MUST</bcp14> appear at the top level of the text, before the
value that uses it.  It is not itself a value.</t>
        <t>A macro reference produces an object whose members are the declared
names paired, in order, with the values supplied.  If fewer values are
supplied than names were declared, the remaining members are absent, as
if their value were <tt>undefined</tt>.  Supplying more values than names were
declared is an error.</t>
        <t>A macro tag and a type tag <bcp14>MAY</bcp14> share a name.  When they do, objects
produced from the macro are also revived as instances of that type.</t>
        <t>A receiver <bcp14>MUST</bcp14> reject a macro reference whose tag has not been
defined earlier in the same text.</t>
      </section>
    </section>
    <section anchor="string-and-character-issues">
      <name>String and Character Issues</name>
      <section anchor="encoding">
        <name>Character Encoding</name>
        <t>JSOX text exchanged between systems that are not part of a closed
ecosystem <bcp14>MUST</bcp14> be encoded using UTF-8 <xref target="RFC8259"/>.  Implementations <bcp14>MAY</bcp14>
additionally support UTF-16 and UTF-32; texts encoded in UTF-8 are
interoperable in the sense that they will be read successfully by the
maximum number of implementations.</t>
        <t>Implementations <bcp14>MUST NOT</bcp14> add a byte order mark to the beginning of a
JSOX text.  Implementations that parse JSOX texts <bcp14>MUST</bcp14> ignore a byte
order mark rather than treating it as an error, because U+FEFF is
whitespace in JSOX (<xref target="ws"/>).</t>
      </section>
      <section anchor="unicode-characters">
        <name>Unicode Characters</name>
        <t>When all the strings represented in a JSOX text are composed entirely
of Unicode characters <xref target="UNICODE"/> (however escaped), then that JSOX
text is interoperable in the sense that all software implementations
that parse it will agree on the contents of names and of string values
in objects and arrays.</t>
        <t>However, the ABNF in this specification allows member names and string
values to contain bit sequences that cannot encode Unicode characters;
for example, <tt>"\uDEAD"</tt> (a single unpaired UTF-16 surrogate).
Instances of this have been observed, for example, when a library
truncates a UTF-16 string without checking whether the truncation split
a surrogate pair.  The behavior of software that receives JSOX texts
containing such values is unpredictable; for example, implementations
might return different values for the length of a string value or even
suffer fatal runtime exceptions.</t>
      </section>
      <section anchor="string-comparison">
        <name>String Comparison</name>
        <t>Software implementations are typically required to test names of object
members for equality.  Implementations that transform the textual
representation into sequences of Unicode code units and then perform
the comparison numerically, code unit by code unit, are interoperable
in the sense that implementations will agree in all cases on equality
or inequality of two strings.  For example, implementations that
compare strings with escaped characters unconverted may incorrectly
find that two spellings of the same string are not equal.</t>
        <t>Note that this applies to unquoted identifiers as well as to quoted
strings, and that an identifier containing U+00A0 is not equal to the
visually identical identifier containing U+0020 (<xref target="ws"/>).</t>
      </section>
    </section>
    <section anchor="base64">
      <name>Base 64 Encoding</name>
      <t>The binary typed arrays of <xref target="typed-arrays"/> carry their octets as base
64 data.  JSOX uses the alphabet below rather than the alphabets of
<xref target="RFC4648"/>, because the two characters it selects for values 62 and 63
are permitted in an unquoted identifier and so require no quoting:</t>
      <artwork><![CDATA[
ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789$_
]]></artwork>
      <t>Generators <bcp14>MUST</bcp14> use this alphabet.</t>
      <t>For interoperability with data produced by other base 64
implementations, parsers <bcp14>MUST</bcp14> additionally accept the following
characters on input:</t>
      <table anchor="tab-base64">
        <name>Base 64 characters accepted on input</name>
        <thead>
          <tr>
            <th align="left">Character</th>
            <th align="left">Value</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">
              <tt>$</tt></td>
            <td align="left">62</td>
          </tr>
          <tr>
            <td align="left">
              <tt>+</tt></td>
            <td align="left">62</td>
          </tr>
          <tr>
            <td align="left">
              <tt>-</tt></td>
            <td align="left">62</td>
          </tr>
          <tr>
            <td align="left">
              <tt>.</tt></td>
            <td align="left">62</td>
          </tr>
          <tr>
            <td align="left">
              <tt>_</tt></td>
            <td align="left">63</td>
          </tr>
          <tr>
            <td align="left">
              <tt>/</tt></td>
            <td align="left">63</td>
          </tr>
          <tr>
            <td align="left">
              <tt>,</tt></td>
            <td align="left">63</td>
          </tr>
          <tr>
            <td align="left">
              <tt>=</tt></td>
            <td align="left">end of data</td>
          </tr>
          <tr>
            <td align="left">
              <tt>~</tt></td>
            <td align="left">end of data</td>
          </tr>
        </tbody>
      </table>
      <t>Note that <tt>+</tt>, <tt>-</tt>, <tt>.</tt>, <tt>/</tt>, and <tt>,</tt> require quoting when they appear
in a value that is otherwise an unquoted identifier, and that <tt>,</tt> and
<tt>/</tt> are ambiguous inside an array; a parser reading base 64 data
between <tt>[</tt> and <tt>]</tt> reads to the closing bracket and so is not affected,
but a generator <bcp14>MUST NOT</bcp14> emit these characters.</t>
      <t>Padding is not required.  A <tt>=</tt> or <tt>~</tt> character terminates the data.
Trailing bits that do not complete an octet <bcp14>MUST</bcp14> be zero and <bcp14>MUST</bcp14> be
discarded.</t>
    </section>
    <section anchor="parsers">
      <name>Parsers</name>
      <t>A JSOX parser transforms a JSOX text into another representation.  A
JSOX parser <bcp14>MUST</bcp14> accept all texts that conform to the JSOX grammar.  A
JSOX parser <bcp14>MAY</bcp14> accept non-JSOX forms or extensions.</t>
      <t>An implementation may set limits on the size of texts that it accepts,
on the maximum depth of nesting, on the range and precision of numbers,
on the length and character contents of strings, and on the number of
macro and type tags it will track.  See <xref target="security"/>.</t>
      <section anchor="streams">
        <name>Streams</name>
        <t>A JSOX text is a single value, but a sequence of JSOX texts may be
concatenated to form a stream, and an implementation <bcp14>MAY</bcp14> provide an
interface that reports each value as it completes.</t>
        <t>Within a stream, whitespace between values is significant wherever the
two values would otherwise be read as one token.  The stream <tt>1 2 3</tt>
is three numbers; without the separating whitespace it would be one.
Values that end with a structural character or a quotation mark are
self-delimiting and need no separator.</t>
        <t>A number, an unquoted identifier, or a literal name at the end of the
available input cannot be known to be complete, because more characters
may follow in a later portion of the stream.  An implementation <bcp14>MUST
NOT</bcp14> report such a value until either a delimiter has been seen or the
application has declared the input to be complete.</t>
        <t>Macro and type definitions are scoped to the stream, not to the
individual value: a definition made in one value of a stream remains in
effect for later values.</t>
      </section>
    </section>
    <section anchor="generators">
      <name>Generators</name>
      <t>A JSOX generator produces JSOX text.  The resulting text <bcp14>MUST</bcp14> strictly
conform to the JSOX grammar.</t>
      <t>A generator that is asked to produce a value that has no JSOX
representation, such as a function, <bcp14>MUST</bcp14> either omit it or report an
error, and <bcp14>MUST NOT</bcp14> emit an approximation that would parse as a
different value.</t>
    </section>
    <section anchor="security">
      <name>Security Considerations</name>
      <t>Generally, there are security issues with scripting languages.  JSOX is
a subset of ECMAScript that excludes code expressions, so a JSOX text
cannot by itself cause code to run.</t>
      <t>However, JSOX's syntax deviates from ECMAScript for type tags, macro
definitions, and references.  It is therefore not generally possible to
use a scripting language's <tt>eval()</tt> function to parse a JSOX text, and
implementations <bcp14>MUST NOT</bcp14> do so.  A subset of JSOX texts -- those that
use no type tag, macro, reference, date, or binary array -- would be
accepted by <tt>eval()</tt>, but an implementation cannot know that a text is
in that subset without first parsing it.  Using <tt>eval()</tt> on data from
an untrusted source allows arbitrary code execution.</t>
      <t>Reviving application types from a type tag is a deserialization
primitive, and carries the risks common to such primitives.  A receiver
<bcp14>MUST NOT</bcp14> construct an arbitrary type named by an incoming tag.  It
<bcp14>SHOULD</bcp14> revive only types that the application has explicitly
registered, and it <bcp14>MUST</bcp14> treat the values supplied for a revived type as
untrusted input, validating them exactly as it would validate the same
values arriving in a plain object.  A tag that has not been registered
<bcp14>MUST NOT</bcp14> cause any application code to run.</t>
      <t>References (<xref target="references"/>) let a text name values elsewhere in itself.
Two hazards follow.  First, a reference can create a cyclic structure;
software that walks a parsed JSOX value without tracking which objects
it has already visited will not terminate.  Receivers that pass parsed
values to code expecting a tree -- including code that re-serializes
them -- <bcp14>MUST</bcp14> detect cycles.  Second, a small text can name the same
large substructure many times, so the size of the parsed value is not
bounded by the size of the text.  Implementations <bcp14>SHOULD</bcp14> bound the
number of references they will resolve.</t>
      <t>Macros (<xref target="macros"/>) and type tags accumulate state for the lifetime of
a stream.  An attacker who can write to a long-lived stream can define
tags without limit.  Implementations <bcp14>SHOULD</bcp14> bound the number of
definitions they will retain.</t>
      <t>Binary typed arrays (<xref target="typed-arrays"/>) allow a text to request an
allocation whose size is proportional to the length of the base 64
data.  This is a bounded expansion, but implementations <bcp14>SHOULD</bcp14> still
apply a limit on allocation size.</t>
      <t>Arbitrary-precision integers are unbounded in length.  Implementations
<bcp14>SHOULD</bcp14> limit the length of such a number, since arithmetic on very
large integers can consume disproportionate time.</t>
      <t>Because JSOX permits comments and several equivalent spellings of the
same value -- three quotation marks, several escape forms, several
number bases, underscores in numbers, macros -- two texts that denote
the same value may differ.  JSOX is therefore not suitable as-is for
applications that require a canonical form, such as computing a
signature over serialized data.  Such applications <bcp14>MUST</bcp14> define their
own canonicalization, or sign the octets received rather than a
re-serialization of them.</t>
      <t>Implementations <bcp14>SHOULD</bcp14> apply limits on nesting depth, text size, string
length, and number magnitude.  A parser that recurses per level of
nesting can be made to exhaust its stack by a text consisting only of
open brackets.</t>
      <t>A stream of JSON or JSOX texts may generate the sequence <tt>][</tt> where two
adjacent array values meet.  Software that scans for such sequences
must not treat them as significant.</t>
    </section>
    <section anchor="iana">
      <name>IANA Considerations</name>
      <t>IANA is requested to register the media type "application/jsox" in the
"Media Types" registry, using the template below and following the
procedures of <xref target="RFC6838"/>.</t>
      <dl>
        <dt>Type name:</dt>
        <dd>
          <t>application</t>
        </dd>
        <dt>Subtype name:</dt>
        <dd>
          <t>jsox</t>
        </dd>
        <dt>Required parameters:</dt>
        <dd>
          <t>N/A</t>
        </dd>
        <dt>Optional parameters:</dt>
        <dd>
          <t>N/A.  No "charset" parameter is defined for this registration.
Adding one has no effect on compliant recipients; see
<xref target="encoding"/>.</t>
        </dd>
        <dt>Encoding considerations:</dt>
        <dd>
          <t>binary</t>
        </dd>
        <dt>Security considerations:</dt>
        <dd>
          <t>See <xref target="security"/> of RFC XXXX.</t>
        </dd>
        <dt>Interoperability considerations:</dt>
        <dd>
          <t>See <xref target="intro"/>, <xref target="numbers"/>, and <xref target="encoding"/> of RFC XXXX.</t>
        </dd>
        <dt>Published specification:</dt>
        <dd>
          <t>RFC XXXX</t>
        </dd>
        <dt>Applications that use this media type:</dt>
        <dd>
          <t>JSOX has been used to exchange data between applications written in
C, C++, and JavaScript.</t>
        </dd>
        <dt>Fragment identifier considerations:</dt>
        <dd>
          <t>N/A</t>
        </dd>
        <dt>Additional information:</dt>
        <dd>
          <t>Deprecated alias names for this type: N/A</t>
        </dd>
        <dt/>
        <dd>
          <t>Magic number(s): N/A</t>
        </dd>
        <dt/>
        <dd>
          <t>File extension(s): .jsox</t>
        </dd>
        <dt/>
        <dd>
          <t>Macintosh file type code(s): TEXT</t>
        </dd>
        <dt>Person &amp; email address to contact for further information:</dt>
        <dd>
          <t>James Buckeyne <eref target="mailto:james.buckeyne@gmail.com">james.buckeyne@gmail.com</eref></t>
        </dd>
        <dt>Intended usage:</dt>
        <dd>
          <t>COMMON</t>
        </dd>
        <dt>Restrictions on usage:</dt>
        <dd>
          <t>None</t>
        </dd>
        <dt>Author:</dt>
        <dd>
          <t>James Buckeyne <eref target="mailto:james.buckeyne@gmail.com">james.buckeyne@gmail.com</eref></t>
        </dd>
        <dt>Change controller:</dt>
        <dd>
          <t>James Buckeyne <eref target="mailto:james.buckeyne@gmail.com">james.buckeyne@gmail.com</eref></t>
        </dd>
      </dl>
      <t>RFC Editor: please replace XXXX above with the RFC number assigned to
this document, and remove this paragraph.</t>
    </section>
    <section anchor="examples">
      <name>Examples</name>
      <t>This is a JSOX object, and also a JSON object:</t>
      <sourcecode type="json"><![CDATA[
{
  "Image": {
    "Width":  800,
    "Height": 600,
    "Title":  "View from 15th Floor",
    "Thumbnail": {
      "Url":    "http://www.example.com/image/481989943",
      "Height": 125,
      "Width":  100
    },
    "Animated": false,
    "IDs": [116, 943, 234, 38793]
  }
}
]]></sourcecode>
      <t>Its Image member is an object whose Thumbnail member is an object and
whose IDs member is an array of numbers.</t>
      <t>This is a JSOX array containing two objects.  It uses unquoted member
names, dates, arbitrary-precision integers, binary arrays, and both
comment forms:</t>
      <artwork><![CDATA[
[
  {
     "precision": "zip",
     "ident":     123594985n,
     "Latitude":  37.7668,
     "Longitude": -122.3959,
     created:     2018-09-11T03:43:53.345-07:00,
     binary:      u8[U2VjcmV0],   /* Secret */
     Address:     "",
     City:        "SAN FRANCISCO",
     State:       "CA",
     Zip:         "94107",
     Country:     "US"
  },
  {
     precision:   "zip",
     "ident":     123594986n,
     Latitude:    37.371991,
     "Longitude": -122.026020,
     created:     2018-09-11T10:43:52.437Z,
     "binary":    u8[SGVsbG8sIFdvcmxkIQ],   // Hello, World!
     "Address":   "",
     City:        "SUNNYVALE",
     "State":     "CA",
     Zip:         "94085",
     "Country":   "US"
  }
]
]]></artwork>
      <t>The same data, using a macro to declare the member names once:</t>
      <artwork><![CDATA[
locale{ precision,ident,Latitude,Longitude,
        created,binary,Address,City,State,Zip,Country}
[ locale{ "zip",123594985n,37.7668,-122.3959,
          2018-09-11T03:43:53.345-07:00,
          u8[U2VjcmV0],
          "","SAN FRANCISCO","CA","94107","US"},
  locale{ "zip",123594986n,37.371991,-122.026020,
          2018-09-11T10:43:52.437Z,
          u8[SGVsbG8sIFdvcmxkIQ],
          "","SUNNYVALE","CA","94085","US"}
]
]]></artwork>
      <t>Once defined, the macro remains in effect for later values in the same
stream:</t>
      <artwork><![CDATA[
locale{ "zip",123594988n,36.1699,-115.1398,
        2018-09-11T13:23:23.636Z,
        u8[SGVsbG8sIFdvcmxkIQ],
        "","LAS VEGAS","NV","89109","US"}
]]></artwork>
      <t>This is an example of a reference.  The manager member and the first
element of the employees array denote the same object:</t>
      <artwork><![CDATA[
{
   company: { name: "Example.com",
              employees: [ { name:"bob" }, { name:"tom" } ],
              manager: ref["company","employees",0]
            }
}
]]></artwork>
      <t>Here are several small JSOX texts containing only values:</t>
      <artwork><![CDATA[
"Hello world!"
42
123n
true
Infinity
2018-09-11T13:23:23.636Z
]]></artwork>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC5234">
          <front>
            <title>Augmented BNF for Syntax Specifications: ABNF</title>
            <author fullname="D. Crocker" initials="D." role="editor" surname="Crocker"/>
            <author fullname="P. Overell" initials="P." surname="Overell"/>
            <date month="January" year="2008"/>
            <abstract>
              <t>Internet technical specifications often need to define a formal syntax. Over the years, a modified version of Backus-Naur Form (BNF), called Augmented BNF (ABNF), has been popular among many Internet specifications. The current specification documents ABNF. It balances compactness and simplicity with reasonable representational power. The differences between standard BNF and ABNF involve naming rules, repetition, alternatives, order-independence, and value ranges. This specification also supplies additional rule definitions and encoding for a core lexical analyzer of the type common to several Internet specifications. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="68"/>
          <seriesInfo name="RFC" value="5234"/>
          <seriesInfo name="DOI" value="10.17487/RFC5234"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC8259">
          <front>
            <title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
            <author fullname="T. Bray" initials="T." role="editor" surname="Bray"/>
            <date month="December" year="2017"/>
            <abstract>
              <t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format. It was derived from the ECMAScript Programming Language Standard. JSON defines a small set of formatting rules for the portable representation of structured data.</t>
              <t>This document removes inconsistencies with other specifications of JSON, repairs specification errors, and offers experience-based interoperability guidance.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="90"/>
          <seriesInfo name="RFC" value="8259"/>
          <seriesInfo name="DOI" value="10.17487/RFC8259"/>
        </reference>
        <reference anchor="RFC6838">
          <front>
            <title>Media Type Specifications and Registration Procedures</title>
            <author fullname="N. Freed" initials="N." surname="Freed"/>
            <author fullname="J. Klensin" initials="J." surname="Klensin"/>
            <author fullname="T. Hansen" initials="T." surname="Hansen"/>
            <date month="January" year="2013"/>
            <abstract>
              <t>This document defines procedures for the specification and registration of media types for use in HTTP, MIME, and other Internet protocols. This memo documents an Internet Best Current Practice.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="13"/>
          <seriesInfo name="RFC" value="6838"/>
          <seriesInfo name="DOI" value="10.17487/RFC6838"/>
        </reference>
        <reference anchor="ECMA-262" target="https://www.ecma-international.org/publications-and-standards/standards/ecma-262/">
          <front>
            <title>ECMAScript Language Specification</title>
            <author>
              <organization>Ecma International</organization>
            </author>
            <date year="2024" month="June"/>
          </front>
          <seriesInfo name="ECMA" value="Standard ECMA-262, 15th Edition"/>
        </reference>
        <reference anchor="UNICODE" target="https://www.unicode.org/versions/latest/">
          <front>
            <title>The Unicode Standard</title>
            <author>
              <organization>The Unicode Consortium</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="ISO8601" target="https://www.iso.org/standard/70907.html">
          <front>
            <title>Date and time -- Representations for information interchange</title>
            <author>
              <organization>International Organization for Standardization</organization>
            </author>
            <date year="2019"/>
          </front>
          <seriesInfo name="ISO" value="8601-1:2019"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC4627">
          <front>
            <title>The application/json Media Type for JavaScript Object Notation (JSON)</title>
            <author fullname="D. Crockford" initials="D." surname="Crockford"/>
            <date month="July" year="2006"/>
            <abstract>
              <t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format. It was derived from the ECMAScript Programming Language Standard. JSON defines a small set of formatting rules for the portable representation of structured data. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4627"/>
          <seriesInfo name="DOI" value="10.17487/RFC4627"/>
        </reference>
        <reference anchor="RFC7493">
          <front>
            <title>The I-JSON Message Format</title>
            <author fullname="T. Bray" initials="T." role="editor" surname="Bray"/>
            <date month="March" year="2015"/>
            <abstract>
              <t>I-JSON (short for "Internet JSON") is a restricted profile of JSON designed to maximize interoperability and increase confidence that software can process it successfully with predictable results.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7493"/>
          <seriesInfo name="DOI" value="10.17487/RFC7493"/>
        </reference>
        <reference anchor="RFC4648">
          <front>
            <title>The Base16, Base32, and Base64 Data Encodings</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson"/>
            <date month="October" year="2006"/>
            <abstract>
              <t>This document describes the commonly used base 64, base 32, and base 16 encoding schemes. It also discusses the use of line-feeds in encoded data, use of padding in encoded data, use of non-alphabet characters in encoded data, use of different encoding alphabets, and canonical encodings. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4648"/>
          <seriesInfo name="DOI" value="10.17487/RFC4648"/>
        </reference>
        <reference anchor="IEEE754" target="https://standards.ieee.org/standard/754-2019.html">
          <front>
            <title>IEEE Standard for Floating-Point Arithmetic</title>
            <author>
              <organization>IEEE</organization>
            </author>
            <date year="2019"/>
          </front>
          <seriesInfo name="IEEE" value="Standard 754-2019"/>
        </reference>
        <reference anchor="JSOX-IMPL" target="https://github.com/d3x0r/jsox">
          <front>
            <title>JSOX reference implementation</title>
            <author initials="J." surname="Buckeyne" fullname="James Buckeyne">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="JSON5" target="https://json5.org/">
          <front>
            <title>JSON5 Data Interchange Format</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="JSON6" target="https://github.com/d3x0r/JSON6">
          <front>
            <title>JSON6 Data Interchange Format</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
      </references>
    </references>
    <?line 1361?>

<section numbered="false" anchor="changes">
      <name>Changes from JSON</name>
      <t>This appendix summarizes, without normative force, how JSOX differs
from JSON <xref target="RFC8259"/>.  Every one of these constructs is optional; a
JSOX text that uses none of them is a JSON text.</t>
      <t>Additions taken from JSON5 <xref target="JSON5"/> and JSON6 <xref target="JSON6"/>:</t>
      <ul spacing="normal">
        <li>
          <t>Object member names may be unquoted (<xref target="identifiers"/>).</t>
        </li>
        <li>
          <t>Strings may be quoted with <tt>'</tt> or <tt>`</tt> as well as <tt>"</tt>, may span
lines, and accept the full set of ECMAScript escapes (<xref target="strings"/>).</t>
        </li>
        <li>
          <t>Numbers may be hexadecimal, octal, or binary; may have leading zeros,
a leading or trailing decimal point, a leading plus sign, or
underscore separators; and may be <tt>NaN</tt> or <tt>Infinity</tt>
(<xref target="numbers"/>).</t>
        </li>
        <li>
          <t>Objects and arrays may have a trailing comma, and arrays may have
elisions (<xref target="objects"/>, <xref target="arrays"/>).</t>
        </li>
        <li>
          <t><tt>undefined</tt> is a literal name (<xref target="values"/>).</t>
        </li>
        <li>
          <t>Line and block comments are removed before tokenizing (<xref target="ws"/>).</t>
        </li>
      </ul>
      <t>Additions specific to JSOX:</t>
      <ul spacing="normal">
        <li>
          <t>Dates are written unquoted, as a form of number (<xref target="dates"/>).</t>
        </li>
        <li>
          <t>Arbitrary-precision integers are written with an <tt>n</tt> suffix
(<xref target="numbers"/>).</t>
        </li>
        <li>
          <t>Binary buffers and typed arrays are written as base 64 data carried
by a reserved tag (<xref target="typed-arrays"/>).</t>
        </li>
        <li>
          <t>Objects, arrays, and strings may carry a type tag so that a receiver
can revive an application type (<xref target="typed"/>).</t>
        </li>
        <li>
          <t>Macros declare a set of member names once and then carry only values
(<xref target="macros"/>).</t>
        </li>
        <li>
          <t>References allow shared and cyclic structures to be encoded
(<xref target="references"/>).</t>
        </li>
        <li>
          <t><tt>#</tt> introduces a line comment (<xref target="ws"/>).</t>
        </li>
        <li>
          <t>A string may be unquoted in value position as well as in a member
name (<xref target="identifiers"/>).</t>
        </li>
      </ul>
      <t>One earlier JSOX behavior has been withdrawn: a leading zero once
selected octal, as it does in C.  That reading is deprecated, and a
leading zero now denotes a decimal number.  Octal is written with the
<tt>0o</tt> prefix (<xref target="numbers"/>).</t>
    </section>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>RFC 4627 <xref target="RFC4627"/> was written by Douglas Crockford, and was revised
as RFC 7159 and then RFC 8259 <xref target="RFC8259"/> by Tim Bray.  This document
reuses a substantial amount of text from those documents, particularly
in the descriptions of objects, arrays, numbers, strings, and character
encoding.  The debt is gratefully acknowledged.</t>
      <t>The relaxations of JSON's punctuation, string, and number syntax
adopted here were developed by the JSON5 <xref target="JSON5"/> and JSON6
<xref target="JSON6"/> communities.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
