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