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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
// Copyright 2026 Mahmoud Harmouch.
//
// Licensed under the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//! # API Response Types
//!
//! This module contains the deserialisation types for every response returned by
//! the ARC-AGI-3 REST API.
//!
//! ## Response Types
//!
//! | Type | Endpoint | Description |
//! |------|----------|-------------|
//! | [`ScorecardOpenResponse`] | `POST /api/scorecard/open` | Card ID from a new scorecard |
//! | [`AnonKeyResponse`] | `GET /api/games/anonkey` | Anonymous API key |
//! | [`EnvironmentScore`] | embedded | Per-game score with level details |
//! | [`EnvironmentScoreList`] | embedded | All runs for a single game |
//! | [`EnvironmentScorecard`] | scorecard endpoints | Full scored scorecard |
//! | [`ErrorResponse`] | all | Structured API error body |
//!
//! ## See Also
//!
//! - [ARC-AGI-3 Reference](https://arcprize.org/arc-agi/3)
use crateGameState;
use ;
use Value;
/// Response body from `POST /api/scorecard/open`.
///
/// # Example
/// ```rust
/// use arc_agi_rs::response::ScorecardOpenResponse;
///
/// let json = r#"{"card_id":"sc-abc123"}"#;
/// let resp: ScorecardOpenResponse = serde_json::from_str(json).unwrap();
/// assert_eq!(resp.card_id, "sc-abc123");
/// ```
/// Response body from `GET /api/games/anonkey`.
///
/// # Example
/// ```rust
/// use arc_agi_rs::response::AnonKeyResponse;
///
/// let json = r#"{"api_key":"anon-xyz"}"#;
/// let resp: AnonKeyResponse = serde_json::from_str(json).unwrap();
/// assert_eq!(resp.api_key, "anon-xyz");
/// ```
/// Structured error body returned by the API on failure.
///
/// # Example
/// ```rust
/// use arc_agi_rs::response::ErrorResponse;
///
/// let json = r#"{"error":"SERVER_ERROR","message":"game not found"}"#;
/// let resp: ErrorResponse = serde_json::from_str(json).unwrap();
/// assert_eq!(resp.error, "SERVER_ERROR");
/// ```
/// Per-game score for a single play-through of one environment.
///
/// Embedded inside [`EnvironmentScoreList`] and [`EnvironmentScorecard`].
/// All play-through scores for a single game environment.
///
/// The `score` field reflects the best run; `actions` is the cumulative total.
/// Full scored scorecard returned by scorecard endpoints.
///
/// Returned by [`crate::client::Client::get_scorecard`] and
/// [`crate::client::Client::close_scorecard`].
///
/// # Example
/// ```rust
/// use arc_agi_rs::response::EnvironmentScorecard;
///
/// let json = r#"{
/// "card_id": "sc-abc",
/// "score": 0.0,
/// "environments": [],
/// "tags_scores": []
/// }"#;
/// let card: EnvironmentScorecard = serde_json::from_str(json).unwrap();
/// assert_eq!(card.card_id, "sc-abc");
/// ```
// Copyright 2026 Mahmoud Harmouch.
//
// Licensed under the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.