We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Not all allOf properties are instanced / expanded:
eg. for the following definitions:
personAob: type: object allOf: - $ref: "#/definitions/person" - type: object properties: jobTitle: type: string contactAddress: $ref: "#/definitions/address" mailingAddress: $ref: "#/definitions/address"
the person properties are instanced, and so is jobTitle - but contactAddress and mailingAddress are missing from the JSON output. For this definition:
myPersonOrAob: $ref: "#/definitions/personAob"
Only these properties are generated (note missing mailingAddress and contactAddress):
"myPersonOrAob": { "firstName": "enim adipisicing proident pariatur in", "middleNames": "est quis occaecat in eiusmod", "lastName": "veniam officia incididunt ut", "fullName": "in sunt anim", "phoneCountryCode": "nulla sunt ut exercitation commodo", "phone": "eiusmod non labore", "faxCountryCode": "Ut id dolore laboris", "fax": "esse sunt sit sed irure", "dateOfBirth": "1901-12-13", "email": "[email protected]", "jobTitle": "dolor" },
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Not all allOf properties are instanced / expanded:
eg. for the following definitions:
personAob:
type: object
allOf:
- $ref: "#/definitions/person"
- type: object
properties:
jobTitle:
type: string
contactAddress:
$ref: "#/definitions/address"
mailingAddress:
$ref: "#/definitions/address"
the person properties are instanced, and so is jobTitle - but contactAddress and mailingAddress are missing from the JSON output. For this definition:
Only these properties are generated (note missing mailingAddress and contactAddress):
The text was updated successfully, but these errors were encountered: