visit
Image by Devanath from
This is a very short article just to give a highlight on how to use allOf with swagger in JSON, although its not a big deal but I could not really find a good example while searching for it. So here you go, OpenAPI lets you combine and extend model definitions using the allOf keyword. allOf takes an array of object definitions that are used for independent validation but together compose a single object. To be valid against allOf, the data provided by the client must be valid against all of the given subschemas. -So if you want to use allOf within an array you may do it like this,
"V1ListArticle": {
"type": "array",
"description": "List of articles",
"items": {
"allOf": [
{
"$ref": "#/components/schemas/AnyArticleSchema"
},
{
"type": "object",
"properties": {
"articleRank": {
"type": "number"
}
}
}
]
}