-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Open
Labels
area:*of`oneOf`/`anyOf`/`allOf``oneOf`/`anyOf`/`allOf`
Milestone
Description
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
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
area:*of`oneOf`/`anyOf`/`allOf``oneOf`/`anyOf`/`allOf`