Skip to content

Anonymous object schema with oneof cannot be generated properly #1496

@alexpyc

Description

@alexpyc

Following example masked any identifying information

      responses:
        200:
          description: "Success"
          content:
            application/json:
              schema:
                title: SomethingSuccess
                type: object
                required:
                - results
                properties:
                  results:
                    type: array
                    items:
                      anyOf:
                      - type: object
                        properties:
                          order:
                            $ref: '#/components/schemas/Order'
                      - type: object
                        properties:
                          error:
                            type: object
                            properties:
                              code:
                                type: number
                                example: 400
                              error:
                                type: string
                                example: ERROR_MISSING_PARAMETER
                              message:
                                type: string
                                example: Parameter `id` is missing

The above example will generate a struct with field Results of type []200_Results_Item in-line in the generated go code, example:

var dest struct {
    Results []200_Results_Item`json:results`
}

I am using v1.15.0

Metadata

Metadata

Assignees

No one assigned

    Labels

    area:*of`oneOf`/`anyOf`/`allOf`

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions