From 48bf4604d74d278009120143fc433385b8598ff0 Mon Sep 17 00:00:00 2001 From: Jamie Magee Date: Thu, 1 Sep 2022 11:09:12 -0700 Subject: [PATCH] Add `$schema` to `cgmanifest.json` --- cgmanifest.json | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/cgmanifest.json b/cgmanifest.json index 813b6f8a..c31e9efa 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/rll/rllab", - "commitHash": "ba78e4c16dc492982e648f117875b22af3965579" - } - } - }, - ], - "Version": 1 -} \ No newline at end of file + "component": { + "type": "git", + "git": { + "repositoryUrl": "https://github.com/rll/rllab", + "commitHash": "ba78e4c16dc492982e648f117875b22af3965579" + } + } + } + ], + "Version": 1 +}