Advertisement
goldnera

Untitled

May 14th, 2023
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.39 KB | None | 0 0
  1. {
  2. "company": {
  3. "name": "Acme Corporation",
  4. "address": "123 Main Street, Anytown, USA",
  5. "phone": "555-1234",
  6. "departments": [
  7. {
  8. "name": "Engineering",
  9. "employees": [
  10. {
  11. "name": "John Doe",
  12. "title": "Engineer",
  13. "years_of_service": 5,
  14. "salary": 95000,
  15. "contact": {
  16. "email": "johndoe@acme.com",
  17. "phone": "555-5678"
  18. }
  19. },
  20. {
  21. "name": "Jane Smith",
  22. "title": "Senior Engineer",
  23. "years_of_service": 8,
  24. "salary": 120000,
  25. "contact": {
  26. "email": "janesmith@acme.com",
  27. "phone": "555-7890"
  28. }
  29. },
  30. {
  31. "name": "Bob Johnson",
  32. "title": "Engineer",
  33. "years_of_service": 3,
  34. "salary": 80000,
  35. "contact": {
  36. "email": "bobjohnson@acme.com",
  37. "phone": "555-1234"
  38. }
  39. }
  40. ]
  41. },
  42. {
  43. "name": "Marketing",
  44. "employees": [
  45. {
  46. "name": "Sara Lee",
  47. "title": "Marketing Manager",
  48. "years_of_service": 7,
  49. "salary": 110000,
  50. "contact": {
  51. "email": "saralee@acme.com",
  52. "phone": "555-2345"
  53. }
  54. },
  55. {
  56. "name": "David Kim",
  57. "title": "Marketing Specialist",
  58. "years_of_service": 2,
  59. "salary": 60000,
  60. "contact": {
  61. "email": "davidkim@acme.com",
  62. "phone": "555-3456"
  63. }
  64. }
  65. ]
  66. },
  67. {
  68. "name": "Finance",
  69. "employees": [
  70. {
  71. "name": "Emily Jones",
  72. "title": "Financial Analyst",
  73. "years_of_service": 4,
  74. "salary": 75000,
  75. "contact": {
  76. "email": "emilyjones@acme.com",
  77. "phone": "555-4567"
  78. }
  79. },
  80. {
  81. "name": "Michael Chen",
  82. "title": "Finance Manager",
  83. "years_of_service": 6,
  84. "salary": 105000,
  85. "contact": {
  86. "email": "michaelchen@acme.com",
  87. "phone": "555-6789"
  88. }
  89. }
  90. ]
  91. }
  92. ]
  93. }
  94. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement