From 8c3404c04a9cc62b773da5d13d5ea4f771a3cba7 Mon Sep 17 00:00:00 2001 From: fai-sal Date: Tue, 5 Mar 2024 21:53:40 +0600 Subject: [PATCH] Fixing JSON Schema link --- extending-the-rest-api/schema.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extending-the-rest-api/schema.md b/extending-the-rest-api/schema.md index 0c83549..2542dc2 100644 --- a/extending-the-rest-api/schema.md +++ b/extending-the-rest-api/schema.md @@ -7,7 +7,7 @@ A schema is metadata that tells us how our data is structured. Most databases im ### JSON -First, let's talk about JSON a bit. JSON is a human readable data format that resembles JavaScript objects. JSON stands for JavaScript Object Notation. JSON is growing wildly in popularity and seems to be taking the world of data structure by storm. The WordPress REST API uses a special specification for JSON known as JSON schema. To learn more about JSON Schema please check out the [JSON Schema website](http://json-schema.org/) and this [easier to understand introduction to JSON Schema](https://spacetelescope.github.io/understanding-json-schema/index.html). Schema affords us many benefits: improved testing, discoverability, and overall better structure. Let's look at a JSON blob of data. +First, let's talk about JSON a bit. JSON is a human readable data format that resembles JavaScript objects. JSON stands for JavaScript Object Notation. JSON is growing wildly in popularity and seems to be taking the world of data structure by storm. The WordPress REST API uses a special specification for JSON known as JSON schema. To learn more about JSON Schema please check out the [JSON Schema website](http://json-schema.org/) and this [easier to understand introduction to JSON Schema](https://spacetelescope.github.io/understanding-json-schema). Schema affords us many benefits: improved testing, discoverability, and overall better structure. Let's look at a JSON blob of data. ```js {