From 8ed186c43201853032301e603a93f7274a9a4004 Mon Sep 17 00:00:00 2001 From: Reuven Harrison Date: Thu, 9 Apr 2026 13:43:45 +0300 Subject: [PATCH 1/2] fix: remove required constraint from name property --- simple.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/simple.yaml b/simple.yaml index b635d93..1462870 100644 --- a/simple.yaml +++ b/simple.yaml @@ -29,8 +29,6 @@ components: readOnly: true name: type: string - required: - - name paths: /api/v1.0/groups: post: From 6ed7a0e0e5c97b6607ec058c8943e70d1e1cc755 Mon Sep 17 00:00:00 2001 From: Reuven Harrison Date: Thu, 9 Apr 2026 16:55:37 +0300 Subject: [PATCH 2/2] Add 'tag' as a required property in pet schema --- multi-file/schemas/pet.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/multi-file/schemas/pet.yaml b/multi-file/schemas/pet.yaml index 48da816..eae43a4 100644 --- a/multi-file/schemas/pet.yaml +++ b/multi-file/schemas/pet.yaml @@ -2,6 +2,7 @@ type: object required: - id - name + - tag properties: id: type: integer