From e01c495672994eddb80fca729bd094368181ec2f Mon Sep 17 00:00:00 2001 From: Johnny Lim Date: Fri, 4 Apr 2025 16:47:36 +0900 Subject: [PATCH] Polish docs --- .../getting-started-step-by-step.md | 2 +- pages/understanding-json-schema/basics.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/learn/getting-started-step-by-step/getting-started-step-by-step.md b/pages/learn/getting-started-step-by-step/getting-started-step-by-step.md index e768b85ac..458e6f986 100644 --- a/pages/learn/getting-started-step-by-step/getting-started-step-by-step.md +++ b/pages/learn/getting-started-step-by-step/getting-started-step-by-step.md @@ -583,7 +583,7 @@ With the external schema reference, the overall schema looks like this: Now that you have your JSON Schema, it is time to validate [JSON data](https://json-schema.org/learn/glossary#instance) against it using a [JSON Schema Validator](https://json-schema.org/tools?query=&sortBy=name&sortOrder=ascending&groupBy=toolingTypes&licenses=&languages=&drafts=&toolingTypes=validator). -A Validator is a tool that implements the JSON Schema specification. All validators works in a similar way: they take a JSON Schema and a JSON Instance as input and they return the validation result as output. +A Validator is a tool that implements the JSON Schema specification. All validators work in a similar way: they take a JSON Schema and a JSON Instance as input and they return the validation result as output. ![How JSON Schema works](https://json-schema.org/img/json_schema.svg) diff --git a/pages/understanding-json-schema/basics.md b/pages/understanding-json-schema/basics.md index a8fd605e6..2a7737730 100644 --- a/pages/understanding-json-schema/basics.md +++ b/pages/understanding-json-schema/basics.md @@ -24,7 +24,7 @@ valid schema that will accept any valid JSON. {} ``` -This accepts anything, as long as it's valid JSON +This accepts anything, as long as it's valid JSON: ```json // props { "valid": true, "indent": true } @@ -149,4 +149,4 @@ The details of `$id` become more apparent when you start [structuring a complex In Draft 4, `$id` is just `id` (without the dollar-sign). - \ No newline at end of file +