From f7bb726775b7004d47099df03b8e0b1901d4cb83 Mon Sep 17 00:00:00 2001 From: Jamie Magee Date: Thu, 1 Sep 2022 11:36:03 -0700 Subject: [PATCH] Add `$schema` to `cgmanifest.json` --- cgmanifest.json | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/cgmanifest.json b/cgmanifest.json index a100739..b7238a6 100644 --- a/cgmanifest.json +++ b/cgmanifest.json @@ -1,13 +1,15 @@ -{"Registrations":[ +{ + "$schema": "https://json.schemastore.org/component-detection-manifest.json", + "Registrations": [ { - "component": { - "type": "git", - "git": { - "repositoryUrl": "https://github.com/NVIDIA-developer-blog/code-samples.git", - "commitHash": "1c96aecd493aad0a8d1b4b64ddf12bc430af63c2" - } - }, - "developmentDependency": true - }, -] + "component": { + "type": "git", + "git": { + "repositoryUrl": "https://github.com/NVIDIA-developer-blog/code-samples.git", + "commitHash": "1c96aecd493aad0a8d1b4b64ddf12bc430af63c2" + } + }, + "developmentDependency": true + } + ] }