ferrex-model 0.1.2-alpha

Shared data models for the Ferrex media platform
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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
use crate::image::MediaImages;
use std::fmt;
use std::path::PathBuf;
use uuid::Uuid;

use super::{ids::LibraryId, library::LibraryType};

#[derive(Debug, Clone, PartialEq, Default)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
    feature = "rkyv",
    derive(rkyv::Archive, rkyv::Serialize, rkyv::Deserialize)
)]
#[cfg_attr(feature = "rkyv", rkyv(derive(Debug, PartialEq, Eq)))]
pub struct ReleaseDateEntry {
    pub certification: Option<String>,
    pub release_date: Option<String>,
    pub release_type: Option<i32>,
    pub note: Option<String>,
    pub iso_639_1: Option<String>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub descriptors: Vec<String>,
}

#[derive(Debug, Clone, PartialEq, Default)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
    feature = "rkyv",
    derive(rkyv::Archive, rkyv::Serialize, rkyv::Deserialize)
)]
#[cfg_attr(feature = "rkyv", rkyv(derive(Debug, PartialEq, Eq)))]
pub struct ReleaseDatesByCountry {
    pub iso_3166_1: String,
    #[cfg_attr(feature = "serde", serde(default))]
    pub release_dates: Vec<ReleaseDateEntry>,
}

#[derive(Debug, Clone, PartialEq, Default)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
    feature = "rkyv",
    derive(rkyv::Archive, rkyv::Serialize, rkyv::Deserialize)
)]
#[cfg_attr(feature = "rkyv", rkyv(derive(Debug, PartialEq, Eq)))]
pub struct ContentRating {
    pub iso_3166_1: String,
    pub rating: Option<String>,
    pub rating_system: Option<String>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub descriptors: Vec<String>,
}

#[derive(Debug, Clone, PartialEq, Default)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
    feature = "rkyv",
    derive(rkyv::Archive, rkyv::Serialize, rkyv::Deserialize)
)]
#[cfg_attr(feature = "rkyv", rkyv(derive(Debug, PartialEq, Eq)))]
pub struct AlternativeTitle {
    pub title: String,
    pub iso_3166_1: Option<String>,
    pub title_type: Option<String>,
}

#[derive(Debug, Clone, PartialEq, Default)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
    feature = "rkyv",
    derive(rkyv::Archive, rkyv::Serialize, rkyv::Deserialize)
)]
#[cfg_attr(feature = "rkyv", rkyv(derive(Debug, PartialEq, Eq)))]
pub struct Translation {
    pub iso_3166_1: String,
    pub iso_639_1: String,
    pub name: Option<String>,
    pub english_name: Option<String>,
    pub title: Option<String>,
    pub overview: Option<String>,
    pub homepage: Option<String>,
    pub tagline: Option<String>,
}

#[derive(Debug, Clone, PartialEq, Default)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
    feature = "rkyv",
    derive(rkyv::Archive, rkyv::Serialize, rkyv::Deserialize)
)]
#[cfg_attr(feature = "rkyv", rkyv(derive(Debug, PartialEq, Eq)))]
pub struct CollectionInfo {
    pub id: u64,
    pub name: String,
    pub poster_path: Option<String>,
    pub backdrop_path: Option<String>,
}

#[derive(Debug, Clone, PartialEq, Default)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
    feature = "rkyv",
    derive(rkyv::Archive, rkyv::Serialize, rkyv::Deserialize)
)]
#[cfg_attr(feature = "rkyv", rkyv(derive(Debug, PartialEq, Eq, Hash)))]
pub struct Keyword {
    pub id: u64,
    pub name: String,
}

#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
    feature = "rkyv",
    derive(rkyv::Archive, rkyv::Serialize, rkyv::Deserialize)
)]
#[cfg_attr(feature = "rkyv", rkyv(derive(Debug, PartialEq, Eq)))]
pub struct EpisodeGroupMembership {
    pub id: String,
    pub name: String,
    pub description: Option<String>,
    pub group_type: Option<String>,
}

#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
    feature = "rkyv",
    derive(rkyv::Archive, rkyv::Serialize, rkyv::Deserialize)
)]
#[cfg_attr(feature = "rkyv", rkyv(derive(Debug, PartialEq, Eq)))]
pub struct GenreInfo {
    pub id: u64,
    pub name: String,
}

