schemars 1.2.1

Generate JSON Schemas from Rust code
Documentation
1
2
3
4
5
6
7
use schemars::JsonSchema;

#[derive(JsonSchema)]
#[schemars(transform = "x")]
pub struct Struct;

fn main() {}