Add reproduction for schema ref examples bug
This commit is contained in:
parent
1acd2d6116
commit
c93b8f1305
|
@ -49,7 +49,8 @@
|
|||
"age": {
|
||||
"description": "Age in years",
|
||||
"type": "integer",
|
||||
"minimum": 0
|
||||
"minimum": 0,
|
||||
"examples": [28, 32]
|
||||
},
|
||||
"job": {
|
||||
"$ref": "job"
|
||||
|
@ -74,7 +75,8 @@
|
|||
},
|
||||
"salary": {
|
||||
"type": "number",
|
||||
"minimum": 120
|
||||
"minimum": 120,
|
||||
"examples": [100, 110, 120]
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue