kanidmd_core/https/apidocs/
path_schema.rs

1
2
3
4
5
6
7
8
9
//! Path schema objects for the API documentation.

use serde::{Deserialize, Serialize};
use utoipa::IntoParams;

#[derive(IntoParams, Serialize, Deserialize, Debug)]
pub(crate) struct UuidOrName {
    id: String,
}