schemaui-cli 0.4.2

CLI wrapper for schemaui, rendering JSON Schemas as TUIs
Documentation
1
2
3
4
5
6
7
8
9
10
use schemaui::OutputOptions;
use serde_json::Value;

#[derive(Debug)]
pub struct SessionBundle {
    pub schema: Value,
    pub defaults: Option<Value>,
    pub title: Option<String>,
    pub output: Option<OutputOptions>,
}