From 30505dd1bfbbf58455e9927c8dade4795a9e1725 Mon Sep 17 00:00:00 2001 From: Eloi Perdereau Date: Mon, 12 Feb 2024 17:43:09 +0100 Subject: [PATCH] website docs: fix "Block Representation" for `provider schema -json` (#34653) * website docs: fix "Block Representation" for `provider schema -json` * Update website/docs/cli/commands/providers/schema.mdx --------- Co-authored-by: Radek Simko --- .../docs/cli/commands/providers/schema.mdx | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/website/docs/cli/commands/providers/schema.mdx b/website/docs/cli/commands/providers/schema.mdx index e06a5ac857..1e5921a25a 100644 --- a/website/docs/cli/commands/providers/schema.mdx +++ b/website/docs/cli/commands/providers/schema.mdx @@ -144,15 +144,16 @@ A block representation contains "attributes" and "block_types" (which represent // list // set // map - "nesting_mode": "list", - "block": , - - // "min_items" and "max_items" set lower and upper - // limits on the number of child blocks allowed for - // the list and set modes. These are - // omitted for other modes. - "min_items": 1, - "max_items": 3 + "nesting_mode": "list", + "block": , + + // "min_items" and "max_items" set lower and upper + // limits on the number of child blocks allowed for + // the list and set modes. These are + // omitted for other modes. + "min_items": 1, + "max_items": 3 + } } } ```