From a2d1052a042b73fa88c8196f380e1ab3bfba1ef0 Mon Sep 17 00:00:00 2001 From: Reuven Harrison Date: Thu, 9 Apr 2026 17:00:59 +0300 Subject: [PATCH 1/2] Add 'id' to required properties 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..c4c489c 100644 --- a/multi-file/schemas/pet.yaml +++ b/multi-file/schemas/pet.yaml @@ -2,6 +2,7 @@ type: object required: - id - name + - id properties: id: type: integer From 4d40396e0ffd4e255deda979b3161479e7a54d4d Mon Sep 17 00:00:00 2001 From: Reuven Harrison Date: Thu, 9 Apr 2026 17:02:20 +0300 Subject: [PATCH 2/2] Fix duplicate required properties in pet schema Removed duplicate 'name' and 'id' from required properties. --- multi-file/schemas/pet.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/multi-file/schemas/pet.yaml b/multi-file/schemas/pet.yaml index c4c489c..155f357 100644 --- a/multi-file/schemas/pet.yaml +++ b/multi-file/schemas/pet.yaml @@ -1,8 +1,6 @@ type: object required: - id - - name - - id properties: id: type: integer