1.Change summary
S.NO |
Date Of Change |
Change Description |
Author |
1. |
March 11, 2022 |
Initial Commit |
Tej |
2.Interface Definition (..! need to decide required or not)
S.NO |
Date Of Change |
Open API |
Change Description |
|
|
|
|
3.API Business Name
vl-sls-component-csv-to-json
4.Overview
4.1.interaction Diagram:
4.2.Description:
- This API will triggered by the request containing data in CSV formatted data
- Then it processes the request data then converts into JSON.
5.Sample Messages:
5.1.Request:
`Make*Model*Year*Specifications.Mileage*Specifications.Trim
Nissan*Murano*2013*7,106*
BMW*X5*2014*3,287*M`
5.2.Response:
[
{
Make: 'Nissan',
Model: ' Murano ',
Year: '2013',
Specifications: {
Mileage: '7,106',
Trim: ''
}
},
{
Make: 'BMW',
Model: 'X5',
Year: '2014',
Specifications: {
Mileage: '3,287',
Trim: 'M'
}
}];