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 validation result and JSON pointer in the glossary #677

Merged
merged 7 commits into from
May 2, 2024
Merged
Changes from 5 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
12 changes: 12 additions & 0 deletions pages/learn/glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ The essence of JSON Hyper-Schema lies in its ability to define links and actions

In other words, JSON Hyper-Schema extends JSON Schema by introducing features for creating hypermedia controls. This facilitates the creation of interactive APIs and ensures compatibility with existing JSON HTTP APIs, maintaining a seamless integration. It adds a layer of interactivity to JSON documents, making it easier to interact with remote JSON resources.

### JSON pointer

[JSON Pointer](https://datatracker.ietf.org/doc/html/rfc6901) is a format for data exchange between systems, defining a string for identifying locations within a JSON document. It provides a means to precisely reference specific parts of the JSON document for retrieval or manipulation. The [subschema](#subschema) is typically identified via a JSON Pointer, or equivalent syntax, allowing for targeted validation of data within the JSON document.
gregsdennis marked this conversation as resolved.
Show resolved Hide resolved

### keyword

A property appearing within a [schema](#schema) object.
Expand Down Expand Up @@ -137,6 +141,14 @@ The following are considered tools:

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

### validation result

The validation result in the context of JSON Schema refers to the outcome of applying the entire JSON Schema to the entire instance document. This application should yield a boolean assertion, indicating whether the instance document conforms to the rules and constraints specified in the schema. The validation result signifies whether the instance document passes or fails validation against the [schema](#schema).
gregsdennis marked this conversation as resolved.
Show resolved Hide resolved

#### See also

[Get started with JSON schema](../blog/posts/get-started-with-json-schema-in-node-js.md)
gregsdennis marked this conversation as resolved.
Show resolved Hide resolved

### vocabulary

A tightly related collection of [keywords](#keyword), grouped to facilitate re-use.
Expand Down