#[derive(JsonSchema)] { // Attributes available to this derive: #[schema] }
Derive JSON Schema for OpenAPI.
#[derive(JsonSchema)] struct Item { id: i64, name: String, #[schema(nullable)] description: Option<String>, }