A pretty printer for zig
zig
at main 56 lines 1.9 kB view raw
1{ 2 "employee": { 3 "id": "E00001", 4 "name": "Bryan Smith", 5 "position": "Chemical engineer", 6 "department": { 7 "id": "D080", 8 "name": "Incentivize", 9 "manager": { 10 "id": "M2858", 11 "name": "Rebecca Andrews", 12 "contact": { 13 "email": "amanda52@example.net", 14 "phone": "815-823-1247x52270" 15 } 16 } 17 }, 18 "projects": [ 19 { 20 "projectId": "P5216", 21 "projectName": "Multi-tiered discrete Internet solution", 22 "startDate": "2025-05-25", 23 "tasks": [ 24 { 25 "taskId": "T522", 26 "title": "Evolve Best-Of-Breed E-Tailers", 27 "status": "In Progress", 28 "details": { 29 "hoursSpent": 41, 30 "technologiesUsed": [ 31 "Python", 32 "SQL" 33 ], 34 "expectedCompletion": "2025-09-11" 35 } 36 }, 37 { 38 "taskId": "T405", 39 "title": "Empower Cross-Media Users", 40 "status": "In Progress", 41 "details": { 42 "hoursSpent": 41, 43 "technologiesUsed": [ 44 "PyTorch", 45 "JavaScript", 46 "Python", 47 "Scikit-learn" 48 ], 49 "expectedCompletion": "2025-08-17" 50 } 51 } 52 ] 53 } 54 ] 55 } 56}