|
| 1 | +[ |
| 2 | + { |
| 3 | + "id": "INV-0001", |
| 4 | + "file_url": "https://fake-invoices.example.com/fake/INV-0001.pdf", |
| 5 | + "issue_date": "2025-04-01", |
| 6 | + "description": "Invoice for technical consulting services", |
| 7 | + "services": [ |
| 8 | + { "name": "Technical consulting", "price": 1500.0 }, |
| 9 | + { "name": "Remote support", "price": 300.0 } |
| 10 | + ], |
| 11 | + "total_amount": 1800.0 |
| 12 | + }, |
| 13 | + { |
| 14 | + "id": "INV-0002", |
| 15 | + "file_url": "https://fake-invoices.example.com/fake/INV-0002.pdf", |
| 16 | + "issue_date": "2025-04-03", |
| 17 | + "description": "Enterprise software license sale", |
| 18 | + "services": [{ "name": "ERP software license", "price": 5000.0 }], |
| 19 | + "total_amount": 5000.0 |
| 20 | + }, |
| 21 | + { |
| 22 | + "id": "INV-0003", |
| 23 | + "file_url": "https://fake-invoices.example.com/fake/INV-0003.pdf", |
| 24 | + "issue_date": "2025-04-05", |
| 25 | + "description": "UX/UI design services", |
| 26 | + "services": [ |
| 27 | + { "name": "UX design", "price": 1200.0 }, |
| 28 | + { "name": "UI design", "price": 1000.0 } |
| 29 | + ], |
| 30 | + "total_amount": 2200.0 |
| 31 | + }, |
| 32 | + { |
| 33 | + "id": "INV-0004", |
| 34 | + "file_url": "https://fake-invoices.example.com/fake/INV-0004.pdf", |
| 35 | + "issue_date": "2025-04-07", |
| 36 | + "description": "CRM system implementation", |
| 37 | + "services": [ |
| 38 | + { "name": "CRM setup", "price": 2500.0 }, |
| 39 | + { "name": "User training", "price": 700.0 } |
| 40 | + ], |
| 41 | + "total_amount": 3200.0 |
| 42 | + }, |
| 43 | + { |
| 44 | + "id": "INV-0005", |
| 45 | + "file_url": "https://fake-invoices.example.com/fake/INV-0005.pdf", |
| 46 | + "issue_date": "2025-04-09", |
| 47 | + "description": "Monthly technical support", |
| 48 | + "services": [ |
| 49 | + { "name": "Preventive maintenance", "price": 400.0 }, |
| 50 | + { "name": "Phone support", "price": 200.0 } |
| 51 | + ], |
| 52 | + "total_amount": 600.0 |
| 53 | + }, |
| 54 | + { |
| 55 | + "id": "INV-0006", |
| 56 | + "file_url": "https://fake-invoices.example.com/fake/INV-0006.pdf", |
| 57 | + "issue_date": "2025-04-11", |
| 58 | + "description": "IT audit services", |
| 59 | + "services": [{ "name": "Security audit", "price": 1800.0 }], |
| 60 | + "total_amount": 1800.0 |
| 61 | + }, |
| 62 | + { |
| 63 | + "id": "INV-0007", |
| 64 | + "file_url": "https://fake-invoices.example.com/fake/INV-0007.pdf", |
| 65 | + "issue_date": "2025-04-13", |
| 66 | + "description": "Mobile app development", |
| 67 | + "services": [ |
| 68 | + { "name": "Android development", "price": 3000.0 }, |
| 69 | + { "name": "iOS development", "price": 3000.0 } |
| 70 | + ], |
| 71 | + "total_amount": 6000.0 |
| 72 | + }, |
| 73 | + { |
| 74 | + "id": "INV-0008", |
| 75 | + "file_url": "https://fake-invoices.example.com/fake/INV-0008.pdf", |
| 76 | + "issue_date": "2025-04-15", |
| 77 | + "description": "Network equipment sales", |
| 78 | + "services": [ |
| 79 | + { "name": "Business router", "price": 800.0 }, |
| 80 | + { "name": "Managed switch", "price": 600.0 } |
| 81 | + ], |
| 82 | + "total_amount": 1400.0 |
| 83 | + }, |
| 84 | + { |
| 85 | + "id": "INV-0009", |
| 86 | + "file_url": "https://fake-invoices.example.com/fake/INV-0009.pdf", |
| 87 | + "issue_date": "2025-04-17", |
| 88 | + "description": "Annual subscription renewal", |
| 89 | + "services": [{ "name": "SaaS platform subscription", "price": 1200.0 }], |
| 90 | + "total_amount": 1200.0 |
| 91 | + }, |
| 92 | + { |
| 93 | + "id": "INV-0010", |
| 94 | + "file_url": "https://fake-invoices.example.com/fake/INV-0010.pdf", |
| 95 | + "issue_date": "2025-04-19", |
| 96 | + "description": "Specialized technical support hours", |
| 97 | + "services": [{ "name": "Specialized support (10h)", "price": 1000.0 }], |
| 98 | + "total_amount": 1000.0 |
| 99 | + }, |
| 100 | + { |
| 101 | + "id": "INV-0011", |
| 102 | + "file_url": "https://fake-invoices.example.com/fake/INV-0011.pdf", |
| 103 | + "issue_date": "2025-04-20", |
| 104 | + "description": "Business lunch with client", |
| 105 | + "services": [{ "name": "Lunch at La Terraza Bistro", "price": 85.0 }], |
| 106 | + "total_amount": 85.0 |
| 107 | + }, |
| 108 | + { |
| 109 | + "id": "INV-0012", |
| 110 | + "file_url": "https://fake-invoices.example.com/fake/INV-0012.pdf", |
| 111 | + "issue_date": "2025-04-21", |
| 112 | + "description": "Hotel accommodation during client visit", |
| 113 | + "services": [{ "name": "3-night stay at Hotel Central", "price": 450.0 }], |
| 114 | + "total_amount": 450.0 |
| 115 | + }, |
| 116 | + { |
| 117 | + "id": "INV-0013", |
| 118 | + "file_url": "https://fake-invoices.example.com/fake/INV-0013.pdf", |
| 119 | + "issue_date": "2025-04-22", |
| 120 | + "description": "Team-building activity", |
| 121 | + "services": [{ "name": "Escape room experience for team", "price": 200.0 }], |
| 122 | + "total_amount": 200.0 |
| 123 | + }, |
| 124 | + { |
| 125 | + "id": "INV-0014", |
| 126 | + "file_url": "https://fake-invoices.example.com/fake/INV-0014.pdf", |
| 127 | + "issue_date": "2025-04-23", |
| 128 | + "description": "Local transportation for conference", |
| 129 | + "services": [{ "name": "Taxi and metro rides", "price": 60.0 }], |
| 130 | + "total_amount": 60.0 |
| 131 | + }, |
| 132 | + { |
| 133 | + "id": "INV-0015", |
| 134 | + "file_url": "https://fake-invoices.example.com/fake/INV-0015.pdf", |
| 135 | + "issue_date": "2025-04-24", |
| 136 | + "description": "Client entertainment dinner", |
| 137 | + "services": [{ "name": "Dinner at El Gourmet", "price": 130.0 }], |
| 138 | + "total_amount": 130.0 |
| 139 | + } |
| 140 | +] |
0 commit comments