@@ -1349,6 +1349,7 @@ additionalProperties:
1349
1349
1350
1350
` ` ` js
1351
1351
{
1352
+ "type": "object",
1352
1353
"properties": {
1353
1354
"id": {
1354
1355
"type": "integer",
@@ -1369,6 +1370,7 @@ additionalProperties:
1369
1370
` ` `
1370
1371
1371
1372
` ` ` yaml
1373
+ type: object
1372
1374
properties:
1373
1375
id:
1374
1376
type: integer
@@ -1457,6 +1459,7 @@ definitions:
1457
1459
{
1458
1460
"definitions": {
1459
1461
"Pet": {
1462
+ "type": "object",
1460
1463
"discriminator": "petType",
1461
1464
"properties": {
1462
1465
"name": {
@@ -1479,6 +1482,7 @@ definitions:
1479
1482
"$ref": "#/definitions/Pet"
1480
1483
},
1481
1484
{
1485
+ "type": "object",
1482
1486
"properties": {
1483
1487
"huntingSkill": {
1484
1488
"type": "string",
@@ -1505,6 +1509,7 @@ definitions:
1505
1509
"$ref": "#/definitions/Pet"
1506
1510
},
1507
1511
{
1512
+ "type": "object",
1508
1513
"properties": {
1509
1514
"packSize": {
1510
1515
"type": "integer",
@@ -1526,6 +1531,7 @@ definitions:
1526
1531
` ` ` yaml
1527
1532
definitions:
1528
1533
Pet:
1534
+ type: object
1529
1535
discriminator: petType
1530
1536
properties:
1531
1537
name:
@@ -1539,7 +1545,8 @@ Cat:
1539
1545
description: A representation of a cat
1540
1546
allOf:
1541
1547
- $ref: '#/definitions/Pet'
1542
- - properties:
1548
+ - type: object
1549
+ properties:
1543
1550
huntingSkill:
1544
1551
type: string
1545
1552
description: The measured skill for hunting
@@ -1555,7 +1562,8 @@ Dog:
1555
1562
description: A representation of a dog
1556
1563
allOf:
1557
1564
- $ref: '#/definitions/Pet'
1558
- - properties:
1565
+ - type: object
1566
+ properties:
1559
1567
packSize:
1560
1568
type: integer
1561
1569
format: int32
@@ -1937,6 +1945,7 @@ Field Pattern | Type | Description
1937
1945
` ` ` js
1938
1946
{
1939
1947
"Category": {
1948
+ "type": "object",
1940
1949
"properties": {
1941
1950
"id": {
1942
1951
"type": "integer",
@@ -1948,6 +1957,7 @@ Field Pattern | Type | Description
1948
1957
}
1949
1958
},
1950
1959
"Tag": {
1960
+ "type": "object",
1951
1961
"properties": {
1952
1962
"id": {
1953
1963
"type": "integer",
@@ -1963,13 +1973,15 @@ Field Pattern | Type | Description
1963
1973
1964
1974
` ` ` yaml
1965
1975
Category:
1976
+ type: object
1966
1977
properties:
1967
1978
id:
1968
1979
type: integer
1969
1980
format: int64
1970
1981
name:
1971
1982
type: string
1972
1983
Tag:
1984
+ type: object
1973
1985
properties:
1974
1986
id:
1975
1987
type: integer
0 commit comments