-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexamples.json
More file actions
84 lines (82 loc) · 1.76 KB
/
examples.json
File metadata and controls
84 lines (82 loc) · 1.76 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[
{
"description": "Exemplo básico - Lista de eventos do problema",
"events": [
{
"order_id": 1,
"status": "SHIPPED",
"date": "2025-10-15T11:22:17.717Z"
},
{
"order_id": 4,
"status": "IN_TRANSIT",
"date": "2025-10-16T14:26:17.717Z"
},
{
"order_id": 5,
"status": "DELIVERED",
"date": "2025-10-15T14:26:17.717Z"
},
{
"order_id": 8,
"status": "DELIVERED",
"date": "2025-10-15T14:26:17.717Z"
},
{
"order_id": 1,
"status": "DELIVERED",
"date": "2025-10-15T22:34:17.717Z"
},
{
"order_id": 4,
"status": "FAILURE",
"date": "2025-10-16T14:46:17.717Z"
}
]
},
{
"description": "Exemplo - order_id duplicado (deve processar apenas o mais recente)",
"events": [
{
"order_id": 1,
"status": "SHIPPED",
"date": "2025-10-15T11:22:17.717Z"
},
{
"order_id": 1,
"status": "IN_TRANSIT",
"date": "2025-10-15T12:00:00.000Z"
},
{
"order_id": 1,
"status": "DELIVERED",
"date": "2025-10-15T13:00:00.000Z"
}
]
},
{
"description": "Exemplo - Tentativa de alterar status finalizador para não-finalizador (deve ser ignorado)",
"events": [
{
"order_id": 2,
"status": "DELIVERED",
"date": "2025-10-15T10:00:00.000Z"
},
{
"order_id": 2,
"status": "IN_TRANSIT",
"date": "2025-10-15T11:00:00.000Z"
}
]
},
{
"description": "Exemplo - Evento único",
"events": [
{
"order_id": 3,
"status": "SHIPPED",
"date": "2025-10-15T11:22:17.717Z"
}
]
}
]