From: Kunal Mehta Date: Tue, 3 Mar 2015 00:37:38 +0000 (-0800) Subject: Make "name" a required value of extension.json in the schema X-Git-Tag: 1.31.0-rc.0~12225 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/cloturer.php?a=commitdiff_plain;h=2702c1f473eac124276823a0e33858c9a7114a85;p=lhc%2Fweb%2Fwiklou.git 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 --- 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",