Skip to content

Commit

Permalink
Update miscellaneous-examples.md
Browse files Browse the repository at this point in the history
Fixed relative urls in the index
  • Loading branch information
benjagm authored Jul 19, 2023
1 parent b57e33b commit 7e6cd2e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions pages/learn/miscellaneous-examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ title: Miscellaneous Examples

In this page, you will find examples illustrating different uses cases to help you get the most out of your JSON Schemas, including:

- [A typical minimum schema](/learn/miscellaneous-examples/#basic)
- [Describing geographical coordinates](/learn/miscellaneous-examples/#describing-geographical-coordinates)
- [Arrays of things](/learn/miscellaneous-examples/#arrays-of-things)
- [Enumerated values](/learn/miscellaneous-examples/#enumerated-values)
- [Regular expression pattern](/learn/miscellaneous-examples/#regular-expression-pattern)
- [Complex object with nested properties](/learn/miscellaneous-examples/#complex-object-with-nested-properties)
- [Conditional validation with dependentRequired](/learn/miscellaneous-examples/#conditional-validation-with-dependentrequired)
- [Conditional validation with dependentSchemas](/learn/miscellaneous-examples/#conditional-validation-with-dependentschemas)
- [Conditional validation with if-else](/learn/miscellaneous-examples/#conditional-validation-with-if-else)
- [A typical minimum schema](#basic)
- [Describing geographical coordinates](#describing-geographical-coordinates)
- [Arrays of things](#arrays-of-things)
- [Enumerated values](#enumerated-values)
- [Regular expression pattern](#regular-expression-pattern)
- [Complex object with nested properties](#complex-object-with-nested-properties)
- [Conditional validation with dependentRequired](#conditional-validation-with-dependentrequired)
- [Conditional validation with dependentSchemas](#conditional-validation-with-dependentschemas)
- [Conditional validation with if-else](#conditional-validation-with-if-else)

## Basic

Expand Down Expand Up @@ -503,4 +503,4 @@ In this case, the `isMember` property is set to true, so the then block is appli
}
```

In this case, the `isMember` property is false, so the else block is applied. The `membershipNumber` property can be any string with minimum length greater than or equal to 15, so it satisfies the validation.
In this case, the `isMember` property is false, so the else block is applied. The `membershipNumber` property can be any string with minimum length greater than or equal to 15, so it satisfies the validation.

0 comments on commit 7e6cd2e

Please sign in to comment.