Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What is the convention,should array of objects in json be pluralized or not

i.e

{
    "releases": [
       {
           "id": "0b405ea7-8785-402f-bcf7-d55f5000dc3e",
           "title": "Wintertunes"
       },
       {
           "id": "7eb37a3a-646d-4501-a373-e9071186b88d",
           "title": "Adventure Magic Supreme Journey Music"
       }
    ],
}

versus

i.e

{
    "release": [
       {
           "id": "0b405ea7-8785-402f-bcf7-d55f5000dc3e",
           "title": "Wintertunes"
       },
       {
           "id": "7eb37a3a-646d-4501-a373-e9071186b88d",
           "title": "Adventure Magic Supreme Journey Music"
       }
    ],
}
share|improve this question
3  
Usually, I would pluralize it for good style. – nhahtdh Jul 11 '12 at 16:27
was expecting a few more opinions on this :( – Paul Taylor Jul 16 '12 at 12:52
It's only style - the pluralization or not doesn't affect the functionality. If you choose not to pluralize it then there is nothing that I can do. – nhahtdh Jul 16 '12 at 13:06

1 Answer

up vote 0 down vote accepted

In the absence of any strong opinion decided to pluralize it

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.