#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
    feature = "rkyv",
    derive(rkyv::Archive, rkyv::Serialize, rkyv::Deserialize)
)]
#[cfg_attr(feature = "rkyv", rkyv(derive(Debug, PartialEq, Eq)))]
pub struct ProductionCompany {
    pub id: u64,
    pub name: String,
    pub origin_country: Option<String>,
}

#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
    feature = "rkyv",
    derive(rkyv::Archive, rkyv::Serialize, rkyv::Deserialize)
)]
#[cfg_attr(feature = "rkyv", rkyv(derive(Debug, PartialEq, Eq)))]
pub struct ProductionCountry {
    pub iso_3166_1: String,
    pub name: String,
}

#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
    feature = "rkyv",
    derive(rkyv::Archive, rkyv::Serialize, rkyv::Deserialize)
)]
#[cfg_attr(feature = "rkyv", rkyv(derive(Debug, PartialEq, Eq)))]
pub struct SpokenLanguage {
    pub iso_639_1: Option<String>,
    pub name: String,
}

#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
    feature = "rkyv",
    derive(rkyv::Archive, rkyv::Serialize, rkyv::Deserialize)
)]
#[cfg_attr(feature = "rkyv", rkyv(derive(Debug, PartialEq, Eq)))]
pub struct NetworkInfo {
    pub id: u64,
    pub name: String,
    pub origin_country: Option<String>,
}

#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
    feature = "rkyv",
    derive(rkyv::Archive, rkyv::Serialize, rkyv::Deserialize)
)]
#[cfg_attr(feature = "rkyv", rkyv(derive(Debug, PartialEq, Eq)))]
pub struct RelatedMediaRef {
    pub tmdb_id: u64,
    pub title: Option<String>,
}

#[derive(Debug, Clone, PartialEq, Eq, Hash, Default)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
    feature = "rkyv",
    derive(rkyv::Archive, rkyv::Serialize, rkyv::Deserialize)
)]
#[cfg_attr(feature = "rkyv", rkyv(derive(Debug, PartialEq, Eq, Hash)))]
pub struct PersonExternalIds {
    pub imdb_id: Option<String>,
    pub facebook_id: Option<String>,
    pub instagram_id: Option<String>,
    pub twitter_id: Option<String>,
    pub wikidata_id: Option<String>,
    pub tiktok_id: Option<String>,
    pub youtube_id: Option<String>,
}

#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
    feature = "rkyv",
    derive(rkyv::Archive, rkyv::Serialize, rkyv::Deserialize)
)]
#[cfg_attr(feature = "rkyv", rkyv(derive(Debug, PartialEq, Eq)))]
pub enum TmdbDetails {
    Movie(EnhancedMovieDetails),
    Series(EnhancedSeriesDetails),
    Season(SeasonDetails),
    Episode(EpisodeDetails),
}

/// Enhanced metadata that includes images, credits, and additional information
#[derive(Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
    feature = "rkyv",
    derive(rkyv::Archive, rkyv::Serialize, rkyv::Deserialize)
)]
#[cfg_attr(feature = "rkyv", rkyv(derive(Debug, PartialEq, Eq)))]
pub struct EnhancedMovieDetails {
    // Basic details
    pub id: u64,
    pub title: String,
    pub original_title: Option<String>,
    pub overview: Option<String>,
    pub release_date: Option<String>,
    pub runtime: Option<u32>,
    pub vote_average: Option<f32>,
    pub vote_count: Option<u32>,
    pub popularity: Option<f32>,
    pub content_rating: Option<String>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub content_ratings: Vec<ContentRating>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub release_dates: Vec<ReleaseDatesByCountry>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub genres: Vec<GenreInfo>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub spoken_languages: Vec<SpokenLanguage>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub production_companies: Vec<ProductionCompany>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub production_countries: Vec<ProductionCountry>,
    pub homepage: Option<String>,
    pub status: Option<String>,
    pub tagline: Option<String>,
    pub budget: Option<u64>,
    pub revenue: Option<u64>,

    // Media assets
    pub poster_path: Option<String>,
    pub backdrop_path: Option<String>,
    pub logo_path: Option<String>,
    /// Primary poster image variant id (`tmdb_image_variants.id`).
    pub primary_poster_iid: Option<uuid::Uuid>,
    /// Primary backdrop image variant id (`tmdb_image_variants.id`).
    #[cfg_attr(feature = "serde", serde(default))]
    pub primary_backdrop_iid: Option<uuid::Uuid>,
    pub images: MediaImages,

    // Credits
    pub cast: Vec<CastMember>,
    pub crew: Vec<CrewMember>,

