File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -112,35 +112,6 @@ paths:
112112 schema :
113113 $ref : ' #/components/schemas/Error'
114114
115- delete :
116- summary : Delete a pet
117- description : Remove a pet from the store
118- operationId : deletePet
119- tags :
120- - pets
121- parameters :
122- - name : petId
123- in : path
124- required : true
125- description : ID of the pet to delete
126- schema :
127- type : string
128- format : uuid
129- responses :
130- ' 204 ' :
131- description : Pet deleted successfully
132- ' 404 ' :
133- description : Pet not found
134- content :
135- application/json :
136- schema :
137- $ref : ' #/components/schemas/Error'
138- ' 500 ' :
139- description : Internal server error
140- content :
141- application/json :
142- schema :
143- $ref : ' #/components/schemas/Error'
144115
145116components :
146117 schemas :
@@ -178,6 +149,10 @@ components:
178149 minimum : 0
179150 maximum : 50
180151 description : Age of the pet in years (optional)
152+ color :
153+ type : string
154+ maxLength : 30
155+ description : Color of the pet (optional)
181156 status :
182157 type : string
183158 enum :
Original file line number Diff line number Diff line change 11{
22 "petstore" : {
3- "version" : " 0 .0.0" ,
4- "released" : " 2026-03-27T16:57:53.638Z "
3+ "version" : " 1 .0.0" ,
4+ "released" : " 2026-03-27T17:12:54.432Z "
55 }
66}
Original file line number Diff line number Diff line change 1+ # Changelog
2+
3+ ## [ petstore] v1.0.0 - 2026-03-27
4+
5+ - ** [ BREAKING] ** remove method at paths./pets/{petId}.delete
6+
7+ ## [ petstore] v0.1.0 - 2026-03-27
8+
9+ - ** [ minor] ** remove response body scope at paths./pets.get.responses.200.content.application/json.schema
10+ - ** [ minor] ** remove response body scope at paths./pets.post.responses.201.content.application/json.schema
11+ - ** [ minor] ** remove response body scope at paths./pets/{petId}.get.responses.200.content.application/json.schema
Original file line number Diff line number Diff line change @@ -112,35 +112,6 @@ paths:
112112 schema :
113113 $ref : ' #/components/schemas/Error'
114114
115- delete :
116- summary : Delete a pet
117- description : Remove a pet from the store
118- operationId : deletePet
119- tags :
120- - pets
121- parameters :
122- - name : petId
123- in : path
124- required : true
125- description : ID of the pet to delete
126- schema :
127- type : string
128- format : uuid
129- responses :
130- ' 204 ' :
131- description : Pet deleted successfully
132- ' 404 ' :
133- description : Pet not found
134- content :
135- application/json :
136- schema :
137- $ref : ' #/components/schemas/Error'
138- ' 500 ' :
139- description : Internal server error
140- content :
141- application/json :
142- schema :
143- $ref : ' #/components/schemas/Error'
144115
145116components :
146117 schemas :
@@ -178,6 +149,10 @@ components:
178149 minimum : 0
179150 maximum : 50
180151 description : Age of the pet in years (optional)
152+ color :
153+ type : string
154+ maxLength : 30
155+ description : Color of the pet (optional)
181156 status :
182157 type : string
183158 enum :
You can’t perform that action at this time.
0 commit comments