Advertisement
Kool_Cool

http://localhost:8080/projects

May 8th, 2024
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 3.71 KB | None | 0 0
  1. // http://localhost:8080/projects
  2. [
  3.     {
  4.         "Id": 1,
  5.         "ProjectName": "Home Renovation",
  6.         "Description": "Complete home renovation project.",
  7.         "City": "New York",
  8.         "Slug": "home-renovation",
  9.         "Display": true,
  10.         "Contractor": {
  11.             "Id": 1,
  12.             "Firstname": "John",
  13.             "Lastname": "Doe",
  14.             "City": "New York",
  15.             "State": "NY",
  16.             "Mobile": "1234567890",
  17.             "Email": "[email protected]",
  18.             "Slug": "john-doe",
  19.             "Pincode": "10001",
  20.             "Verified": true,
  21.             "Active": true,
  22.             "Display": true
  23.         },
  24.         "ProjectImage": [
  25.             {
  26.                 "Id": 1,
  27.                 "ImagePath": "https://res.cloudinary.com/dxqdslrdu/image/upload/v1715141247/home-renovation_mixbtk.jpg",
  28.                 "Display": true,
  29.                 "project_id": 1
  30.             }
  31.         ]
  32.     },
  33.     {
  34.         "Id": 2,
  35.         "ProjectName": "Office Renovation",
  36.         "Description": "Complete office renovation project.",
  37.         "City": "Los Angeles",
  38.         "Slug": "office-renovation",
  39.         "Display": true,
  40.         "Contractor": {
  41.             "Id": 2,
  42.             "Firstname": "Jane",
  43.             "Lastname": "Smith",
  44.             "City": "Los Angeles",
  45.             "State": "CA",
  46.             "Mobile": "0987654321",
  47.             "Email": "[email protected]",
  48.             "Slug": "jane-smith",
  49.             "Pincode": "90001",
  50.             "Verified": true,
  51.             "Active": true,
  52.             "Display": true
  53.         },
  54.         "ProjectImage": [
  55.             {
  56.                 "Id": 2,
  57.                 "ImagePath": "https://res.cloudinary.com/dxqdslrdu/image/upload/v1715141248/office-renovation_exw8oa.jpg",
  58.                 "Display": true,
  59.                 "project_id": 2
  60.             }
  61.         ]
  62.     },
  63.     {
  64.         "Id": 3,
  65.         "ProjectName": "Kitchen Remodel",
  66.         "Description": "Complete kitchen remodel project.",
  67.         "City": "Chicago",
  68.         "Slug": "kitchen-remodel",
  69.         "Display": true,
  70.         "Contractor": {
  71.             "Id": 3,
  72.             "Firstname": "Bob",
  73.             "Lastname": "Johnson",
  74.             "City": "Chicago",
  75.             "State": "IL",
  76.             "Mobile": "1122334455",
  77.             "Email": "[email protected]",
  78.             "Slug": "bob-johnson",
  79.             "Pincode": "60007",
  80.             "Verified": true,
  81.             "Active": true,
  82.             "Display": true
  83.         },
  84.         "ProjectImage": [
  85.             {
  86.                 "Id": 3,
  87.                 "ImagePath": "https://res.cloudinary.com/dxqdslrdu/image/upload/v1715141247/kitchen-remodel_ljblqz.jpg",
  88.                 "Display": true,
  89.                 "project_id": 3
  90.             }
  91.         ]
  92.     },
  93.     {
  94.         "Id": 4,
  95.         "ProjectName": "Bathroom Update",
  96.         "Description": "Complete bathroom update project.",
  97.         "City": "Houston",
  98.         "Slug": "bathroom-update",
  99.         "Display": true,
  100.         "Contractor": {
  101.             "Id": 1,
  102.             "Firstname": "John",
  103.             "Lastname": "Doe",
  104.             "City": "New York",
  105.             "State": "NY",
  106.             "Mobile": "1234567890",
  107.             "Email": "[email protected]",
  108.             "Slug": "john-doe",
  109.             "Pincode": "10001",
  110.             "Verified": true,
  111.             "Active": true,
  112.             "Display": true
  113.         },
  114.         "ProjectImage": [
  115.             {
  116.                 "Id": 4,
  117.                 "ImagePath": "https://res.cloudinary.com/dxqdslrdu/image/upload/v1715141247/bathroom-update_tnbyur.jpg",
  118.                 "Display": true,
  119.                 "project_id": 4
  120.             }
  121.         ]
  122.     }
  123. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement