Skip to content
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

fix decoding of discriminators when type: object is present #471

Merged

Conversation

albertored
Copy link
Contributor

This simply change the order of evalutaion during decode phase checking first if a discriminator is present and then decoding it as an object.

Without this fix the new test would have returned:

%OpenApiSpex.Schema%{
  discriminator: %{
    "propertyName" => "userType"
  },
  oneOf: [
    %{"$ref" => "#/components/schemas/User"},
    %{"$ref" => "#/components/schemas/SpecialUser"}
  ],
  properties: %{},
  type: :object
}

instead of

%OpenApiSpex.Schema%{
  discriminator: %OpenApiSpex.Discriminator{
    extensions: nil,
    mapping: nil,
    propertyName: "userType"
  },
  oneOf: [
    %OpenApiSpex.Reference{"$ref": "#/components/schemas/User"},
    %OpenApiSpex.Reference{"$ref": "#/components/schemas/SpecialUser"}
  ],
  type: "object"
}

@albertored albertored changed the title fix decoding of discriminators when type:: object is present fix decoding of discriminators when type: object is present Jul 6, 2022
@mbuhot mbuhot merged commit f76a451 into open-api-spex:master Jul 7, 2022
@albertored albertored deleted the decode-discriminators-with-type branch July 26, 2022 08:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants