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
When specifying a hasOne in the associations whiteList the parent table disappears from the sample schema on schemaType is "array".
schemaType
"array"
The text was updated successfully, but these errors were encountered:
Collections in https://github.com/cnizzardini/cakephp-swagger-bake/tree/master/src/Lib/MediaType need to move oneOf, anyOf, allOf, and not into the items array. It's currently getting overwritten in some cases. For example Generic needs to be:
if ($schema instanceof Schema) { $items = [ 'type' => 'object', 'properties' => $schema->getProperties(), ]; if ($schema->getAllOf()) { $items['allOf'] = $schema->getAllOf(); } }
Sorry, something went wrong.
Fixes issues with OpenApiResponse associations when schemaType is arr…
0d72171
…ay (#445) Resolves issue #443
No branches or pull requests
When specifying a hasOne in the associations whiteList the parent table disappears from the sample schema on
schemaType
is"array"
.The text was updated successfully, but these errors were encountered: