[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: json to json transformation

Subject: Re: json to json transformation
From: "Mukul Gandhi gandhi.mukul@xxxxxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Fri, 15 Mar 2019 12:10:32 -0000
Re:  json to json transformation
On Fri, Mar 15, 2019 at 4:31 PM Martin Honnen martin.honnen@xxxxxx <
xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx> wrote:

> In general I agree that conversion to XML allows easier processing of
> and transformation of JSON but your simply example could also be done at
> the XPath 3.1 level with map functions:
>
>    <xsl:output method="json" indent="yes"/>
>
>    <xsl:param name="json-string" as="xs:string">{
>     "id" : 105,
>     "medals" : [1, 2, 3],
>     "fName" : "Mukul",
>     "lName" : "Gandhi",
>     "address" : {
>        "street1" : "xyz",
>        "street2" : "maddison avenue",
>        "country" : "C1"
>      }
> }</xsl:param>
>
>    <xsl:variable name="map1" select="parse-json($json-string)"/>
>
>    <xsl:template match="/">
>        <xsl:sequence select="map:remove(map:put($map1, 'name',
> $map1?fName || ' ' || $map1?lName), ('fName', 'lName'))"/>
>    </xsl:template>
>

 I tried above XSLT transformation with Saxon, and it produces following,

 {
  "name":"Mukul Gandhi",
  "address": {
    "street1":"xyz",
    "street2":"maddison avenue",
    "country":"C1"
   },
  "id":105,
  "medals": [
    1,
    2,
    3
   ]
 }

The order of keys in above JSON output is not same as the input JSON. In
the JSON, I wanted fName and lName pair to be replaced by the 'name' key,
and wished that order of keys in JSON was preserved.

I think, with XPath 3.1 maps the ordering of keys has no relevance, and
from that point of view your XPath 3.1 map solution above is fine. But if
order of keys in the JSON need to be retained, is something like JSON to
XML & back to JSON again the only way ? I guess, Mike's paper discusses
issues including the previous point in a general way.




-- 
Regards,
Mukul Gandhi

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.