1//! Path schema objects for the API documentation. 2 3use serde::{Deserialize, Serialize}; 4use utoipa::IntoParams; 5 6#[derive(IntoParams, Serialize, Deserialize, Debug)] 7pub(crate) struct UuidOrName { 8 id: String, 9}