2024-12-09 19:24:46 +03:00
|
|
|
/// Represents an Item in CompareWare.
|
|
|
|
/// Each item has metadata and key-value tags for categorization.
|
2024-12-06 14:45:14 +03:00
|
|
|
use serde::{Deserialize, Serialize};
|
2024-12-16 19:06:33 +03:00
|
|
|
|
2024-12-06 14:45:14 +03:00
|
|
|
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
|
|
pub struct Item {
|
2024-12-16 20:47:24 +03:00
|
|
|
pub id: String,
|
|
|
|
pub name: String,
|
|
|
|
pub description: String,
|
|
|
|
pub tags: Vec<(String, String)>,
|
2024-12-17 13:39:41 +03:00
|
|
|
pub reviews: Vec<ReviewWithRating>,
|
2024-12-18 21:49:26 +03:00
|
|
|
pub wikidata_id: Option<String>,
|
2024-12-17 13:39:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
|
|
pub struct ReviewWithRating {
|
|
|
|
pub content: String,
|
|
|
|
pub rating: u8, // Ratings from 1 to 5
|
|
|
|
}
|