From cdd4c0bd13dedc08a29881578a783561c8410e63 Mon Sep 17 00:00:00 2001 From: TheBurchLog <5104941+TheBurchLog@users.noreply.github.com> Date: Wed, 17 Apr 2024 12:16:06 -0400 Subject: [PATCH] Update schemas.py --- brewtils/schemas.py | 1 + 1 file changed, 1 insertion(+) diff --git a/brewtils/schemas.py b/brewtils/schemas.py index 3d3e7a3d..20924aa6 100644 --- a/brewtils/schemas.py +++ b/brewtils/schemas.py @@ -230,6 +230,7 @@ class CommandSchema(BaseSchema): allow_any_kwargs = fields.Boolean(allow_none=True) class CommandPublishingBlocklistSchema(BaseSchema): + id = fields.Str(allow_none=True) namespace = fields.Str(allow_none=True) system = fields.Str(allow_none=True) command = fields.Str(allow_none=True)