    // Additional
    #[cfg_attr(feature = "serde", serde(default))]
    pub videos: Vec<Video>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub keywords: Vec<Keyword>,
    pub external_ids: ExternalIds,
    #[cfg_attr(feature = "serde", serde(default))]
    pub alternative_titles: Vec<AlternativeTitle>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub translations: Vec<Translation>,
    pub collection: Option<CollectionInfo>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub recommendations: Vec<RelatedMediaRef>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub similar: Vec<RelatedMediaRef>,
}

#[derive(Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
    feature = "rkyv",
    derive(rkyv::Archive, rkyv::Serialize, rkyv::Deserialize)
)]
#[cfg_attr(feature = "rkyv", rkyv(derive(Debug, PartialEq, Eq)))]
pub struct EnhancedSeriesDetails {
    // Basic details
    pub id: u64,
    pub name: String,
    pub original_name: Option<String>,
    pub overview: Option<String>,
    pub first_air_date: Option<String>,
    pub last_air_date: Option<String>,
    pub number_of_seasons: Option<u16>,
    pub number_of_episodes: Option<u16>,
    pub available_seasons: Option<u16>,
    pub available_episodes: Option<u16>,
    pub vote_average: Option<f32>,
    pub vote_count: Option<u32>,
    pub popularity: Option<f32>,
    pub content_rating: Option<String>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub content_ratings: Vec<ContentRating>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub release_dates: Vec<ReleaseDatesByCountry>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub genres: Vec<GenreInfo>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub networks: Vec<NetworkInfo>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub origin_countries: Vec<String>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub spoken_languages: Vec<SpokenLanguage>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub production_companies: Vec<ProductionCompany>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub production_countries: Vec<ProductionCountry>,
    pub homepage: Option<String>,
    pub status: Option<String>,
    pub tagline: Option<String>,
    pub in_production: Option<bool>,

    // Media assets
    pub poster_path: Option<String>,
    pub backdrop_path: Option<String>,
    pub logo_path: Option<String>,
    /// Primary poster image variant id (`tmdb_image_variants.id`).
    #[cfg_attr(feature = "serde", serde(default))]
    pub primary_poster_iid: Option<uuid::Uuid>,
    /// Primary backdrop image variant id (`tmdb_image_variants.id`).
    #[cfg_attr(feature = "serde", serde(default))]
    pub primary_backdrop_iid: Option<uuid::Uuid>,
    pub images: MediaImages,

    // Credits
    pub cast: Vec<CastMember>,
    pub crew: Vec<CrewMember>,

    // Additional
    #[cfg_attr(feature = "serde", serde(default))]
    pub videos: Vec<Video>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub keywords: Vec<Keyword>,
    pub external_ids: ExternalIds,
    #[cfg_attr(feature = "serde", serde(default))]
    pub alternative_titles: Vec<AlternativeTitle>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub translations: Vec<Translation>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub episode_groups: Vec<EpisodeGroupMembership>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub recommendations: Vec<RelatedMediaRef>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub similar: Vec<RelatedMediaRef>,
}

#[derive(Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
    feature = "rkyv",
    derive(rkyv::Archive, rkyv::Serialize, rkyv::Deserialize)
)]
#[cfg_attr(feature = "rkyv", rkyv(derive(Debug, PartialEq, Eq)))]
pub struct SeasonDetails {
    pub id: u64,
    pub season_number: u16,
    pub name: String,
    pub overview: Option<String>,
    pub air_date: Option<String>,
    pub episode_count: u16,
    pub poster_path: Option<String>,
    /// Primary season poster image variant id (`tmdb_image_variants.id`).
    #[cfg_attr(feature = "serde", serde(default))]
    pub primary_poster_iid: Option<uuid::Uuid>,
    pub runtime: Option<u32>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub external_ids: ExternalIds,
    #[cfg_attr(feature = "serde", serde(default))]
    pub images: MediaImages,
    #[cfg_attr(feature = "serde", serde(default))]
    pub videos: Vec<Video>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub keywords: Vec<Keyword>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub translations: Vec<Translation>,
}

