https://github.com/drivly/100days.do
100 Days of Drivly Open
https://github.com/drivly/100days.do
Last synced: 3 months ago
JSON representation
100 Days of Drivly Open
- Host: GitHub
- URL: https://github.com/drivly/100days.do
- Owner: drivly
- License: mit
- Created: 2022-09-28T10:38:54.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-01T16:26:13.000Z (over 2 years ago)
- Last Synced: 2025-02-16T15:16:53.848Z (4 months ago)
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 100 Days of Drivly Open
## Day 1: [Lodash.do](https://lodash.do)
Easily Transform Data Through a Simple Web API
For example, if you have a large and complex JSON document that's not in your preferred format:
```json
{
"Customer": [
{
"fax": "030-0123456",
"city": "Berlin",
"email": null,
"phone": "030-3456789",
"mobile": null,
"region": null,
"address": "Obere Str. 0123",
"country": "Germany",
"entityId": 1,
"postalCode": "10092",
"companyName": "Customer NRZBB",
"contactName": "Allen, Michael",
"contactTitle": "Sales Representative"
},
]
}
```You could easily restructure and re-organize it:
```json
{
"Customer/NRZBB": {
"fax": "030-0123456",
"city": "Berlin",
"email": null,
"phone": "030-3456789",
"mobile": null,
"region": null,
"address": "Obere Str. 0123",
"country": "Germany",
"entityId": 1,
"postalCode": "10092",
"companyName": "Customer NRZBB",
"contactName": "Allen, Michael",
"contactTitle": "Sales Representative"
}
}
```