Questions tagged [redoc]
94 questions
-1
votes
1 answer
Vite with Redoc Left Panel Missing
I'm developing an React application with vite and redoc. For some reason the left panel with the quick links is just not appearing when I generate the spec. I've verified it isn't the specs. Imaged demonstrating the expected versus actual behavior…

kboq
- 21
- 6
-1
votes
0 answers
Can I have a more accurate redoc example fora non BaseModel-based response?
I have an endpoint which doesn't return a BaseModel-based response, and returns the following structure:
Dict[EmailStr, MyEnum]
And these are defined / imported like so:
from pydantic import EmailStr
from enum import Enum
class MyEnum(Enum):
…

Kludge
- 2,653
- 4
- 20
- 42
-1
votes
1 answer
Add Custom Text Section in API documentation
Hi i am interested to know how to add the custom text section in the API documentation like this example site: https://api-reference.rebilly.com/#section/Introduction.
I am using asp.net core 6 and i have configured Redoc but unable to add the text…

TechDev
- 1
-2
votes
0 answers
Issue with swagger docs in django views | TypeError: object of type 'NoneType' has no len()
I have a view in my django project like this
class SampleView(MixinPermissionsByAction, MixinSerializerByAction, generics.ListCreateAPIView):
serializer_class = SampleCreateSerializer
permission_classes = (IsAuthenticated)
…

Sony Khan
- 1,330
- 3
- 23
- 40