#[derive(Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
    feature = "rkyv",
    derive(rkyv::Archive, rkyv::Serialize, rkyv::Deserialize)
)]
#[cfg_attr(feature = "rkyv", rkyv(derive(Debug, PartialEq, Eq)))]
pub struct EpisodeDetails {
    pub id: u64,
    pub episode_number: u16,
    pub season_number: u16,
    pub name: String,
    pub overview: Option<String>,
    pub air_date: Option<String>,
    pub runtime: Option<u32>,
    pub still_path: Option<String>,
    /// Primary episode still image variant id (`tmdb_image_variants.id`).
    #[cfg_attr(feature = "serde", serde(default))]
    pub primary_still_iid: Option<uuid::Uuid>,
    pub vote_average: Option<f32>,
    pub vote_count: Option<u32>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub production_code: Option<String>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub external_ids: ExternalIds,
    #[cfg_attr(feature = "serde", serde(default))]
    pub images: MediaImages,
    #[cfg_attr(feature = "serde", serde(default))]
    pub videos: Vec<Video>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub keywords: Vec<Keyword>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub translations: Vec<Translation>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub guest_stars: Vec<CastMember>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub crew: Vec<CrewMember>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub content_ratings: Vec<ContentRating>,
}

impl fmt::Debug for EnhancedMovieDetails {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_struct("EnhancedMovieDetails")
            .field("id", &self.id)
            .field("title", &self.title)
            .field("release_date", &self.release_date)
            .field("runtime", &self.runtime)
            .field("vote_average", &self.vote_average)
            .field("vote_count", &self.vote_count)
            .field("popularity", &self.popularity)
            .field("content_rating", &self.content_rating)
            .field("collection", &self.collection.as_ref().map(|c| &c.name))
            .field("genre_count", &self.genres.len())
            .field("spoken_language_count", &self.spoken_languages.len())
            .field("production_company_count", &self.production_companies.len())
            .field("production_country_count", &self.production_countries.len())
            .field("cast_count", &self.cast.len())
            .field("crew_count", &self.crew.len())
            .field("video_count", &self.videos.len())
            .field("keyword_count", &self.keywords.len())
            .field("alternative_title_count", &self.alternative_titles.len())
            .field("translation_count", &self.translations.len())
            .field("recommendation_count", &self.recommendations.len())
            .field("similar_count", &self.similar.len())
            .field("images", &self.images)
            .finish()
    }
}

impl fmt::Debug for EnhancedSeriesDetails {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_struct("EnhancedSeriesDetails")
            .field("id", &self.id)
            .field("name", &self.name)
            .field("first_air_date", &self.first_air_date)
            .field("last_air_date", &self.last_air_date)
            .field("season_count", &self.number_of_seasons)
            .field("episode_count", &self.number_of_episodes)
            .field("vote_average", &self.vote_average)
            .field("vote_count", &self.vote_count)
            .field("popularity", &self.popularity)
            .field("content_rating", &self.content_rating)
            .field("genre_count", &self.genres.len())
            .field("network_count", &self.networks.len())
            .field("origin_country_count", &self.origin_countries.len())
            .field("spoken_language_count", &self.spoken_languages.len())
            .field("production_company_count", &self.production_companies.len())
            .field("production_country_count", &self.production_countries.len())
            .field("cast_count", &self.cast.len())
            .field("crew_count", &self.crew.len())
            .field("video_count", &self.videos.len())
            .field("keyword_count", &self.keywords.len())
            .field("alternative_title_count", &self.alternative_titles.len())
            .field("translation_count", &self.translations.len())
            .field("episode_group_count", &self.episode_groups.len())
            .field("recommendation_count", &self.recommendations.len())
            .field("similar_count", &self.similar.len())
            .field("images", &self.images)
            .finish()
    }
}

impl fmt::Debug for SeasonDetails {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        let has_external_ids = self.external_ids != ExternalIds::default();
        f.debug_struct("SeasonDetails")
            .field("id", &self.id)
            .field("season_number", &self.season_number)
            .field("episode_count", &self.episode_count)
            .field("runtime", &self.runtime)
            .field("air_date", &self.air_date)
            .field("poster_path", &self.poster_path)
            .field("has_external_ids", &has_external_ids)
            .field("images", &self.images)
            .field("video_count", &self.videos.len())
            .field("keyword_count", &self.keywords.len())
            .field("translation_count", &self.translations.len())
            .finish()
    }
}

