andreadc

mockData

May 22nd, 2020
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.12 KB | None | 0 0
  1. cars = [
  2.      {
  3.         "id": "dc9e722d-4b24-5f6a-82ff-a71f937c62c0",
  4.         "brand": "FERRARI",
  5.         "model": "Portofino",
  6.         "type": "Sportiva",
  7.         "price": "195000",
  8.         "discount": 12,
  9.         "image1": "",
  10.         "image2": "",
  11.         "image3": ""
  12.       },
  13.     {...}, etc...
  14. ]
  15.  
  16. users = [
  17.      {
  18.         "id": "7c3ef3d3-f86d-50f9-8b85-b48a40cc772f",
  19.         "firstName": "Sabina",
  20.         "lastName": "Fadel",
  21.         "username": "SabinFad",
  22.         "password": "SabinFad",
  23.         "email": "SabinFad@.email.com",
  24.         "CarsForSale": [
  25.           {
  26.             "id": "dc9e722d-4b24-5f6a-82ff-a71f937c62c0",
  27.             "brand": "FERRARI",
  28.             "model": "Portofino",
  29.             "type": "Sportiva",
  30.             "price": "195000",
  31.             "discount": 12,
  32.             "image1": "",
  33.             "image2": "",
  34.             "image3": ""
  35.           },
  36.           {...}, etc...
  37.         ]
  38. ]
  39.  
  40. //risultato voluto:
  41. [
  42.     {carId:"dc9e722d-4b24-5f6a-82ff-a71f937c62c0",
  43.     userId:7c3ef3d3-f86d-50f9-8b85-b48a40cc772f,
  44.     username:'SabinFad',
  45.     brand:'FERRARI',
  46.     model:'Portofino,
  47.     etc...},
  48.     {etc..}...
  49. ]
Add Comment
Please, Sign In to add comment