Re: [Json] Introduction

"Joe Hildebrand (jhildebr)" <jhildebr@cisco.com> Thu, 06 June 2013 19:57 UTC

Return-Path: <jhildebr@cisco.com>
X-Original-To: json@ietfa.amsl.com
Delivered-To: json@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 317F121E80A7 for <json@ietfa.amsl.com>; Thu, 6 Jun 2013 12:57:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -10.599
X-Spam-Level:
X-Spam-Status: No, score=-10.599 tagged_above=-999 required=5 tests=[BAYES_00=-2.599, RCVD_IN_DNSWL_HI=-8]
Received: from mail.ietf.org ([12.22.58.30]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id SdZBktgh4Nio for <json@ietfa.amsl.com>; Thu, 6 Jun 2013 12:57:17 -0700 (PDT)
Received: from rcdn-iport-7.cisco.com (rcdn-iport-7.cisco.com [173.37.86.78]) by ietfa.amsl.com (Postfix) with ESMTP id A1B2D21F8F7A for <json@ietf.org>; Thu, 6 Jun 2013 12:57:17 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=cisco.com; i=@cisco.com; l=992; q=dns/txt; s=iport; t=1370548637; x=1371758237; h=from:to:subject:date:message-id:in-reply-to:content-id: content-transfer-encoding:mime-version; bh=xcS6fiLruDMB+E+5DCP+7FhUaBVkNjcLJYyvT/nbiD0=; b=Du08Xg7HxWxB/xsb5mtja60EoGtTS3RvCSaIWV/LgePPGEE4i3KPGhF9 o9iU/oLHT19HKT7n24ksNigJD7bwNpbcJyg71L9azuNG85mJjYIyP/Agr DYSRMW6pni6jXzvr3AJg06J5ir5+X5NbNNGJf24EOhcrKNZFxTRiPDRhO I=;
X-IronPort-Anti-Spam-Filtered: true
X-IronPort-Anti-Spam-Result: AggFAG7osFGtJXG//2dsb2JhbABZgwm/enoWdIIjAQEBAwE6RA0BCCIUQiUCBAESCId/BrtcjwE4gnphA6h/gw+CJw
X-IronPort-AV: E=Sophos;i="4.87,817,1363132800"; d="scan'208";a="219741837"
Received: from rcdn-core2-4.cisco.com ([173.37.113.191]) by rcdn-iport-7.cisco.com with ESMTP; 06 Jun 2013 19:57:17 +0000
Received: from xhc-rcd-x05.cisco.com (xhc-rcd-x05.cisco.com [173.37.183.79]) by rcdn-core2-4.cisco.com (8.14.5/8.14.5) with ESMTP id r56JvGHg011665 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=FAIL); Thu, 6 Jun 2013 19:57:16 GMT
Received: from xmb-rcd-x10.cisco.com ([169.254.15.56]) by xhc-rcd-x05.cisco.com ([173.37.183.79]) with mapi id 14.02.0318.004; Thu, 6 Jun 2013 14:57:16 -0500
From: "Joe Hildebrand (jhildebr)" <jhildebr@cisco.com>
To: Douglas Crockford <douglas@crockford.com>, "json@ietf.org" <json@ietf.org>
Thread-Topic: [Json] Introduction
Thread-Index: AQHOYuozVesgCtU8h0urTtW8JO4SV5kpCXqA
Date: Thu, 06 Jun 2013 19:57:16 +0000
Message-ID: <A723FC6ECC552A4D8C8249D9E07425A70FC30EF6@xmb-rcd-x10.cisco.com>
In-Reply-To: <51B0DFB6.10803@crockford.com>
Accept-Language: en-US
Content-Language: en-US
X-MS-Has-Attach:
X-MS-TNEF-Correlator:
user-agent: Microsoft-MacOutlook/14.3.4.130416
x-originating-ip: [10.21.88.234]
Content-Type: text/plain; charset="us-ascii"
Content-ID: <1DF6E3C6958E7E4D944CC7D1079D3EE6@emea.cisco.com>
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0
Subject: Re: [Json] Introduction
X-BeenThere: json@ietf.org
X-Mailman-Version: 2.1.12
Precedence: list
List-Id: "JavaScript Object Notation \(JSON\) WG mailing list" <json.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/json>, <mailto:json-request@ietf.org?subject=unsubscribe>
List-Archive: <http://www.ietf.org/mail-archive/web/json>
List-Post: <mailto:json@ietf.org>
List-Help: <mailto:json-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/json>, <mailto:json-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 06 Jun 2013 19:57:23 -0000

On 6/6/13 1:15 PM, "Douglas Crockford" <douglas@crockford.com> wrote:

>    A string is a sequence of zero or more characters.

How about:

"A string is a sequence of code points for almost any Unicode character."

("almost" here refers to the ones that need to be escaped)

>    An object is an unordered collection of zero or more name/value
>    pairs, where a name is a string and a value is a string, number,
>    boolean, null, object, or array.
>
>    An array is an ordered sequence of zero or more values.
>
>    The terms "object" and "array" come from the conventions of
>    JavaScript.

I think this graf can be deleted.

>    JSON's design goals were for it to be minimal, portable, textual, and
>    a subset of JavaScript.  JSON stands for JavaScript Object Notation.

Should we add something like:

"However, JSON is now used in many different programming languages.  This
document describes a language-neutral approach."

-- 
Joe Hildebrand