From fb54eba7aee8de70e3dd5e1135a419b9f46d1052 Mon Sep 17 00:00:00 2001 From: Gareth Harper Date: Thu, 23 Sep 2021 13:47:27 +0000 Subject: [PATCH] allowed traits and voucheramount --- schemas/codexentry-v1.0.json | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/schemas/codexentry-v1.0.json b/schemas/codexentry-v1.0.json index b75a575..0a100a4 100644 --- a/schemas/codexentry-v1.0.json +++ b/schemas/codexentry-v1.0.json @@ -94,15 +94,17 @@ "type" : "string", "minLength" : 1 }, - "IsNewEntry": { - "$ref" : "#/definitions/disallowed", - "description" : "Contains personal data" - }, "VoucherAmount": { - "$ref" : "#/definitions/disallowed", - "description" : "Contains personal data" + "type" : "integer", }, "Traits": { + "type" : "array", + "items" : { + "type" : "string", + "minLength" : 1 + } + }, + "IsNewEntry": { "$ref" : "#/definitions/disallowed", "description" : "Contains personal data" },