renzev@lemmy.world to Programmer Humor@lemmy.mlEnglish · 2 months agoAI's take on XMLlemmy.worldimagemessage-square133fedilinkarrow-up11.25Karrow-down123
arrow-up11.23Karrow-down1imageAI's take on XMLlemmy.worldrenzev@lemmy.world to Programmer Humor@lemmy.mlEnglish · 2 months agomessage-square133fedilink
minus-squareClassifiedPancake@discuss.tchncs.delinkfedilinkarrow-up3·edit-22 months agoSince XML can have attributes and children, it’s not as easy to convert to JSON. Your JSON example is more akin to: <address street_address="21 2nd Street" city="New York" ...></address>
minus-squareCanadaPlus@lemmy.sdf.orglinkfedilinkarrow-up3·edit-22 months agoHmm, so in tree terms, each node has two distinct types of children, only one of which can have their own children. That sounds more ambiguity-introducing than helpful to me, but that’s just a matter of taste. Can you do lists in XML as well?
minus-squareClassifiedPancake@discuss.tchncs.delinkfedilinkarrow-up2·2 months agoNo arrays are not allowed. Attributes can only be strings. But the children are kind of an array.
Since XML can have attributes and children, it’s not as easy to convert to JSON.
Your JSON example is more akin to:
<address street_address="21 2nd Street" city="New York" ...></address>
Hmm, so in tree terms, each node has two distinct types of children, only one of which can have their own children. That sounds more ambiguity-introducing than helpful to me, but that’s just a matter of taste. Can you do lists in XML as well?
No arrays are not allowed. Attributes can only be strings. But the children are kind of an array.