From 8567ffccc616c57194139a03ed7e2143e6dacfb7 Mon Sep 17 00:00:00 2001 From: Stephan Druskat Date: Wed, 6 Aug 2025 23:54:43 +0200 Subject: [PATCH] Fix #1809: Correct incorrect description of schema requirements - The if-then-else section incorrectly describes the requirements of the `else` schema. - Fix the description to match the `else` schema. - Fixes #1809 --- pages/learn/miscellaneous-examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/learn/miscellaneous-examples.md b/pages/learn/miscellaneous-examples.md index c0a1c515d..07aae7c4b 100644 --- a/pages/learn/miscellaneous-examples.md +++ b/pages/learn/miscellaneous-examples.md @@ -403,7 +403,7 @@ If the value of `isMember` is true: * The `then` block is applied, which specifies that the `membershipNumber` property should be a string with a minimum length of 10 and a maximum length of 10. If the value of `isMember` is anything other than true: -* The `else` block is applied, which specifies that the `membershipNumber` property can be any string. +* The `else` block is applied, which specifies that the `membershipNumber` property should be a string with a minimum length of 15. ```json {