Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 9.2k
3.1.1 discriminator improvements#2618
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Uh oh!
There was an error while loading. Please reload this page.
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
4707ffc
Discriminator: Cleanup intro description
jdesrosiers bde8f97
Discriminator: Define "schema name" and add clarifications
jdesrosiers 314a756
Discriminator: Can't be a hint and a shortcut
jdesrosiers 19ea81c
Discriminator: Improve final example
jdesrosiers 4708f4a
Discriminator: Schema name only applies to OAS documents
jdesrosiers 0ae0968
Discriminator: Add paragraph on schema name scoping
jdesrosiers a76933b
Make it more clear that `discriminator` is not for validation
jdesrosiers a9873a4
propertyName must be required in the schema
jdesrosiers 1924bf0
Apply suggestions from code review
jdesrosiers 6ea52f2
Apply suggestions from code review
jdesrosiers eb5ddee
Remove anything deemed controversial
jdesrosiers 2d940c5
Update versions/3.1.1.md
jdesrosiers File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -2332,7 +2332,7 @@ The OpenAPI Specification's base vocabulary is comprised of the following keywor | ||
| Field Name | Type | Description | ||
| ---|:---:|--- | ||
| <a name="schemaDiscriminator"></a>discriminator | [Discriminator Object](#discriminatorObject) | Adds support for polymorphism. The discriminator is an object name that is used to differentiate between other schemas which may satisfy the payload description. See [Composition and Inheritance](#schemaComposition) for more details. | ||
| <a name="schemaDiscriminator"></a>discriminator | [Discriminator Object](#discriminatorObject) | Adds support for polymorphism. The discriminator is used to determine which of a set of schemas a payload is expected to satisfy. See [Composition and Inheritance](#schemaComposition) for more details. | ||
| <a name="schemaXml"></a>xml | [XML Object](#xmlObject) | This MAY be used only on properties schemas. It has no effect on root schemas. Adds additional metadata to describe the XML representation of this property. | ||
| <a name="schemaExternalDocs"></a>externalDocs | [External Documentation Object](#externalDocumentationObject) | Additional external documentation for this schema. | ||
| <a name="schemaExample"></a>example | Any | A free-form property to include an example of an instance for this schema. To represent examples that cannot be naturally represented in JSON or YAML, a string value can be used to contain the example with escaping where necessary.<br><br>**Deprecated:** The `example` property has been deprecated in favor of the JSON Schema `examples` keyword. Use of `example` is discouraged, and later versions of this specification may remove it. | ||
| @@ -2345,13 +2345,8 @@ The OpenAPI Specification allows combining and extending model definitions using | ||
| `allOf` takes an array of object definitions that are validated *independently* but together compose a single object. | ||
| While composition offers model extensibility, it does not imply a hierarchy between the models. | ||
| To support polymorphism, the OpenAPI Specification adds the `discriminator` field. | ||
| When used, the `discriminator` will be the name of the property that decides which schema definition validates the structure of the model. | ||
| As such, the `discriminator` field MUST be a required field. | ||
| There are two ways to define the value of a discriminator for an inheriting instance. | ||
| - Use the schema name. | ||
| - Override the schema name by overriding the property with a new value. If a new value exists, this takes precedence over the schema name. | ||
| As such, inline schema definitions, which do not have a given id, *cannot* be used in polymorphism. | ||
| To support polymorphism, the OpenAPI Specification adds the `discriminator` keyword. | ||
| When used, the `discriminator` indicates the name of the property that hints which schema definition is expected to validate the structure of the model. | ||
| ###### XML Modeling | ||
| @@ -2698,14 +2693,19 @@ components: | ||
| #### <a name="discriminatorObject"></a>Discriminator Object | ||
| When request bodies or response payloads may be one of a number of different schemas, a `discriminator` object can be used to aid in serialization, deserialization, and validation. The discriminator is a specific object in a schema which is used to inform the consumer of the document of an alternative schema based on the value associated with it. | ||
| When request bodies or response payloads may be one of a number of different schemas, a `discriminator` object gives a hint about the expected schema of the document. It can be used to aid in serialization, deserialization, and validation. | ||
| When using the discriminator, _inline_ schemas will not be considered. | ||
| `discriminator` uses a schema's "name" to automatically map a property value to | ||
| a schema. The schema's "name" is the property name used when declaring the | ||
| schema as a component in an OpenAPI document. For example, the name of the | ||
| schema at `#/components/schemas/Cat` is "Cat". Therefore, when using | ||
| `discriminator`, _inline_ schemas will not be considered because they don't have | ||
| a "name". | ||
| ##### Fixed Fields | ||
| Field Name | Type | Description | ||
| ---|:---:|--- | ||
| <a name="propertyName"></a>propertyName | `string` | **REQUIRED**. The name of the property in the payload that will hold the discriminator value. | ||
| <a name="propertyName"></a>propertyName | `string` | **REQUIRED**. The name of the property in the payload that will hold the discriminator value. This property MUST be required in the payload schema. | ||
| <a name="discriminatorMapping"></a> mapping | Map[`string`, `string`] | An object to hold mappings between payload values and schema names or references. | ||
| This object MAY be extended with [Specification Extensions](#specificationExtensions). | ||
| @@ -2722,8 +2722,7 @@ MyResponseType: | ||
| - $ref: '#/components/schemas/Lizard' | ||
| ``` | ||
| which means the payload _MUST_, by validation, match exactly one of the schemas described by `Cat`, `Dog`, or `Lizard`. In this case, a discriminator MAY act as a "hint" to shortcut validation and selection of the matching schema which may be a costly operation, depending on the complexity of the schema. We can then describe exactly which field tells us which schema to use: | ||
| which means the payload _MUST_, by validation, match exactly one of the schemas described by `Cat`, `Dog`, or `Lizard`. Deserialization of a `oneOf` can be a costly operation, as it requires determining which schema matches the payload and thus should be used in deserialization. This problem also exists for `anyOf` schemas. A `discriminator` MAY be used as a "hint" to improve the efficiency of selection of the matching schema. The `discriminator` keyword cannot change the validation result of the `oneOf`, it can only help make the deserialization more efficient and provide better error messaging. We can specify the exact field that tells us which schema is expected to match the instance: | ||
| ```yaml | ||
| MyResponseType: | ||
| @@ -2744,7 +2743,7 @@ The expectation now is that a property with name `petType` _MUST_ be present in | ||
| } | ||
| ``` | ||
| Will indicate that the `Cat` schema be used in conjunction with this payload. | ||
| Will indicate that the `Cat` schema is expected to match this payload. | ||
| In scenarios where the value of the discriminator field does not match the schema name or implicit mapping is not possible, an optional `mapping` definition MAY be used: | ||
| @@ -2762,9 +2761,9 @@ MyResponseType: | ||
| monster: 'https://gigantic-server.com/schemas/Monster/schema.json' | ||
| ``` | ||
| Here the discriminator _value_ of `dog` will map to the schema `#/components/schemas/Dog`, rather than the default (implicit) value of `Dog`. If the discriminator _value_ does not match an implicit or explicit mapping, no schema can be determined and validation SHOULD fail. Mapping keys MUST be string values, but tooling MAY convert response values to strings for comparison. | ||
| Here the discriminator _value_ of `dog` will map to the schema `#/components/schemas/Dog`, rather than the default (implicit) `#/components/schemas/dog`. If the discriminator _value_ does not match an implicit or explicit mapping, no schema can be determined and validation SHOULD fail. Mapping keys MUST be string values, but tooling MAY convert response values to strings for comparison. | ||
jdesrosiers marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| When used in conjunction with the `anyOf` construct, the use of the discriminator can avoid ambiguity where multiple schemas may satisfy a single payload. | ||
| When used in conjunction with the `anyOf` construct, the use of the discriminator can avoid ambiguity for serializers/deserializers where multiple schemas may satisfy a single payload. | ||
| In both the `oneOf` and `anyOf` use cases, all possible schemas MUST be listed explicitly. To avoid redundancy, the discriminator MAY be added to a parent schema definition, and all schemas comprising the parent schema in an `allOf` construct may be used as an alternate schema. | ||
| @@ -2810,7 +2809,7 @@ components: | ||
| type: boolean | ||
| ``` | ||
| a payload like this: | ||
| Validated against the `Pet` schema, a payload like this: | ||
| ```json | ||
| { | ||
| @@ -2819,7 +2818,7 @@ a payload like this: | ||
| } | ||
| ``` | ||
| will indicate that the `Cat` schema be used. Likewise this schema: | ||
| will indicate that the `#/components/schemas/Cat` schema is expected to match. Likewise this payload: | ||
| ```json | ||
| { | ||
| @@ -2828,7 +2827,7 @@ will indicate that the `Cat` schema be used. Likewise this schema: | ||
| } | ||
| ``` | ||
| will map to `Dog` because of the definition in the `mapping` element. | ||
| will map to `#/components/schemas/Dog` because the `dog` entry in the `mapping` element maps to `Dog` which is the schema name for `#/components/schemas/Dog`. | ||
| #### <a name="xmlObject"></a>XML Object | ||
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.