Json Glossary

Browse 7 json terms defined in plain English, from the cultural dictionary of computing.

7 Json Terms

JSON API
An application programming interface that sends and receives data encoded as JSON, typically over HTTP. In practice the term often implies REST-style endpoints...
JSON-LD
JSON for Linked Data: a JSON-based format for expressing semantic relationships using concepts such as @context, @id, and @type. It is commonly used to embed...
JSON Path
A path expression syntax for selecting and extracting values from JSON documents, conceptually similar to XPath for XML. JSONPath supports navigation through...
JSON Pointer
A standardized string syntax defined by RFC 6901 for identifying a specific value inside a JSON document using slash-separated reference tokens, such as...
JSON Schema
A vocabulary for describing the structure, types, required fields, and constraints of JSON documents. It is used to validate payloads, generate forms or code,...
Pretty Print
To format data — typically JSON, XML, code, or data structures — with consistent indentation, line breaks, and syntax highlighting so that it is...
Schema Validation
The process of checking that a data structure (such as a JSON payload, XML document, or database row) conforms to a predefined schema that specifies required...

Related Topics