Advertisement
Kool_Cool

00(http://localhost:8080/contractors)

May 8th, 2024
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 4.04 KB | None | 0 0
  1. //http://localhost:8080/contractors
  2. // Updated
  3. [
  4.     {
  5.         "active": true,
  6.         "city": "New York",
  7.         "display": true,
  8.         "email": "[email protected]",
  9.         "firstname": "John",
  10.         "furniture": [
  11.             {
  12.                 "description": "A comfortable wooden chair.",
  13.                 "dimensions": "20x20x30",
  14.                 "display": true,
  15.                 "id": 1,
  16.                 "name": "Wooden Chair",
  17.                 "price": 49.99,
  18.                 "slug": "wooden-chair"
  19.             },
  20.             {
  21.                 "description": "A large wooden desk.",
  22.                 "dimensions": "50x50x30",
  23.                 "display": true,
  24.                 "id": 4,
  25.                 "name": "Wooden Desk",
  26.                 "price": 149.99,
  27.                 "slug": "wooden-desk"
  28.             }
  29.         ],
  30.         "id": 1,
  31.         "lastname": "Doe",
  32.         "mobile": "1234567890",
  33.         "pincode": "10001",
  34.         "projects": [
  35.             {
  36.                 "city": "New York",
  37.                 "description": "Complete home renovation project.",
  38.                 "display": true,
  39.                 "id": 1,
  40.                 "name": "Home Renovation",
  41.                 "slug": "home-renovation"
  42.             },
  43.             {
  44.                 "city": "Houston",
  45.                 "description": "Complete bathroom update project.",
  46.                 "display": true,
  47.                 "id": 4,
  48.                 "name": "Bathroom Update",
  49.                 "slug": "bathroom-update"
  50.             }
  51.         ],
  52.         "slug": "john-doe",
  53.         "state": "NY",
  54.         "verified": true
  55.     },
  56.     {
  57.         "active": true,
  58.         "city": "Los Angeles",
  59.         "display": true,
  60.         "email": "[email protected]",
  61.         "firstname": "Jane",
  62.         "furniture": [
  63.             {
  64.                 "description": "A sturdy metal table.",
  65.                 "dimensions": "30x30x30",
  66.                 "display": true,
  67.                 "id": 2,
  68.                 "name": "Metal Table",
  69.                 "price": 79.99,
  70.                 "slug": "metal-table"
  71.             }
  72.         ],
  73.         "id": 2,
  74.         "lastname": "Smith",
  75.         "mobile": "0987654321",
  76.         "pincode": "90001",
  77.         "projects": [
  78.             {
  79.                 "city": "Los Angeles",
  80.                 "description": "Complete office renovation project.",
  81.                 "display": true,
  82.                 "id": 2,
  83.                 "name": "Office Renovation",
  84.                 "slug": "office-renovation"
  85.             }
  86.         ],
  87.         "slug": "jane-smith",
  88.         "state": "CA",
  89.         "verified": true
  90.     },
  91.     {
  92.         "active": true,
  93.         "city": "Chicago",
  94.         "display": true,
  95.         "email": "[email protected]",
  96.         "firstname": "Bob",
  97.         "furniture": [
  98.             {
  99.                 "description": "A comfortable leather sofa.",
  100.                 "dimensions": "60x30x40",
  101.                 "display": true,
  102.                 "id": 3,
  103.                 "name": "Leather Sofa",
  104.                 "price": 299.99,
  105.                 "slug": "leather-sofa"
  106.             }
  107.         ],
  108.         "id": 3,
  109.         "lastname": "Johnson",
  110.         "mobile": "1122334455",
  111.         "pincode": "60007",
  112.         "projects": [
  113.             {
  114.                 "city": "Chicago",
  115.                 "description": "Complete kitchen remodel project.",
  116.                 "display": true,
  117.                 "id": 3,
  118.                 "name": "Kitchen Remodel",
  119.                 "slug": "kitchen-remodel"
  120.             }
  121.         ],
  122.         "slug": "bob-johnson",
  123.         "state": "IL",
  124.         "verified": true
  125.     },
  126.     {
  127.         "active": true,
  128.         "city": "Houston",
  129.         "display": true,
  130.         "email": "[email protected]",
  131.         "firstname": "Alice",
  132.         "furniture": [],
  133.         "id": 4,
  134.         "lastname": "Williams",
  135.         "mobile": "2233445566",
  136.         "pincode": "77001",
  137.         "projects": [],
  138.         "slug": "alice-williams",
  139.         "state": "TX",
  140.         "verified": true
  141.     }
  142. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement