Skip to content

tlw44f/JSON-transformer-question

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Step 1: Fetch the data from the APIService fetchData function (returns a promise)
Step 2: Return the array of customerRecords, apply all root properties to the record objects

  • e.g. [{ customerEmail, VIN, serviceDate, shopName, shopStatus, companyCode}, ...]

Step 3. Remove customers that are in an 'opt out' list using the OptOutService isInOptOutList function
Step 4: Return only service records done within last 30 days
Step 5. Alphabetize all contents of array objects

Sample input json:

{
shopName: 'A Test Company',
shopStatus: 'LIVE',
companyCode: 'TESTCODE',
customerRecords: [
{
customerEmail: '[email protected]',
VIN: 'TestVIN1',
serviceDate: "2019-06-12T17:00:00.000Z"
},
{
customerEmail: '[email protected]',
VIN: 'TestVIN2',
serviceDate: "2019-06-21T17:00:00.000Z"
},
{
customerEmail: '[email protected]',
VIN: 'TestVIN3',
serviceDate: "2019-06-17T17:00:00.000Z"
},
{
customerEmail: '[email protected]',
VIN: 'TestVIN4',
serviceDate: "2019-03-07T17:00:00.000Z"
}
]
}

Sample output json (Exercise 1):
[
{
customerEmail: '[email protected]',
VIN: 'TestVIN1',
serviceDate: "2019-06-12T17:00:00.000Z",
shopName: 'A Test Company',
shopStatus: 'LIVE',
companyCode: 'TESTCODE'
},
{
customerEmail: '[email protected]',
VIN: 'TestVIN2',
serviceDate: "2019-06-21T17:00:00.000Z",
shopName: 'A Test Company',
shopStatus: 'LIVE',
companyCode: 'TESTCODE'
},
{
customerEmail: '[email protected]',
VIN: 'TestVIN3',
serviceDate: "2019-06-17T17:00:00.000Z",
shopName: 'A Test Company',
shopStatus: 'LIVE',
companyCode: 'TESTCODE'
},
{
customerEmail: '[email protected]',
VIN: 'TestVIN4',
serviceDate: "2019-03-07T17:00:00.000Z",
shopName: 'A Test Company',
shopStatus: 'LIVE',
companyCode: 'TESTCODE'
}
]

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published