73 lines
3.1 KiB
JavaScript
73 lines
3.1 KiB
JavaScript
const ApiResponse = (req, res) => {
|
|
res.statusCode = 200;
|
|
res.json({
|
|
"value": [
|
|
{
|
|
"@odata.etag": 'W/"547952"',
|
|
"lpaname": "Vale of Glamorgan Council",
|
|
"accountid": "56e7ef63-7e64-eb11-aaba-00224800be9c",
|
|
"address1": "21 Courtenay Road",
|
|
"town": "Cardiff",
|
|
"postcode": "CF24 0JL",
|
|
"reference": "CAS-00009-W8N6W4",
|
|
"appellantApplicant": "Mrs Denise Williams",
|
|
"pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue":
|
|
"Planning Appeal - S78",
|
|
"pinswg_appealcasetype": "846040000",
|
|
"statuscode@OData.Community.Display.V1.FormattedValue":
|
|
"In Progress",
|
|
"statuscode": "1",
|
|
},
|
|
{
|
|
"@odata.etag": 'W/"547952"',
|
|
"lpaname": "Bridgend CBC",
|
|
"accountid": "56e7ef63-7e64-eb11-aaba-00224800be9c",
|
|
"address1": "17 Colin Way",
|
|
"town": "Cardiff",
|
|
"postcode": "CF24 0JL",
|
|
"reference": "CAS-00010-J9W6L5",
|
|
"appellantApplicant": "Mrs Denise Williams",
|
|
"pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue":
|
|
"Planning Appeal - S78",
|
|
"pinswg_appealcasetype": "846040000",
|
|
"statuscode@OData.Community.Display.V1.FormattedValue":
|
|
"In Progress",
|
|
"statuscode": "1",
|
|
},
|
|
{
|
|
"@odata.etag": 'W/"547952"',
|
|
"lpaname": "Cardiff County Council Planning (A)",
|
|
"accountid": "56e7ef63-7e64-eb11-aaba-00224800be9c",
|
|
"address1": "120 Severn Grove",
|
|
"town": "Cardiff",
|
|
"postcode": "CF24 0JL",
|
|
"reference": "CAS-00011-K1N0J8",
|
|
"appellantApplicant": "Mrs Denise Williams",
|
|
"pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue":
|
|
"Planning Conditions - S73 + S79",
|
|
"pinswg_appealcasetype": "846040001",
|
|
"statuscode@OData.Community.Display.V1.FormattedValue":
|
|
"In Progress",
|
|
"statuscode": "1",
|
|
},
|
|
{
|
|
"@odata.etag": 'W/"547952"',
|
|
"lpaname": "Cardiff County Council Planning",
|
|
"accountid": "56e7ef63-7e64-eb11-aaba-00224800be9c",
|
|
"address1": "25 Merches Gardens",
|
|
"town": "Cardiff",
|
|
"postcode": "CF24 0JL",
|
|
"reference": "CAS-00012-D9W6S8",
|
|
"appellantApplicant": "Mrs Denise Williams",
|
|
"pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue":
|
|
"Planning Appeal - S78",
|
|
"pinswg_appealcasetype": "846040000",
|
|
"statuscode@OData.Community.Display.V1.FormattedValue":
|
|
"In Progress",
|
|
"statuscode": "1",
|
|
},
|
|
],
|
|
});
|
|
};
|
|
export default ApiResponse;
|