From 08e64fe54eb366f01c395b92d6327b53118c6913 Mon Sep 17 00:00:00 2001 From: moinuddin95 Date: Tue, 7 Oct 2025 18:30:35 -0400 Subject: [PATCH] Fix typo: replace string with type fixes #1860 --- pages/understanding-json-schema/reference/type.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/understanding-json-schema/reference/type.md b/pages/understanding-json-schema/reference/type.md index acce0d971..c5e58aa05 100644 --- a/pages/understanding-json-schema/reference/type.md +++ b/pages/understanding-json-schema/reference/type.md @@ -129,7 +129,7 @@ The `type` keyword can take two forms: 1. **A single string**. When it is a single string, it must be one of the types mentioned above (`array`, `boolean`, `integer`, `number`, `null`, `object`, `regular expressions`, or `string`). This specifies that the instance data is only valid when it matches that specific type. -Here is an example of using the `string` keyword as a single string: +Here is an example of using the `type` keyword as a single string: ```json // props { "isSchema": true }