Skip to content

Polish docs #1603

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
4 changes: 2 additions & 2 deletions pages/understanding-json-schema/basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down Expand Up @@ -149,4 +149,4 @@ The details of `$id` become more apparent when you start [structuring a complex

<Infobox label="Draft-specific info">
In Draft 4, `$id` is just `id` (without the dollar-sign).
</Infobox>
</Infobox>