From 4e674d0ecd1f8368e84a418e125fc95c78016fe5 Mon Sep 17 00:00:00 2001 From: mattamon Date: Fri, 10 Jan 2025 08:15:37 +0100 Subject: [PATCH] Add required properties --- src/Tag/Schema/Tag.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Tag/Schema/Tag.php b/src/Tag/Schema/Tag.php index 5c6f76be6..aaaf0fab4 100644 --- a/src/Tag/Schema/Tag.php +++ b/src/Tag/Schema/Tag.php @@ -27,7 +27,8 @@ */ #[Schema( title: 'Tag', - type: 'object' + required: ['id', 'parentId', 'text', 'path', 'hasChildren', 'iconName'], + type: 'object', )] final class Tag implements AdditionalAttributesInterface {