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
Issue looks to be from here: encode/django-rest-framework#7427
OasisPlatform/src/server/oasisapi/analyses/v2_api/serializers.py
Line 86 in e3326c6
The swagger schema correctly sets this as type integer
"AnalysisList": { "type": "object", "properties": { ... "complex_model_data_files": { "type": "array", "items": { "type": "integer" }, "readOnly": true, "uniqueItems": true },
But the command ./manage.py generate_swagger (from [drf_yasg]) sets this value as strings
./manage.py generate_swagger
[drf_yasg]
"AnalysisList": { "type": "object", "properties": { ... "complex_model_data_files": { "type": "array", "items": { "type": "string" }, "readOnly": true, "uniqueItems": true },
The text was updated successfully, but these errors were encountered:
sambles
No branches or pull requests
Issue Description
Issue looks to be from here: encode/django-rest-framework#7427
OasisPlatform/src/server/oasisapi/analyses/v2_api/serializers.py
Line 86 in e3326c6
The swagger schema correctly sets this as type integer
But the command
./manage.py generate_swagger
(from[drf_yasg]
) sets this value as stringsThe text was updated successfully, but these errors were encountered: