removedInput schema / $defs
Removed value: -{
- "AddPetCategory": {
- "properties": {
- "id": {
- "anyOf": [
- {
- "type": "integer"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Id"
- },
- "name": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Name"
- }
- },
- "title": "AddPetCategory",
- "type": "object"
- },
- "AddPetTagsItem": {
- "properties": {
- "id": {
- "anyOf": [
- {
- "type": "integer"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Id"
- },
- "name": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Name"
- }
- },
- "title": "AddPetTagsItem",
- "type": "object"
- }
-}
removedInput schema / properties / category / anyOf
Removed value: -[
- {
- "$ref": "#/$defs/AddPetCategory"
- },
- {
- "type": "null"
- }
-]
removedInput schema / properties / category / default
Removed value: -null
addedInput schema / properties / category / properties
Added value: +{
+ "id": {
+ "example": 1,
+ "format": "int64",
+ "type": "integer"
+ },
+ "name": {
+ "example": "Dogs",
+ "type": "string"
+ }
+}
addedInput schema / properties / category / type
Added value: +"object"
addedInput schema / properties / category / xml
Added value: +{
+ "name": "category"
+}
removedInput schema / properties / id / anyOf
Removed value: -[
- {
- "type": "integer"
- },
- {
- "type": "null"
- }
-]
removedInput schema / properties / id / default
Removed value: -null
addedInput schema / properties / id / example
Added value: +10
addedInput schema / properties / id / format
Added value: +"int64"
removedInput schema / properties / id / title
Removed value: -"Id"
addedInput schema / properties / id / type
Added value: +"integer"
addedInput schema / properties / name / example
Added value: +"doggie"
removedInput schema / properties / name / title
Removed value: -"Name"
addedInput schema / properties / photoUrls / items / xml
Added value: +{
+ "name": "photoUrl"
+}
removedInput schema / properties / photoUrls / title
Removed value: -"Photourls"
addedInput schema / properties / photoUrls / xml
Added value: +{
+ "wrapped": true
+}
removedInput schema / properties / status / anyOf
Removed value: -[
- {
- "enum": [
- "available",
- "pending",
- "sold"
- ],
- "type": "string"
- },
- {
- "type": "null"
- }
-]
removedInput schema / properties / status / default
Removed value: -null
addedInput schema / properties / status / enum
Added value: +[
+ "available",
+ "pending",
+ "sold"
+]
removedInput schema / properties / status / title
Removed value: -"Status"
addedInput schema / properties / status / type
Added value: +"string"
removedInput schema / properties / tags / anyOf
Removed value: -[
- {
- "items": {
- "$ref": "#/$defs/AddPetTagsItem"
- },
- "type": "array"
- },
- {
- "type": "null"
- }
-]
removedInput schema / properties / tags / default
Removed value: -null
addedInput schema / properties / tags / items
Added value: +{
+ "properties": {
+ "id": {
+ "format": "int64",
+ "type": "integer"
+ },
+ "name": {
+ "type": "string"
+ }
+ },
+ "type": "object",
+ "xml": {
+ "name": "tag"
+ }
+}
removedInput schema / properties / tags / title
Removed value: -"Tags"
addedInput schema / properties / tags / type
Added value: +"array"
addedInput schema / properties / tags / xml
Added value: +{
+ "wrapped": true
+}
removedInput schema / title
Removed value: -"upstream_callableArguments"