We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6d01fd9 + 3aa2897 commit 89c6073Copy full SHA for 89c6073
app/schemas/base_response.py
@@ -7,19 +7,3 @@ class BaseResponse(BaseModel):
7
message: Optional[str] = Field(None, description="응답 메시지")
8
code: Optional[str] = Field(None, description="응답 코드")
9
data: Optional[Any] = Field(None, description="실제 데이터")
10
-
11
- model_config = {
12
- "json_schema_extra": {
13
- "example": {
14
- "is_success": True,
15
- "code": "SUCCESS",
16
- "message": "종목 정보 조회 성공.",
17
- "data": {
18
- "id": 101,
19
- "symbol": "005930",
20
- "name": "삼성전자",
21
- "image_url": "https://images/005930.png"
22
- }
23
24
25
0 commit comments