Advertisement
intrepidOlivia

JSON objects for diff testing

Apr 4th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. JSON 1:
  2. {
  3. "title": "TestJSON1",
  4. "status": "In Progress",
  5. "nested": {
  6. "equalnums": 12345,
  7. "different": 12356,
  8. "nestedarray": [
  9. 1,
  10. 2,
  11. 3,
  12. 4,
  13. 5
  14. ]
  15. },
  16. "nested2": {
  17. "item1": [
  18. "description1",
  19. "alternate description",
  20. "boy howdy"
  21. ],
  22. "item2": "description2",
  23. "nestedObjArray": [
  24. {
  25. "prop1": 1,
  26. "prop2": 2
  27. },
  28. {
  29. "prop3": 3,
  30. "prop4": 4
  31. }
  32. ]
  33. }
  34. }
  35.  
  36. JSON 2:
  37. {
  38. "title": "TestJSON1",
  39. "status": "In Progress",
  40. "nested": {
  41. "equalnums": 12345,
  42. "different": 12356,
  43. "nestedarray": [
  44. 1,
  45. 2,
  46. 3,
  47. {
  48. "name": "testObject"
  49. },
  50. 5
  51. ]
  52. },
  53. "nested2": {
  54. "item1": "description1",
  55. "item2": "description2",
  56. "nestedObjArray": [
  57. {
  58. "prop1": 1,
  59. "prop2": 9,
  60. "prop3": 2
  61. },
  62. {
  63. "prop3": 3,
  64. "prop4": 4
  65. }
  66. ]
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement