Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. JSON responses -- what's your preference?

JSON responses -- what's your preference?

Scheduled Pinned Locked Moved The Lounge
questionjavascriptpythoncomcloud
28 Posts 21 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M Marc Clifton

    Do you prefer to always wrap the JSON in an outer object? For example, a call to a credit card processor to get supported credit cards. Do you prefer simply the array returned:

    [
    "AM",
    "DI",
    "EB",
    "EP",
    "MC",
    "VI"
    ]

    or the array wrapped in an outer "object":

    {
    "PaymentMethods": [
    "AM",
    "DI",
    "EB",
    "EP",
    "MC",
    "VI"
    ]
    }

    If one or the other, why? Personally, I'm leaning toward the second form, which forces the Javascript writer to at least initially use the PaymentMethods tag: let ccs = resp.PaymentMethods; Which I think improves code readability. It's also more maintainable IMO, as perhaps other tags at some point might be added -- one simple thing that comes to mind is a flag that indicates whether ACH is supported (mind you, these are all concrete examples of the general question of JSON tags):

    {
    "PaymentMethods": [
    "AM",
    "DI",
    "EB",
    "EP",
    "MC",
    "VI"
    ],
    "SupportsACH": true
    }

    Using an outer object wrapper doesn't break the code if additional JSON elements are added later. So...thoughts? Marc

    Latest Article - Azure Function - Compute Pi Stress Test Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802

    Mike HankeyM Offline
    Mike HankeyM Offline
    Mike Hankey
    wrote on last edited by
    #7

    I go with the second version as well and for the reasons stated. We all know that the only thing constant is change so the second form is a no brainer!

    I do all my own stunts, but never intentionally! JaxCoder.com

    1 Reply Last reply
    0
    • M Marc Clifton

      Do you prefer to always wrap the JSON in an outer object? For example, a call to a credit card processor to get supported credit cards. Do you prefer simply the array returned:

      [
      "AM",
      "DI",
      "EB",
      "EP",
      "MC",
      "VI"
      ]

      or the array wrapped in an outer "object":

      {
      "PaymentMethods": [
      "AM",
      "DI",
      "EB",
      "EP",
      "MC",
      "VI"
      ]
      }

      If one or the other, why? Personally, I'm leaning toward the second form, which forces the Javascript writer to at least initially use the PaymentMethods tag: let ccs = resp.PaymentMethods; Which I think improves code readability. It's also more maintainable IMO, as perhaps other tags at some point might be added -- one simple thing that comes to mind is a flag that indicates whether ACH is supported (mind you, these are all concrete examples of the general question of JSON tags):

      {
      "PaymentMethods": [
      "AM",
      "DI",
      "EB",
      "EP",
      "MC",
      "VI"
      ],
      "SupportsACH": true
      }

      Using an outer object wrapper doesn't break the code if additional JSON elements are added later. So...thoughts? Marc

      Latest Article - Azure Function - Compute Pi Stress Test Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802

      G Offline
      G Offline
      GuyThiebaut
      wrote on last edited by
      #8

      I think the first example is not valid JSON, there again I am not a JSON expert. Definitely go with the second one! Edit] turns out I am wrong about the not valid statement I made -JSON[^]

      “That which can be asserted without evidence, can be dismissed without evidence.”

      ― Christopher Hitchens

      M B 2 Replies Last reply
      0
      • M Marc Clifton

        Do you prefer to always wrap the JSON in an outer object? For example, a call to a credit card processor to get supported credit cards. Do you prefer simply the array returned:

        [
        "AM",
        "DI",
        "EB",
        "EP",
        "MC",
        "VI"
        ]

        or the array wrapped in an outer "object":

        {
        "PaymentMethods": [
        "AM",
        "DI",
        "EB",
        "EP",
        "MC",
        "VI"
        ]
        }

        If one or the other, why? Personally, I'm leaning toward the second form, which forces the Javascript writer to at least initially use the PaymentMethods tag: let ccs = resp.PaymentMethods; Which I think improves code readability. It's also more maintainable IMO, as perhaps other tags at some point might be added -- one simple thing that comes to mind is a flag that indicates whether ACH is supported (mind you, these are all concrete examples of the general question of JSON tags):

        {
        "PaymentMethods": [
        "AM",
        "DI",
        "EB",
        "EP",
        "MC",
        "VI"
        ],
        "SupportsACH": true
        }

        Using an outer object wrapper doesn't break the code if additional JSON elements are added later. So...thoughts? Marc

        Latest Article - Azure Function - Compute Pi Stress Test Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802

        L Offline
        L Offline
        Lost User
        wrote on last edited by
        #9

        The outer object is redundant. I prefer the array when it is an array.

        1 Reply Last reply
        0
        • M Marc Clifton

          Do you prefer to always wrap the JSON in an outer object? For example, a call to a credit card processor to get supported credit cards. Do you prefer simply the array returned:

          [
          "AM",
          "DI",
          "EB",
          "EP",
          "MC",
          "VI"
          ]

          or the array wrapped in an outer "object":

          {
          "PaymentMethods": [
          "AM",
          "DI",
          "EB",
          "EP",
          "MC",
          "VI"
          ]
          }

          If one or the other, why? Personally, I'm leaning toward the second form, which forces the Javascript writer to at least initially use the PaymentMethods tag: let ccs = resp.PaymentMethods; Which I think improves code readability. It's also more maintainable IMO, as perhaps other tags at some point might be added -- one simple thing that comes to mind is a flag that indicates whether ACH is supported (mind you, these are all concrete examples of the general question of JSON tags):

          {
          "PaymentMethods": [
          "AM",
          "DI",
          "EB",
          "EP",
          "MC",
          "VI"
          ],
          "SupportsACH": true
          }

          Using an outer object wrapper doesn't break the code if additional JSON elements are added later. So...thoughts? Marc

          Latest Article - Azure Function - Compute Pi Stress Test Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802

          R Offline
          R Offline
          realJSOP
          wrote on last edited by
          #10

          I prefer the road that is more and more "less travelled" - the right way, which is the 2nd option.

          ".45 ACP - because shooting twice is just silly" - JSOP, 2010
          -----
          You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
          -----
          When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

          M 1 Reply Last reply
          0
          • M Marc Clifton

            Do you prefer to always wrap the JSON in an outer object? For example, a call to a credit card processor to get supported credit cards. Do you prefer simply the array returned:

            [
            "AM",
            "DI",
            "EB",
            "EP",
            "MC",
            "VI"
            ]

            or the array wrapped in an outer "object":

            {
            "PaymentMethods": [
            "AM",
            "DI",
            "EB",
            "EP",
            "MC",
            "VI"
            ]
            }

            If one or the other, why? Personally, I'm leaning toward the second form, which forces the Javascript writer to at least initially use the PaymentMethods tag: let ccs = resp.PaymentMethods; Which I think improves code readability. It's also more maintainable IMO, as perhaps other tags at some point might be added -- one simple thing that comes to mind is a flag that indicates whether ACH is supported (mind you, these are all concrete examples of the general question of JSON tags):

            {
            "PaymentMethods": [
            "AM",
            "DI",
            "EB",
            "EP",
            "MC",
            "VI"
            ],
            "SupportsACH": true
            }

            Using an outer object wrapper doesn't break the code if additional JSON elements are added later. So...thoughts? Marc

            Latest Article - Azure Function - Compute Pi Stress Test Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802

            L Offline
            L Offline
            Lost User
            wrote on last edited by
            #11

            Also it very much depends on how you organise your server side code. Do you serialise lists or dictionary of objects.

            1 Reply Last reply
            0
            • G GuyThiebaut

              I think the first example is not valid JSON, there again I am not a JSON expert. Definitely go with the second one! Edit] turns out I am wrong about the not valid statement I made -JSON[^]

              “That which can be asserted without evidence, can be dismissed without evidence.”

              ― Christopher Hitchens

              M Offline
              M Offline
              Marc Clifton
              wrote on last edited by
              #12

              GuyThiebaut wrote:

              turns out I am wrong about the not valid statement I made

              :-D Given I copied the response from the actual service call....

              Latest Article - Azure Function - Compute Pi Stress Test Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802

              S 1 Reply Last reply
              0
              • R realJSOP

                I prefer the road that is more and more "less travelled" - the right way, which is the 2nd option.

                ".45 ACP - because shooting twice is just silly" - JSOP, 2010
                -----
                You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
                -----
                When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

                M Offline
                M Offline
                Marc Clifton
                wrote on last edited by
                #13

                #realJSOP wrote:

                I prefer the road that is more and more "less travelled"

                It's becoming harder and harder to find that road. The weeds of innovation, latest techniques, and best practices[^] are taking over.

                Latest Article - Azure Function - Compute Pi Stress Test Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802

                R 1 Reply Last reply
                0
                • M Marc Clifton

                  #realJSOP wrote:

                  I prefer the road that is more and more "less travelled"

                  It's becoming harder and harder to find that road. The weeds of innovation, latest techniques, and best practices[^] are taking over.

                  Latest Article - Azure Function - Compute Pi Stress Test Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802

                  R Offline
                  R Offline
                  realJSOP
                  wrote on last edited by
                  #14

                  Not to mention the newest crop of "programmers" that we're starting to see...

                  ".45 ACP - because shooting twice is just silly" - JSOP, 2010
                  -----
                  You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
                  -----
                  When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

                  D 1 Reply Last reply
                  0
                  • M Marc Clifton

                    Do you prefer to always wrap the JSON in an outer object? For example, a call to a credit card processor to get supported credit cards. Do you prefer simply the array returned:

                    [
                    "AM",
                    "DI",
                    "EB",
                    "EP",
                    "MC",
                    "VI"
                    ]

                    or the array wrapped in an outer "object":

                    {
                    "PaymentMethods": [
                    "AM",
                    "DI",
                    "EB",
                    "EP",
                    "MC",
                    "VI"
                    ]
                    }

                    If one or the other, why? Personally, I'm leaning toward the second form, which forces the Javascript writer to at least initially use the PaymentMethods tag: let ccs = resp.PaymentMethods; Which I think improves code readability. It's also more maintainable IMO, as perhaps other tags at some point might be added -- one simple thing that comes to mind is a flag that indicates whether ACH is supported (mind you, these are all concrete examples of the general question of JSON tags):

                    {
                    "PaymentMethods": [
                    "AM",
                    "DI",
                    "EB",
                    "EP",
                    "MC",
                    "VI"
                    ],
                    "SupportsACH": true
                    }

                    Using an outer object wrapper doesn't break the code if additional JSON elements are added later. So...thoughts? Marc

                    Latest Article - Azure Function - Compute Pi Stress Test Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802

                    D Offline
                    D Offline
                    dan sh
                    wrote on last edited by
                    #15

                    Second, of course. Unless I try to go bonkers, then it is this:

                    [{
                    "PropertySet": [{
                    "Id": "1",
                    "Name": "fancyProperty",
                    "Type": "String",
                    "IsArray": "true"
                    }],
                    "ValueSet": [{
                    "PropertySetId": "1",
                    "Value": "AM"
                    },
                    {
                    "PropertySetId": "1",
                    "Value": "DI"
                    },
                    {
                    "PropertySetId": "1",
                    "Value": "EB"
                    },
                    {
                    "PropertySetId": "1",
                    "Value": "EP"
                    },
                    {
                    "PropertySetId": "1",
                    "Value": "MC"
                    },
                    {
                    "PropertySetId": "1",
                    "Value": "VI"
                    }
                    ]
                    }]

                    "It is easy to decipher extraterrestrial signals after deciphering Javascript and VB6 themselves.", ISanti[^]

                    1 Reply Last reply
                    0
                    • M Marc Clifton

                      GuyThiebaut wrote:

                      turns out I am wrong about the not valid statement I made

                      :-D Given I copied the response from the actual service call....

                      Latest Article - Azure Function - Compute Pi Stress Test Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802

                      S Offline
                      S Offline
                      Scott Serl
                      wrote on last edited by
                      #16

                      Just because a service call works, doesn't mean it is correct. Many internet services incorrectly implement the rfc (dns, smtp, many more...).

                      1 Reply Last reply
                      0
                      • M Marc Clifton

                        Do you prefer to always wrap the JSON in an outer object? For example, a call to a credit card processor to get supported credit cards. Do you prefer simply the array returned:

                        [
                        "AM",
                        "DI",
                        "EB",
                        "EP",
                        "MC",
                        "VI"
                        ]

                        or the array wrapped in an outer "object":

                        {
                        "PaymentMethods": [
                        "AM",
                        "DI",
                        "EB",
                        "EP",
                        "MC",
                        "VI"
                        ]
                        }

                        If one or the other, why? Personally, I'm leaning toward the second form, which forces the Javascript writer to at least initially use the PaymentMethods tag: let ccs = resp.PaymentMethods; Which I think improves code readability. It's also more maintainable IMO, as perhaps other tags at some point might be added -- one simple thing that comes to mind is a flag that indicates whether ACH is supported (mind you, these are all concrete examples of the general question of JSON tags):

                        {
                        "PaymentMethods": [
                        "AM",
                        "DI",
                        "EB",
                        "EP",
                        "MC",
                        "VI"
                        ],
                        "SupportsACH": true
                        }

                        Using an outer object wrapper doesn't break the code if additional JSON elements are added later. So...thoughts? Marc

                        Latest Article - Azure Function - Compute Pi Stress Test Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802

                        Richard DeemingR Offline
                        Richard DeemingR Offline
                        Richard Deeming
                        wrote on last edited by
                        #17

                        Definitely #2, especially if it's returned from a GET request: Anatomy of a Subtle JSON Vulnerability | You’ve Been Haacked[^]


                        "These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer

                        "These people looked deep within my soul and assigned me a number based on the order in which I joined" - Homer

                        1 Reply Last reply
                        0
                        • M Marc Clifton

                          Do you prefer to always wrap the JSON in an outer object? For example, a call to a credit card processor to get supported credit cards. Do you prefer simply the array returned:

                          [
                          "AM",
                          "DI",
                          "EB",
                          "EP",
                          "MC",
                          "VI"
                          ]

                          or the array wrapped in an outer "object":

                          {
                          "PaymentMethods": [
                          "AM",
                          "DI",
                          "EB",
                          "EP",
                          "MC",
                          "VI"
                          ]
                          }

                          If one or the other, why? Personally, I'm leaning toward the second form, which forces the Javascript writer to at least initially use the PaymentMethods tag: let ccs = resp.PaymentMethods; Which I think improves code readability. It's also more maintainable IMO, as perhaps other tags at some point might be added -- one simple thing that comes to mind is a flag that indicates whether ACH is supported (mind you, these are all concrete examples of the general question of JSON tags):

                          {
                          "PaymentMethods": [
                          "AM",
                          "DI",
                          "EB",
                          "EP",
                          "MC",
                          "VI"
                          ],
                          "SupportsACH": true
                          }

                          Using an outer object wrapper doesn't break the code if additional JSON elements are added later. So...thoughts? Marc

                          Latest Article - Azure Function - Compute Pi Stress Test Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802

                          C Offline
                          C Offline
                          Chris Maunder
                          wrote on last edited by
                          #18

                          The second. As you say it's maintainable, plus more easily extensible, and I like having an actual name by which to refer to the data (just seems easier when debugging in DevTools)

                          cheers Chris Maunder

                          1 Reply Last reply
                          0
                          • M Marc Clifton

                            Do you prefer to always wrap the JSON in an outer object? For example, a call to a credit card processor to get supported credit cards. Do you prefer simply the array returned:

                            [
                            "AM",
                            "DI",
                            "EB",
                            "EP",
                            "MC",
                            "VI"
                            ]

                            or the array wrapped in an outer "object":

                            {
                            "PaymentMethods": [
                            "AM",
                            "DI",
                            "EB",
                            "EP",
                            "MC",
                            "VI"
                            ]
                            }

                            If one or the other, why? Personally, I'm leaning toward the second form, which forces the Javascript writer to at least initially use the PaymentMethods tag: let ccs = resp.PaymentMethods; Which I think improves code readability. It's also more maintainable IMO, as perhaps other tags at some point might be added -- one simple thing that comes to mind is a flag that indicates whether ACH is supported (mind you, these are all concrete examples of the general question of JSON tags):

                            {
                            "PaymentMethods": [
                            "AM",
                            "DI",
                            "EB",
                            "EP",
                            "MC",
                            "VI"
                            ],
                            "SupportsACH": true
                            }

                            Using an outer object wrapper doesn't break the code if additional JSON elements are added later. So...thoughts? Marc

                            Latest Article - Azure Function - Compute Pi Stress Test Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802

                            D Offline
                            D Offline
                            dandy72
                            wrote on last edited by
                            #19

                            I swear I read that subject line as "JSOP responses". I thought I was about to read something with a title such as "The Complete Works of JSOP: All the Sage Wisdom and Life Advice You'll Ever Need as a Collection of One Liners".

                            1 Reply Last reply
                            0
                            • R realJSOP

                              Not to mention the newest crop of "programmers" that we're starting to see...

                              ".45 ACP - because shooting twice is just silly" - JSOP, 2010
                              -----
                              You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
                              -----
                              When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

                              D Offline
                              D Offline
                              dandy72
                              wrote on last edited by
                              #20

                              #realJSOP wrote:

                              newest crop of "programmers" that we're starting to see...

                              "Starting", he said... Never lose your sense of humor, JSOP.

                              1 Reply Last reply
                              0
                              • M Marc Clifton

                                Do you prefer to always wrap the JSON in an outer object? For example, a call to a credit card processor to get supported credit cards. Do you prefer simply the array returned:

                                [
                                "AM",
                                "DI",
                                "EB",
                                "EP",
                                "MC",
                                "VI"
                                ]

                                or the array wrapped in an outer "object":

                                {
                                "PaymentMethods": [
                                "AM",
                                "DI",
                                "EB",
                                "EP",
                                "MC",
                                "VI"
                                ]
                                }

                                If one or the other, why? Personally, I'm leaning toward the second form, which forces the Javascript writer to at least initially use the PaymentMethods tag: let ccs = resp.PaymentMethods; Which I think improves code readability. It's also more maintainable IMO, as perhaps other tags at some point might be added -- one simple thing that comes to mind is a flag that indicates whether ACH is supported (mind you, these are all concrete examples of the general question of JSON tags):

                                {
                                "PaymentMethods": [
                                "AM",
                                "DI",
                                "EB",
                                "EP",
                                "MC",
                                "VI"
                                ],
                                "SupportsACH": true
                                }

                                Using an outer object wrapper doesn't break the code if additional JSON elements are added later. So...thoughts? Marc

                                Latest Article - Azure Function - Compute Pi Stress Test Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802

                                S Offline
                                S Offline
                                Super Lloyd
                                wrote on last edited by
                                #21

                                do you prefer C# method to return List<T> GetSomeData<T>() or T GetSomeData<T>() if one or the other, why? Personally I don't care either way. Same for JSON.

                                A new .NET Serializer All in one Menu-Ribbon Bar Taking over the world since 1371!

                                1 Reply Last reply
                                0
                                • G GuyThiebaut

                                  I think the first example is not valid JSON, there again I am not a JSON expert. Definitely go with the second one! Edit] turns out I am wrong about the not valid statement I made -JSON[^]

                                  “That which can be asserted without evidence, can be dismissed without evidence.”

                                  ― Christopher Hitchens

                                  B Offline
                                  B Offline
                                  bence98
                                  wrote on last edited by
                                  #22

                                  I also thought that a valid JSON document has to have a root object. Is it not the case then? Anyways, I prefer the first one because it's shorter, and since it is a response, you should already well know what's gonna be in it: exactly the data requested. However, I have had some issues with the Java JSON library being unable to parse arrays by themselves. As a result, the way it's implemented in production right now (as suggested by StackOverflow :P ) is as follows: - JSON comes in on the network, looking like the first example you gave - Function checks if it starts with '[' and finds that yes, it does - So it appends some string around the received text, making it look like the second one - JSON lib parses this. The returned JsonObject's only JsonArray member is saved, the rest discarded - Prod code gets this JsonArray back to do whatever Fun times! "I don't think about dying. It is the last thing I want to do. :) " - theoldfool

                                  1 Reply Last reply
                                  0
                                  • M Marc Clifton

                                    Do you prefer to always wrap the JSON in an outer object? For example, a call to a credit card processor to get supported credit cards. Do you prefer simply the array returned:

                                    [
                                    "AM",
                                    "DI",
                                    "EB",
                                    "EP",
                                    "MC",
                                    "VI"
                                    ]

                                    or the array wrapped in an outer "object":

                                    {
                                    "PaymentMethods": [
                                    "AM",
                                    "DI",
                                    "EB",
                                    "EP",
                                    "MC",
                                    "VI"
                                    ]
                                    }

                                    If one or the other, why? Personally, I'm leaning toward the second form, which forces the Javascript writer to at least initially use the PaymentMethods tag: let ccs = resp.PaymentMethods; Which I think improves code readability. It's also more maintainable IMO, as perhaps other tags at some point might be added -- one simple thing that comes to mind is a flag that indicates whether ACH is supported (mind you, these are all concrete examples of the general question of JSON tags):

                                    {
                                    "PaymentMethods": [
                                    "AM",
                                    "DI",
                                    "EB",
                                    "EP",
                                    "MC",
                                    "VI"
                                    ],
                                    "SupportsACH": true
                                    }

                                    Using an outer object wrapper doesn't break the code if additional JSON elements are added later. So...thoughts? Marc

                                    Latest Article - Azure Function - Compute Pi Stress Test Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802

                                    A Offline
                                    A Offline
                                    agolddog
                                    wrote on last edited by
                                    #23

                                    I prefer the latter. As you point out, it's future-proofed for additions. Also, it can be easily deserialized into a C# object using something like Newtonsoft. That's where I'm generally consuming these data. That might be an important consideration; just because nobody's planning to deserialize into C# (or whatever) today, it means no refactoring when they do.

                                    1 Reply Last reply
                                    0
                                    • M Marc Clifton

                                      Do you prefer to always wrap the JSON in an outer object? For example, a call to a credit card processor to get supported credit cards. Do you prefer simply the array returned:

                                      [
                                      "AM",
                                      "DI",
                                      "EB",
                                      "EP",
                                      "MC",
                                      "VI"
                                      ]

                                      or the array wrapped in an outer "object":

                                      {
                                      "PaymentMethods": [
                                      "AM",
                                      "DI",
                                      "EB",
                                      "EP",
                                      "MC",
                                      "VI"
                                      ]
                                      }

                                      If one or the other, why? Personally, I'm leaning toward the second form, which forces the Javascript writer to at least initially use the PaymentMethods tag: let ccs = resp.PaymentMethods; Which I think improves code readability. It's also more maintainable IMO, as perhaps other tags at some point might be added -- one simple thing that comes to mind is a flag that indicates whether ACH is supported (mind you, these are all concrete examples of the general question of JSON tags):

                                      {
                                      "PaymentMethods": [
                                      "AM",
                                      "DI",
                                      "EB",
                                      "EP",
                                      "MC",
                                      "VI"
                                      ],
                                      "SupportsACH": true
                                      }

                                      Using an outer object wrapper doesn't break the code if additional JSON elements are added later. So...thoughts? Marc

                                      Latest Article - Azure Function - Compute Pi Stress Test Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802

                                      K Offline
                                      K Offline
                                      Kirk 10389821
                                      wrote on last edited by
                                      #24

                                      Personally, I prefer to always have the response wrapped. First, it makes it easier to extend in the future without breaking things. I have been around long enough, that code I wrote in the 1980s is still being used today! And the hardest thing to adjust is the data structure changes, because it impacts everything! Next, it just seems more consistent to always be wrapped. I could be biased by using a system or two that were always wrapped. And their inner objects were always consistent objects, and moveable between other container objects.

                                      1 Reply Last reply
                                      0
                                      • M Marc Clifton

                                        Do you prefer to always wrap the JSON in an outer object? For example, a call to a credit card processor to get supported credit cards. Do you prefer simply the array returned:

                                        [
                                        "AM",
                                        "DI",
                                        "EB",
                                        "EP",
                                        "MC",
                                        "VI"
                                        ]

                                        or the array wrapped in an outer "object":

                                        {
                                        "PaymentMethods": [
                                        "AM",
                                        "DI",
                                        "EB",
                                        "EP",
                                        "MC",
                                        "VI"
                                        ]
                                        }

                                        If one or the other, why? Personally, I'm leaning toward the second form, which forces the Javascript writer to at least initially use the PaymentMethods tag: let ccs = resp.PaymentMethods; Which I think improves code readability. It's also more maintainable IMO, as perhaps other tags at some point might be added -- one simple thing that comes to mind is a flag that indicates whether ACH is supported (mind you, these are all concrete examples of the general question of JSON tags):

                                        {
                                        "PaymentMethods": [
                                        "AM",
                                        "DI",
                                        "EB",
                                        "EP",
                                        "MC",
                                        "VI"
                                        ],
                                        "SupportsACH": true
                                        }

                                        Using an outer object wrapper doesn't break the code if additional JSON elements are added later. So...thoughts? Marc

                                        Latest Article - Azure Function - Compute Pi Stress Test Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802

                                        L Offline
                                        L Offline
                                        Lost User
                                        wrote on last edited by
                                        #25

                                        Anything that is self-documenting is a good thing, IMO (#2).

                                        "(I) am amazed to see myself here rather than there ... now rather than then". ― Blaise Pascal

                                        1 Reply Last reply
                                        0
                                        • M Marc Clifton

                                          Do you prefer to always wrap the JSON in an outer object? For example, a call to a credit card processor to get supported credit cards. Do you prefer simply the array returned:

                                          [
                                          "AM",
                                          "DI",
                                          "EB",
                                          "EP",
                                          "MC",
                                          "VI"
                                          ]

                                          or the array wrapped in an outer "object":

                                          {
                                          "PaymentMethods": [
                                          "AM",
                                          "DI",
                                          "EB",
                                          "EP",
                                          "MC",
                                          "VI"
                                          ]
                                          }

                                          If one or the other, why? Personally, I'm leaning toward the second form, which forces the Javascript writer to at least initially use the PaymentMethods tag: let ccs = resp.PaymentMethods; Which I think improves code readability. It's also more maintainable IMO, as perhaps other tags at some point might be added -- one simple thing that comes to mind is a flag that indicates whether ACH is supported (mind you, these are all concrete examples of the general question of JSON tags):

                                          {
                                          "PaymentMethods": [
                                          "AM",
                                          "DI",
                                          "EB",
                                          "EP",
                                          "MC",
                                          "VI"
                                          ],
                                          "SupportsACH": true
                                          }

                                          Using an outer object wrapper doesn't break the code if additional JSON elements are added later. So...thoughts? Marc

                                          Latest Article - Azure Function - Compute Pi Stress Test Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802

                                          P Offline
                                          P Offline
                                          paheal
                                          wrote on last edited by
                                          #26

                                          So your preferred answer to GET payment methods is a single object? Academically, I'd say the direct json array is the correct format. Here's an example endpoint and response from GitHub to retrieve followers. However, people have been doing practical choices over academic ones since the dawn of time. If your in control of both the api and the client, knock yourself out, as long as you're consistent.

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups