add print_width property to JSONSchema definition

used to define the maximal width of the respective column in the CLI

Signed-off-by: Stoiko Ivanov <s.ivanov@proxmox.com>
This commit is contained in:
Stoiko Ivanov 2018-06-18 10:18:00 +02:00 committed by Thomas Lamprecht
parent a73f417f10
commit f8d4eff923

View File

@ -1139,6 +1139,11 @@ my $default_schema_noref = {
}, },
}, },
}, },
print_width => {
type => "integer",
description => "For CLI context, this defines the maximal width to print before truncating",
optional => 1,
},
} }
}; };