qualomat_schema 0.1.0

Rust bindings for the *Qual-O-Mat* open data format for the german voting advice tool *Wahl-O-Mat*
Documentation
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
//! **DO NOT MODIFY BY HAND!**  
//! Generated automatically by qualomat_schema_gen.
use serde::{Deserialize, Serialize};
use std::path::PathBuf;
/// Error types.
pub mod error {
    /// Error from a TryFrom or FromStr implementation.
    pub struct ConversionError(std::borrow::Cow<'static, str>);
    impl std::error::Error for ConversionError {}
    impl std::fmt::Display for ConversionError {
        fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
            std::fmt::Display::fmt(&self.0, f)
        }
    }
    impl std::fmt::Debug for ConversionError {
        fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
            std::fmt::Debug::fmt(&self.0, f)
        }
    }
    impl From<&'static str> for ConversionError {
        fn from(value: &'static str) -> Self {
            Self(value.into())
        }
    }
    impl From<String> for ConversionError {
        fn from(value: String) -> Self {
            Self(value.into())
        }
    }
}
///Answer
///
/// <details><summary>JSON schema</summary>
///
/// ```json
///{
///  "description": "Answer",
///  "type": "object",
///  "required": [
///    "id",
///    "message"
///  ],
///  "properties": {
///    "id": {
///      "description": "Unique identifier",
///      "type": "integer",
///      "minimum": 0.0
///    },
///    "message": {
///      "description": "Answer text",
///      "type": "string"
///    }
///  }
///}
/// ```
/// </details>
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct Answer {
    ///Unique identifier
    pub id: u64,
    ///Answer text
    pub message: String,
}
impl From<&Answer> for Answer {
    fn from(value: &Answer) -> Self {
        value.clone()
    }
}
///Category
///
/// <details><summary>JSON schema</summary>
///
/// ```json
///{
///  "description": "Category",
///  "type": "object",
///  "required": [
///    "id",
///    "label"
///  ],
///  "properties": {
///    "id": {
///      "description": "Unique identifier",
///      "type": "integer",
///      "minimum": 0.0
///    },
///    "label": {
///      "description": "Category text",
///      "type": "string"
///    }
///  }
///}
/// ```
/// </details>
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct Category {
    ///Unique identifier
    pub id: u64,
    ///Category text
    pub label: String,
}
impl From<&Category> for Category {
    fn from(value: &Category) -> Self {
        value.clone()
    }
}
///Comment
///
/// <details><summary>JSON schema</summary>
///
/// ```json
///{
///  "description": "Comment",
///  "type": "object",
///  "required": [
///    "id",
///    "text"
///  ],
///  "properties": {
///    "id": {
///      "description": "Unique identifier",
///      "type": "integer",
///      "minimum": 0.0
///    },
///    "text": {
///      "description": "Comment text",
///      "type": "string"
///    }
///  }
///}
/// ```
/// </details>
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct Comment {
    ///Unique identifier
    pub id: u64,
    ///Comment text
    pub text: String,
}
impl From<&Comment> for Comment {
    fn from(value: &Comment) -> Self {
        value.clone()
    }
}
///Election
///
/// <details><summary>JSON schema</summary>
///
/// ```json
///{
///  "description": "Election",
///  "type": "object",
///  "required": [
///    "date",
///    "id",
///    "name",
///    "path"
///  ],
///  "properties": {
///    "date": {
///      "description": "Date the election held place on",
///      "type": "string",
///      "format": "date"
///    },
///    "id": {
///      "description": "Unique identifier",
///      "type": "integer",
///      "minimum": 0.0
///    },
///    "name": {
///      "description": "Election name",
///      "type": "string"
///    },
///    "path": {
///      "description": "The path to the data directory of an election",
///      "type": "string",
///      "pattern": "^data/[0-9]{4}/[a-z]*$",
///      "$comment": "Current path: data/[YEAR]/location"
///    }
///  }
///}
/// ```
/// </details>
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct ElectionListItem {
    ///Date the election held place on
    pub date: chrono::naive::NaiveDate,
    ///Unique identifier
    pub id: u64,
    ///Election name
    pub name: String,
    ///The path to the data directory of an election
    pub path: PathBuf,
}
impl From<&ElectionListItem> for ElectionListItem {
    fn from(value: &ElectionListItem) -> Self {
        value.clone()
    }
}///Overview and info of an election
///
/// <details><summary>JSON schema</summary>
///
/// ```json
///{
///  "title": "Election overview",
///  "description": "Overview and info of an election",
///  "type": "object",
///  "required": [
///    "data_source",
///    "date",
///    "info",
///    "slug",
///    "title"
///  ],
///  "properties": {
///    "data_source": {
///      "description": "URL to the source of the election data",
///      "type": "string",
///      "format": "uri"
///    },
///    "date": {
///      "description": "Date the election held place on",
///      "type": "string",
///      "format": "date"
///    },
///    "info": {
///      "description": "URL to the Wikipedia page of the election",
///      "type": "string",
///      "format": "uri"
///    },
///    "slug": {
///      "description": "Context path / slug of the original Wahl-o-Mat",
///      "type": "string",
///      "format": "uri"
///    },
///    "title": {
///      "description": "Election name",
///      "type": "string"
///    }
///  },
///  "$schema": "http://json-schema.org/draft-07/schema#"
///}
/// ```
/// </details>
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct ElectionOverview {
    ///URL to the source of the election data
    pub data_source: String,
    ///Date the election held place on
    pub date: chrono::naive::NaiveDate,
    ///URL to the Wikipedia page of the election
    pub info: String,
    ///Context path / slug of the original Wahl-o-Mat
    pub slug: String,
    ///Election name
    pub title: String,
}
impl From<&ElectionOverview> for ElectionOverview {
    fn from(value: &ElectionOverview) -> Self {
        value.clone()
    }
}
///Opinion
///
/// <details><summary>JSON schema</summary>
///
/// ```json
///{
///  "description": "Opinion",
///  "type": "object",
///  "required": [
///    "answer",
///    "comment",
///    "id",
///    "party",
///    "statement"
///  ],
///  "properties": {
///    "answer": {
///      "description": "ID representing the party answer",
///      "type": "integer",
///      "minimum": 0.0
///    },
///    "comment": {
///      "description": "ID representing the party comment",
///      "type": [
///        "integer",
///        "null"
///      ],
///      "minimum": 0.0
///    },
///    "id": {
///      "description": "Unique identifier",
///      "type": "integer",
///      "minimum": 0.0
///    },
///    "party": {
///      "description": "ID representing the party",
///      "type": "integer",
///      "minimum": 0.0
///    },
///    "statement": {
///      "description": "ID representing the statement",
///      "type": "integer",
///      "minimum": 0.0
///    }
///  }
///}
/// ```
/// </details>
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct Opinion {
    ///ID representing the party answer
    pub answer: u64,
    ///ID representing the party comment
    pub comment: Option<u64>,
    ///Unique identifier
    pub id: u64,
    ///ID representing the party
    pub party: u64,
    ///ID representing the statement
    pub statement: u64,
}
impl From<&Opinion> for Opinion {
    fn from(value: &Opinion) -> Self {
        value.clone()
    }
}
///Party
///
/// <details><summary>JSON schema</summary>
///
/// ```json
///{
///  "description": "Party",
///  "type": "object",
///  "required": [
///    "id",
///    "longname",
///    "name"
///  ],
///  "properties": {
///    "id": {
///      "description": "Unique identifier",
///      "type": "integer",
///      "minimum": 0.0
///    },
///    "longname": {
///      "description": "Full party name",
///      "type": "string"
///    },
///    "name": {
///      "description": "Short party name",
///      "type": "string"
///    }
///  }
///}
/// ```
/// </details>
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct Party {
    ///Unique identifier
    pub id: u64,
    ///Full party name
    pub longname: String,
    ///Short party name
    pub name: String,
}
impl From<&Party> for Party {
    fn from(value: &Party) -> Self {
        value.clone()
    }
}
///Statement
///
/// <details><summary>JSON schema</summary>
///
/// ```json
///{
///  "description": "Statement",
///  "type": "object",
///  "required": [
///    "category",
///    "id",
///    "label",
///    "text"
///  ],
///  "properties": {
///    "category": {
///      "description": "ID representing the statement category",
///      "type": [
///        "integer",
///        "null"
///      ],
///      "minimum": 0.0
///    },
///    "id": {
///      "description": "Unique identifier",
///      "type": "integer",
///      "minimum": 0.0
///    },
///    "label": {
///      "description": "Short statement text",
///      "type": "string"
///    },
///    "text": {
///      "description": "Full statement text",
///      "type": "string"
///    }
///  }
///}
/// ```
/// </details>
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct Statement {
    ///ID representing the statement category
    pub category: Option<u64>,
    ///Unique identifier
    pub id: u64,
    ///Short statement text
    pub label: String,
    ///Full statement text
    pub text: String,
}
impl From<&Statement> for Statement {
    fn from(value: &Statement) -> Self {
        value.clone()
    }
}