impl fmt::Debug for EpisodeDetails {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        let has_external_ids = self.external_ids != ExternalIds::default();
        f.debug_struct("EpisodeDetails")
            .field("id", &self.id)
            .field("season_number", &self.season_number)
            .field("episode_number", &self.episode_number)
            .field("air_date", &self.air_date)
            .field("runtime", &self.runtime)
            .field("vote_average", &self.vote_average)
            .field("vote_count", &self.vote_count)
            .field("still_path", &self.still_path)
            .field("has_external_ids", &has_external_ids)
            .field("guest_star_count", &self.guest_stars.len())
            .field("crew_count", &self.crew.len())
            .field("keyword_count", &self.keywords.len())
            .field("translation_count", &self.translations.len())
            .field("content_rating_count", &self.content_ratings.len())
            .field("images", &self.images)
            .finish()
    }
}

#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
    feature = "rkyv",
    derive(rkyv::Archive, rkyv::Serialize, rkyv::Deserialize)
)]
#[cfg_attr(feature = "rkyv", rkyv(derive(Debug, PartialEq, Eq)))]
pub struct CastMember {
    pub id: u64,
    pub person_id: Option<Uuid>,
    pub credit_id: Option<String>,
    pub cast_id: Option<u64>,
    pub name: String,
    pub original_name: Option<String>,
    pub character: String,
    pub profile_path: Option<String>,
    pub order: u32,
    pub gender: Option<u8>,
    pub known_for_department: Option<String>,
    pub adult: Option<bool>,
    pub popularity: Option<f32>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub also_known_as: Vec<String>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub external_ids: PersonExternalIds,
    #[cfg_attr(feature = "serde", serde(default))]
    pub image_slot: u32,
    /// Primary person profile image variant id (`tmdb_image_variants.id`).
    ///
    /// Optional because cast may not have an associated portrait.
    #[cfg_attr(feature = "serde", serde(default))]
    pub image_id: Option<Uuid>,
}

#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
    feature = "rkyv",
    derive(rkyv::Archive, rkyv::Serialize, rkyv::Deserialize)
)]
#[cfg_attr(feature = "rkyv", rkyv(derive(Debug, PartialEq, Eq)))]
pub struct CrewMember {
    pub id: u64,
    pub person_id: Option<Uuid>,
    pub credit_id: Option<String>,
    pub name: String,
    pub job: String,
    pub department: String,
    pub profile_path: Option<String>,
    pub gender: Option<u8>,
    pub known_for_department: Option<String>,
    pub adult: Option<bool>,
    pub popularity: Option<f32>,
    pub original_name: Option<String>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub also_known_as: Vec<String>,
    #[cfg_attr(feature = "serde", serde(default))]
    pub external_ids: PersonExternalIds,
    /// Primary person profile image variant id (`tmdb_image_variants.id`).
    ///
    /// Optional because crew may not have an associated portrait.
    #[cfg_attr(feature = "serde", serde(default))]
    pub profile_iid: Option<Uuid>,
}

#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
    feature = "rkyv",
    derive(rkyv::Archive, rkyv::Serialize, rkyv::Deserialize)
)]
#[cfg_attr(feature = "rkyv", rkyv(derive(Debug, PartialEq, Eq, Hash)))]
pub struct Video {
    pub key: String,
    pub name: Option<String>,
    pub site: String,
    pub video_type: Option<String>,
    pub official: Option<bool>,
    pub iso_639_1: Option<String>,
    pub iso_3166_1: Option<String>,
    pub published_at: Option<String>,
    pub size: Option<u32>,
}

#[derive(Debug, Clone, Default, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
    feature = "rkyv",
    derive(rkyv::Archive, rkyv::Serialize, rkyv::Deserialize)
)]
#[cfg_attr(feature = "rkyv", rkyv(derive(Debug, PartialEq, Eq, Hash)))]
pub struct ExternalIds {
    pub imdb_id: Option<String>,
    pub tvdb_id: Option<u32>,
    pub facebook_id: Option<String>,
    pub instagram_id: Option<String>,
    pub twitter_id: Option<String>,
    pub wikidata_id: Option<String>,
    pub tiktok_id: Option<String>,
    pub youtube_id: Option<String>,
    pub freebase_id: Option<String>,
    pub freebase_mid: Option<String>,
}

// Library reference type - no media references
#[derive(Debug, Clone)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
    feature = "rkyv",
    derive(rkyv::Archive, rkyv::Serialize, rkyv::Deserialize)
)]
#[cfg_attr(feature = "rkyv", rkyv(derive(Debug, PartialEq, Eq, Hash)))]
pub struct LibraryReference {
    pub id: LibraryId,
    pub name: String,
    pub library_type: LibraryType,
    #[cfg_attr(feature = "rkyv", rkyv(with = crate::rkyv_wrappers::VecPathBuf))]
    pub paths: Vec<PathBuf>,
}