Skip to main content

schemaui_cli/session/
bundle.rs

1use schemaui::OutputOptions;
2use serde_json::Value;
3
4#[derive(Debug)]
5pub struct SessionBundle {
6    pub schema: Value,
7    pub defaults: Option<Value>,
8    pub title: Option<String>,
9    pub output: Option<OutputOptions>,
10}