Skip to content

Commit

Permalink
[CHORE] rebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
thguss committed Jan 10, 2024
1 parent 01fdc74 commit e05a15f
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions src/main/resources/static/docs/open-api-3.0.1.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,40 @@
}
}
},
"/api/v1/dolls/image/{type}" : {
"get" : {
"tags" : [ "DOLL" ],
"summary" : "인형 이미지 조회",
"description" : "인형 이미지 조회",
"operationId" : "get-doll-image-docs",
"parameters" : [ {
"name" : "type",
"in" : "path",
"description" : "인형 타입",
"required" : true,
"schema" : {
"type" : "string"
}
} ],
"responses" : {
"200" : {
"description" : "200",
"content" : {
"application/json;charset=UTF-8" : {
"schema" : {
"$ref" : "#/components/schemas/api-v1-dolls-image-type-1785135499"
},
"examples" : {
"get-doll-image-docs" : {
"value" : "{\n \"success\" : true,\n \"message\" : \"인형 이미지 조회 성공\",\n \"data\" : {\n \"faceImageUrl\" : \"face-image-url\"\n }\n}"
}
}
}
}
}
}
}
},
"/api/v1/routines/daily/themes" : {
"get" : {
"tags" : [ "DAILY ROUTINE" ],
Expand Down Expand Up @@ -177,6 +211,29 @@
}
}
},
"api-v1-dolls-image-type-1785135499" : {
"type" : "object",
"properties" : {
"data" : {
"type" : "object",
"properties" : {
"faceImageUrl" : {
"type" : "string",
"description" : "인형 얼굴 이미지 url"
}
},
"description" : "응답 데이터"
},
"success" : {
"type" : "boolean",
"description" : "응답 성공 여부"
},
"message" : {
"type" : "string",
"description" : "응답 메시지"
}
}
},
"api-v1-test486549215" : {
"type" : "object"
}
Expand Down

0 comments on commit e05a15f

Please sign in to comment.