From 2702c1f473eac124276823a0e33858c9a7114a85 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Mon, 2 Mar 2015 16:37:38 -0800 Subject: [PATCH] Make "name" a required value of extension.json in the schema The code considers it to be required, so indicate that in the schema as well. Change-Id: I9c1a279d5675eb10210a3dba5a15fe169619d719 --- docs/extension.schema.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/extension.schema.json b/docs/extension.schema.json index 33029bd436..e7b32de0a1 100644 --- a/docs/extension.schema.json +++ b/docs/extension.schema.json @@ -5,7 +5,8 @@ "properties": { "name": { "type": "string", - "description": "The extension's canonical name." + "description": "The extension's canonical name.", + "required": true }, "type": { "type": "string", -- 2.20.1