From 3a364619968906feb83d9dba3ec229c7e4e1715f Mon Sep 17 00:00:00 2001 From: Francois Daoust Date: Fri, 12 Jul 2024 09:31:58 +0200 Subject: [PATCH] Fix file schema for algorithms extracts We need tests on file schemas, see #1124 ;) --- schemas/files/extracts/algorithms.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/schemas/files/extracts/algorithms.json b/schemas/files/extracts/algorithms.json index e4cda4c1..8854eece 100644 --- a/schemas/files/extracts/algorithms.json +++ b/schemas/files/extracts/algorithms.json @@ -4,9 +4,9 @@ "type": "object", "additionalProperties": false, - "required": ["spec", "dfns"], + "required": ["spec", "algorithms"], "properties": { "spec": { "$ref": "../../common.json#/$defs/specInExtract" }, - "dfns": { "$ref": "../../browserlib/extract-algorithms.json" } + "algorithms": { "$ref": "../../browserlib/extract-algorithms.json" } } }