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
version: 4.4.4 openapi: 3.1.0
The following Attribute code (property with mixed type: string|null):
new OA\Property( property: 'module', type: 'string', nullable: true, ),
Gives this json result:
"module": { "type": [ "string", "null" ], },
How would I setup the Attribute code to achive this json result (property with mixed type: string|float):
"module": { "type": [ "string", "float" ], },
The text was updated successfully, but these errors were encountered:
This problem is part of #885
Sorry, something went wrong.
No branches or pull requests
version: 4.4.4
openapi: 3.1.0
The following Attribute code (property with mixed type: string|null):
Gives this json result:
How would I setup the Attribute code to achive this json result (property with mixed type: string|float):
The text was updated successfully, but these errors were encountered: