1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{
"client_name": "Test Client",
"project_name": "Test Project",
"date_range_start": "2025-07-01",
"date_range_end": "2025-07-31",
"generated_date": "2025-08-04",
"invoice_number": "2025-07-001",
"line_items": [
{
"description": "Development work",
"hours": 8.5,
"rate": 150.0,
"amount": 1275.0
},
{
"description": "Code review and testing",
"hours": 2.25,
"rate": 150.0,
"amount": 337.5
}
],
"total_hours": 10.75,
"total_amount": 1612.5,
"consultant_name": "Travis Parker",
"consultant_label": "Software Development",
"consultant_email": "travis.parker@gmail.com",
}
|