swagger-api / swagger-api/swagger.io-docs
'Inheritance and Polymorphism' examples, discriminator usage
Nobody has claimed this yet.
- Dominant language
- Astro
- Stars
- 1.6k
- Forks
- 407
- Avg merge
- 2m
- Merged PRs (30d)
- 2
Description
I'm actually trying to fix openapi/asyncapi generation for my project, and got stuck a bit looking at examples in the Inheritance and Polymorphism section.
First pls take a look at following simple example
"$defs" : {
"Apple" : {
"title" : "Apple",
"type" : "object",
"required" : [
"weight",
"isSweet",
"name"
],
"properties" : {
"weight" : {
"type" : "number",
"format" : "double"
},
"isSweet" : {
"type" : "boolean"
},
"name" : {
"type" : "string"
}
}
},
"Plum" : {
"title" : "Plum",
"type" : "object",
"required" : [
"weight",
"name"
],
"properties" : {
"weight" : {
"type" : "number",
"format" : "double"
},
"name" : {
"type" : "string"
}
}
}
},
"title" : "Fruit",
"oneOf" : [
{
"$ref" : "#/$defs/Apple"
},
{
"$ref" : "#/$defs/Plum"
}
],
"discriminator" : {
"propertyName" : "name",
"mapping" : {
"apple" : "#/$defs/Apple",
"plum" : "#/$defs/Plum"
}
}
}
Now pls take a look at Apple schema.
Note this is not schema of Apple itself. This is schema of Apple in context of Fruit coproduct.
It contains name property, that is needed only for apples stored next to other fruits.
But note this schema alone is incomplete. All apples in the fruits basket should have {"name": "apple"} property set.
Apple that has any other name is invalid. Shouldn't Apple schema not only define the name property, but also restrict it to one and only one possible value?
Note - if one does it like that - oneOf + const for name property is perfectly enough to represent Fruit, there is no need to use discriminant at all. And it would then make three representations of polymorphism possible in same way:
- with product nested in additional property:
{"plum":{"weight":1.0}} - with additional discriminator field bound to constant value:
{"name": "plum", "weight":1.0} - with all possible products having incompatible schemas - no discriminant/nesting is needed at all:
{"weight":1.0},{"currantColor":"red"}
All those boil up to having specialized schemas that are incompatible with each other (what either happens naturally, or requires some additional work like additional nesting/discriminator), and oneOf on top of that.
And specification is local - it is enough to know Apple schema to produce valid apple fruit entry.
Versus approach with discriminant only, and no const restriction, where one needs schemas both for Apple and its parent Fruit in order to know what to fill into the name property.
Now - if suggestion above is followed you get few nice features for free. Apart from Apple schema becoming standalone, self describing and producing valid Apple fruits, the whole discriminant becomes optional. If provided - it is just optimization hint, allowing quick lookup of target schema to parse/validate data against, so that one does not have to iterate over all the elements of oneOf enumeration.
This ticket is bit reworded discussion from issue reported for Tapir project.
So my suggestions are
- add specific
constrestriction toobjectTypeproperty (can be commented as actually optional, but encouraged) - reword example to first illustrate polymorphism with
constalone, and then explain howdiscriminatorcan be used to improve codec/validator performance.
marcin
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Review the current Inheritance and Polymorphism documentation and the linked Tapir issue before changing the examples. Clarify how const-based schemas relate to discriminator mappings, then update the examples and explanatory text so the proposed representations and the discriminator's role are unambiguous.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- json, openapi
- Domain
- api, documentation
- Issue type
- Documentation
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100