Is there a setting that will automatically display field data?
Used:
Django==3.0.14
drf-spectacular==0.24.2
drf-spectacular-sidecar==2022.12.1
drf-spectacular settings
SPECTACULAR_SETTINGS = {
'SERVE_INCLUDE_SCHEMA': False,
# Permission
'SERVE_AUTHENTICATION': ['rest_framework.authentication.SessionAuthentication'],
'SERVE_PERMISSIONS': ['rest_framework.permissions.IsAuthenticated'],
# UI settings
'SWAGGER_UI_DIST': 'SIDECAR', # shorthand to use the sidecar instead
'SWAGGER_UI_FAVICON_HREF': 'SIDECAR',
'REDOC_DIST': 'SIDECAR',
'SCHEMA_PATH_PREFIX_TRIM': True,
}
In the swagger, the data is reflected in this form:
Is it possible to automatically expand the information of these fields?
Example like here:
try adding this to the settings