Network Working Group A. Schiltknecht, Ed. Internet-Draft Viagenie Intended status: Informational August 14, 2015 Expires: February 15, 2016 A JSON format for LGR files draft-schiltknecht-lgr-json-00 Abstract This document defines a JSON format for LGRs (Label Generation Rules). LGRs are used to represent rules for validating identifier labels and their alternate representations. These LGRs are expressed in XML as defined in [I-D.ietf-lager-specification]. 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 http://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 February 15, 2016. Copyright Notice Copyright (c) 2015 IETF Trust and the persons identified as the document authors. All rights reserved. This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (http://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 Simplified BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Simplified BSD License. Schiltknecht Expires February 15, 2016 [Page 1] Internet-Draft JSON for LGR August 2015 Table of Contents 1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . 2 2. Converting from XML to JSON . . . . . . . . . . . . . . . . . 2 2.1. Basic structure . . . . . . . . . . . . . . . . . . . . . 2 2.2. Metadata . . . . . . . . . . . . . . . . . . . . . . . . 3 2.3. Code Points and variants . . . . . . . . . . . . . . . . 5 2.4. Whole Label Rules and actions . . . . . . . . . . . . . . 5 3. Converting from JSON to XML . . . . . . . . . . . . . . . . . 11 4. Acknowledgements . . . . . . . . . . . . . . . . . . . . . . 11 5. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 11 6. Security Considerations . . . . . . . . . . . . . . . . . . . 11 7. Normative References . . . . . . . . . . . . . . . . . . . . 11 Appendix A. ABNF syntax . . . . . . . . . . . . . . . . . . . . 11 Author's Address . . . . . . . . . . . . . . . . . . . . . . . . 11 1. Introduction This document describes a JSON format for representing LGRs as described in [I-D.ietf-lager-specification]. The key design considerations taken into account in this document are o Round-tripping (converting an XML LGR to JSON and back) will yield the same semantic result as the starting point. All XML elements, attributes and values are guaranted to be preserved. o The ordering of elements MUST be preserved, as it is of importance in the original LGR XML specification. The terms "JSON object", "JSON array", "JSON member", and "JSON value" are to be interpreted as described in [RFC7159]. The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in RFC 2119 [RFC2119]. 2. Converting from XML to JSON This section explains how to convert an XML LGR to JSON, by defining a simple mapping between XML nodes and JSON objects. 2.1. Basic structure As a valid JSON object, the basic layout of an LGR in JSON is as follows: Schiltknecht Expires February 15, 2016 [Page 2] Internet-Draft JSON for LGR August 2015 { "meta": [ ... ], "data": [ ... ], "rules": [ ... ] } As expressed in [I-D.ietf-lager-specification], only the "data" object is mandatory. The conversion scheme follows these general conventions: o Each XML element is a JSON array with 3 members: the name of the element (called "name"), a (potentially empty) JSON object representing the attributes of the element (called "attributes"), and the value of the element (called "value"). o The type of the "value" element (last element of the JSON array) depends on the context, and will be defined in each of the following sections. The use of JSON arrays which are ordered sequences allows to keep the order of the declarations from the XML. For example, the XML extract: will be converted to ["char", {"cp": "0063"}, []] 2.2. Metadata The type of the "value" is a string, except for the "references" element where an array of the JSON-converted "reference" child XML elements is used. Given the following XML "meta" element: Schiltknecht Expires February 15, 2016 [Page 3] Internet-Draft JSON for LGR August 2015 1 2010-01-01 sv example 2010-01-01 2013-12-31 Swedish examples institute. ]]> 6.3.0 The Unicode Standard 6.2 RFC 5892 Big-5: Computer Chinese Glyph and Character Code Mapping Table, Technical Report C-26, 1984 the converted JSON "meta" array is: "meta": [ ["version", {"comment": "initial version"}, "1"], ["date", {}, "2010-01-01"], ["language", {}, "sv"], ["scope", {"type": "domain"}, "example"], ["validity-start", {}, "2010-01-01"], ["validity-end", {}, "2013-12-31"], ["description", {"type": "text/html"}, "This language table was developed with the Swedish examples institute."], ["unicode-version", {}, "6.3.0"], ["references", {}, [ ["reference", {"id": "0", "comment": "the most recent"}, "The Unicode Standard 6.2"], ["reference", {"id": "1"}, "RFC 5892"], ["reference", {"id": "2"}, "Big-5: Computer Chinese Glyph and Character Code Mapping Table, Technical Report C-26, 1984"] ]] ] Schiltknecht Expires February 15, 2016 [Page 4] Internet-Draft JSON for LGR August 2015 2.3. Code Points and variants All code point data is contained in the "data" section of an LGR. There are two types of data: o Code points ("char" elements), which can have variants. o Range of code points ("range" elements), defined by their first and last code point, and cannot have variants. As a consequence, the type of the "value" is an array, containing the variants of a "char" elements. For variants, it is an empty array. Typical conversions are described in the following examples: "data": [ ["char", {"cp": "002D"}, []], ["range", {"first-cp": "0030", "last-cp": "0039"}, []], ["char", {"cp": "006C 00B7 006C", "comment": "Catalan middle dot"}, []] ] For variants: ["char", {"cp": "00F6"}, [ ["var", {"cp": "006F 0065", "type": "block"}, []] ]] 2.4. Whole Label Rules and actions Rules, classes and actions are defined in the "rules" section of an LGR, as an array of JSON objets. The "value" element will have the following types: o For rules, an array of the rule's match operators. Schiltknecht Expires February 15, 2016 [Page 5] Internet-Draft JSON for LGR August 2015 o For classes, an array of the class' codepoints, or a string if the shorthand notation is used. o For actions, an empty array since actions do not have any value or child. Schiltknecht Expires February 15, 2016 [Page 6] Internet-Draft JSON for LGR August 2015 0061-007A 0061 0065 0069 006F 0075 "rules": [ Schiltknecht Expires February 15, 2016 [Page 7] Internet-Draft JSON for LGR August 2015 [ "rule", { "name": "catalan-middle-dot", "ref": "0" }, [ [ "look-behind", {}, [ ["char", {"cp": "006C"}, []] ] ], [ "anchor", {}, [] ], [ "look-ahead", {}, [ ["char", {"cp": "006C"}, []] ] ] ] ], [ "class", { "name": "virama", "property": "ccc:9" }, [] ], [ "rule", { "name": "joiner", "ref": "1" }, [ [ "look-behind", {}, [ [ "class", {"by-ref": "virama"}, [] ] Schiltknecht Expires February 15, 2016 [Page 8] Internet-Draft JSON for LGR August 2015 ] ], ["anchor", {}, []] ] ], [ "difference", {"name": "consonants"}, [ [ "class", {"comment": "all letters"}, "0061-007A" ], [ "class", {"comment": "all vowels"}, "0061 0065 0069 006F 0075" ] ] ], [ "rule", {"name": "three-or-more-consonants"}, [ [ "start", {}, [] ], [ "class", { "by-ref": "consonants", "count": "3+" }, [] ], [ "end", {}, [] ] ] ], [ "rule", { "name": "non-preferred", Schiltknecht Expires February 15, 2016 [Page 9] Internet-Draft JSON for LGR August 2015 "comment": "matches any non-prefered code point" }, [ [ "complement", {"comment": "non-preferred"}, [ [ "class", {"from-tag": "preferred"}, [] ] ] ] ] ], [ "action", { "disp": "consonants", "match": "three-or-more-consonants" }, [] ], [ "action", { "disp": "block", "any-variant": "block" }, [] ], [ "action", { "disp": "activate", "all-variants": "allocate", "not-match": "non-preferred" }, [] ] ] Schiltknecht Expires February 15, 2016 [Page 10] Internet-Draft JSON for LGR August 2015 3. Converting from JSON to XML When converting a JSON LGR to XML format, proper escaping of text content MUST be done. An empty "value" (empty list, empty object or empty string) is an XML element without value nor child. 4. Acknowledgements TODO 5. IANA Considerations This memo includes no request to IANA. 6. Security Considerations Since JSON is used as a format, the security risks discussed in [RFC7159] are to be considered. 7. Normative References [I-D.ietf-lager-specification] Davies, K. and A. Freytag, "Representing Label Generation Rulesets using XML", draft-ietf-lager-specification-00 (work in progress), August 2015. [RFC2119] Bradner, S., "Key words for use in RFCs to Indicate Requirement Levels", BCP 14, RFC 2119, March 1997. [RFC7159] Bray, T., Ed., "The JavaScript Object Notation (JSON) Data Interchange Format", RFC 7159, DOI 10.17487/RFC7159, March 2014, . Appendix A. ABNF syntax TODO Author's Address Schiltknecht Expires February 15, 2016 [Page 11] Internet-Draft JSON for LGR August 2015 Audric Schiltknecht (editor) Viagenie 246 Aberdeen Quebec, QC G1R 2E1 Canada Email: audric.schiltknecht@viagenie.ca URI: http://viagenie.ca Schiltknecht Expires February 15, 2016 [Page 12]