From d65668b5845cfad414cddf85117ede725dd8aaab Mon Sep 17 00:00:00 2001 From: Moul <moul@moul.re> Date: Tue, 6 Jun 2023 21:24:48 +0200 Subject: [PATCH] api.bma.tx.HISTORY_SCHEMA: Unset 'receiving' field as required (#201) --- duniterpy/api/bma/tx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/duniterpy/api/bma/tx.py b/duniterpy/api/bma/tx.py index 82ece24..b23945a 100644 --- a/duniterpy/api/bma/tx.py +++ b/duniterpy/api/bma/tx.py @@ -36,7 +36,7 @@ HISTORY_SCHEMA = { "receiving": {"$ref": "#/definitions/transactioning_data"}, "pending": {"$ref": "#/definitions/transactioning_data"}, }, - "required": ["sent", "received", "sending", "receiving", "pending"], + "required": ["sent", "received", "sending", "pending"], }, }, "definitions": { -- GitLab