From 425e07d8c7ee3487b7583dd3d0bb3406cb229dbd Mon Sep 17 00:00:00 2001 From: Itxaka Date: Wed, 7 Jun 2023 09:13:13 +0000 Subject: [PATCH] Add noFormat to install schema (#27) --- schema/install_schema.go | 1 + 1 file changed, 1 insertion(+) diff --git a/schema/install_schema.go b/schema/install_schema.go index a2d62c7..b97657f 100644 --- a/schema/install_schema.go +++ b/schema/install_schema.go @@ -10,6 +10,7 @@ type InstallSchema struct { Auto bool `json:"auto,omitempty" description:"Set to true when installing without Pairing"` BindMounts []string `json:"bind_mounts,omitempty"` Bundles []BundleSchema `json:"bundles,omitempty" description:"Add bundles in runtime"` + NoFormat bool `json:"no_format,omitempty"` Device string `json:"device,omitempty" pattern:"^(auto|/|(/[a-zA-Z0-9_-]+)+)$" description:"Device for automated installs" examples:"[\"auto\",\"/dev/sda\"]"` EphemeralMounts []string `json:"ephemeral_mounts,omitempty"` EncryptedPartitions []string `json:"encrypted_partitions,omitempty"`