Skip to content

Commit 599a845

Browse files
authored
Fix typo in: "Expanding If-Then-Else" (#185)
1 parent 3a6dc23 commit 599a845

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/05-Conditional-Validation/06-Expanding-If-then-else/instructions.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ This demonstrates that conditionals in JSON Schema can be combined with various
6868

6969
You are given the [schema](https://json-schema.org/learn/glossary#schema) for the same JSON document in the <SideEditorLink/>. Modify the schema to enforce the below condition using `if-then-else`:
7070

71-
- **If** `grade` is **greater that or equal to 8**, **then** the `recommendationLetter` field must be present, and the `personalStatement` field must **NOT** be present.
71+
- **If** `grade` is **greater than or equal to 8**, **then** the `recommendationLetter` field must be present, and the `personalStatement` field must **NOT** be present.
7272
- Else if `grade` is **lower than 8**, **then** the `personalStatement` field must be present, and the `recommendationLetter` field must **NOT** be present..
7373

7474
> **Hint:** Use the `minimum` keyword to specify the constraint of greater than or equal to 8.

0 commit comments

Comments
 (0)