From 76dfec5b5c4dcb946f7f46f0366182efb1b6e048 Mon Sep 17 00:00:00 2001 From: Reuven Harrison Date: Thu, 9 Apr 2026 19:56:57 +0300 Subject: [PATCH 1/2] Remove 'name' from required properties in pet schema --- multi-file/schemas/pet.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/multi-file/schemas/pet.yaml b/multi-file/schemas/pet.yaml index 48da816..155f357 100644 --- a/multi-file/schemas/pet.yaml +++ b/multi-file/schemas/pet.yaml @@ -1,7 +1,6 @@ type: object required: - id - - name properties: id: type: integer From 21f91e7528fe6d13da253b706c2ae517c223f2b9 Mon Sep 17 00:00:00 2001 From: Reuven Harrison Date: Thu, 9 Apr 2026 19:58:34 +0300 Subject: [PATCH 2/2] Change petId type from integer to string --- multi-file/openapi.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/multi-file/openapi.yaml b/multi-file/openapi.yaml index dedd603..e5e1adb 100644 --- a/multi-file/openapi.yaml +++ b/multi-file/openapi.yaml @@ -23,7 +23,7 @@ paths: in: path required: true schema: - type: integer + type: string responses: "200": description: A single pet