Created
April 9, 2020 13:17
-
-
Save tisuchi/803e4599972509240d1e9dacac01e18d to your computer and use it in GitHub Desktop.
Equipment Store Data in JSON Format
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"equipments": [ | |
{ | |
"equipment_owner_id": 1, | |
"state_name":"Kishoreganj", | |
"value":4000, | |
"deductible_amount":500, | |
"premium_amount":750, | |
"premium_billing":12, | |
"description":"Its just a description", | |
"serial_number":123456789, | |
"location_street":"Uttara", | |
"location_unit_number":121, | |
"location_zip":1230, | |
"location_city":"Dhaka", | |
"location_state_name":"Dhaka", | |
"lien": { | |
"equipment_id":1, | |
"lien_name":"Ulises Koch", | |
"lien_street":"Jacinthe Track", | |
"lien_unit_number":9, | |
"lien_zip":1230, | |
"lien_city":"Dhaka", | |
"lien_state_name":"Dhaka" | |
} | |
}, | |
{ | |
"equipment_owner_id": 1, | |
"state_name":"Barisal", | |
"value":4000, | |
"deductible_amount":500, | |
"premium_amount":750, | |
"premium_billing":12, | |
"description":"Its just a description", | |
"serial_number":123456789, | |
"location_street":"Uttara", | |
"location_unit_number":121, | |
"location_zip":1230, | |
"location_city":"Dhaka", | |
"location_state_name":"Dhaka", | |
"lien": { | |
"equipment_id":1, | |
"lien_name":"Ulises Koch", | |
"lien_street":"Jacinthe Track", | |
"lien_unit_number":9, | |
"lien_zip":1230, | |
"lien_city":"Dhaka", | |
"lien_state_name":"Dhaka" | |
} | |
} | |
], | |
"equipment_owner": { | |
"first_name":"Tajul", | |
"last_name":"Islam", | |
"location_street":"Pat Crossroad", | |
"location_unit_number":766, | |
"location_zip":"56088", | |
"location_city":"Stiedemannland", | |
"location_state_name":"Tennessee", | |
"email": "[email protected]" | |
}, | |
"payment_information":{ | |
"equipment_owner_id":10000, | |
"bank_name":"Brac Bank", | |
"bank_account_number":123456789, | |
"bank_routing_number":987654, | |
"total":500, | |
"payment_terms":"This is the terms and condition." | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment