Skip to content
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

add glossary entry for 'implementation' #277

Merged
merged 5 commits into from
Feb 8, 2024
Merged
Changes from 2 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
13 changes: 13 additions & 0 deletions pages/learn/glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,19 @@ A property appearing within a [schema](#schema) object.

The [JSON Schema specification](../specification) defines behavior for a large library of keywords which can be used to describe [instances](#instance).

### implementation

An implementation is any software tooling or library for working with or evaluating schemas in some way that does not contradict the JSON Schema specification.

The following are considered implementations:

- a validator library
- a CLI validator
- a schema or code generator
- a UI form generator

Applications which use JSON Schema internally without exposing that functionality in some way, for example, validating configuration files or web requests, are not considered implementations.

### instance

A piece of JSON data which is to be described by a [schema](#schema).
Expand Down