From af8eb33cf2e74d8081a7c795bc10c888a3fedbd9 Mon Sep 17 00:00:00 2001 From: Pablo Joubert Date: Wed, 2 Jan 2019 11:31:24 +0100 Subject: [PATCH] Ajoute la nouvelle classe et le nouveau genre MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Répare les tests --- vérifications/schéma.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/vérifications/schéma.json b/vérifications/schéma.json index 521de05..140e0f1 100644 --- a/vérifications/schéma.json +++ b/vérifications/schéma.json @@ -5,7 +5,7 @@ "type": "object", "properties": { - "anglais": {"type": "string"}, + "anglais": {"type": "string"}, "français": {"type": "string"}, "classe": { "type": "string", @@ -13,13 +13,14 @@ "adjectif", "groupe nominal", "groupe verbal", + "nom propre", "proposition", "verbe" ] }, "genre": { "type": "string", - "enum": ["f", "m"] + "enum": ["f", "m", "n"] }, "pluriel": {"type": "boolean"} },