From 5abc37c9580ec61f1e7126114ac093312cd4cd17 Mon Sep 17 00:00:00 2001 From: Reuven Harrison Date: Sat, 11 Apr 2026 23:05:22 +0300 Subject: [PATCH] Update pet schema: make id optional, add breed field - Remove id from required (breaking change) - Add breed property (non-breaking) --- multi-file/schemas/pet.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/multi-file/schemas/pet.yaml b/multi-file/schemas/pet.yaml index 48da816..af6b725 100644 --- a/multi-file/schemas/pet.yaml +++ b/multi-file/schemas/pet.yaml @@ -1,6 +1,5 @@ type: object required: - - id - name properties: id: @@ -12,3 +11,6 @@ properties: tag: type: string description: Optional tag for the pet + breed: + type: string + description: Breed of the pet