Created
July 8, 2017 08:03
-
-
Save adavia/76deb55c48992bc730d49625c85a048e to your computer and use it in GitHub Desktop.
object
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Change this | |
| { | |
| "addresses[0].city": "this is an error message" | |
| } | |
| // To this | |
| { | |
| addresses: { | |
| 0: { | |
| city: "this is an error message" | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment