From 9e9e868294c43533ae04794191d6db493d0c3aae Mon Sep 17 00:00:00 2001 From: omermorad Date: Sun, 29 Mar 2026 09:48:32 +0300 Subject: [PATCH 1/2] feat: add vaccinated field to Pet schema --- specs/petstore.openapi.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/specs/petstore.openapi.yaml b/specs/petstore.openapi.yaml index eabc2e7..660fe9d 100644 --- a/specs/petstore.openapi.yaml +++ b/specs/petstore.openapi.yaml @@ -144,6 +144,9 @@ components: type: string pattern: '^[0-9]{15}$' description: 15-digit microchip ID (optional) + vaccinated: + type: boolean + description: Whether the pet is vaccinated (optional) status: type: string enum: From 039e027c500cc2c6a29818fafa98211f4ae48064 Mon Sep 17 00:00:00 2001 From: omermorad Date: Sun, 29 Mar 2026 09:48:44 +0300 Subject: [PATCH 2/2] chore: add changeset --- .contractual/changesets/add-vaccinated-field.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .contractual/changesets/add-vaccinated-field.md diff --git a/.contractual/changesets/add-vaccinated-field.md b/.contractual/changesets/add-vaccinated-field.md new file mode 100644 index 0000000..75a42c4 --- /dev/null +++ b/.contractual/changesets/add-vaccinated-field.md @@ -0,0 +1,7 @@ +--- +"petstore": minor +--- + +## petstore + +- **[minor]** add optional vaccinated field to track pet vaccination status