From 5bb945033069e08b84eb212459095e71f7080fd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=B8=D1=80=D0=B8=D0=BB=D0=BB=20=D0=97=D0=B8=D0=BC?= =?UTF-8?q?=D0=BD=D0=B8=D0=BA=D0=BE=D0=B2?= Date: Sun, 1 Dec 2024 21:24:16 +0700 Subject: [PATCH] feat chaotic: additionalProperties is not required --- chaotic/chaotic/front/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chaotic/chaotic/front/types.py b/chaotic/chaotic/front/types.py index 2530a6b10a1e..e96865ae5621 100644 --- a/chaotic/chaotic/front/types.py +++ b/chaotic/chaotic/front/types.py @@ -304,7 +304,7 @@ def visit_children(self, cb: Callable[[Schema, Schema], None]) -> None: @dataclasses.dataclass class SchemaObjectRaw: type: str - additionalProperties: Any + additionalProperties: Any = True properties: Optional[dict] = None required: Optional[List[str]] = None nullable: bool = False