From 5df3046d079c5fabdff1ffced02e953cb66c525d Mon Sep 17 00:00:00 2001 From: Sargun Vohra Date: Tue, 4 Nov 2025 22:05:39 -0800 Subject: [PATCH] Add $schema property to schema.json Added $schema property to define schema verification. --- schema.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/schema.json b/schema.json index 07b8bd39f..5d0c4355d 100644 --- a/schema.json +++ b/schema.json @@ -5,6 +5,10 @@ "additionalProperties": false, "type": "object", "properties": { + "$schema": { + "type": "string", + "description": "The schema to verify this document against." + }, "dataTypeCase": { "description": "Converts data types to upper- or lowercase.", "$ref": "#/$defs/casing"