From ffec020c029fa8a739b356694557182d5c0c551b Mon Sep 17 00:00:00 2001 From: San Kim Date: Sat, 5 Oct 2024 18:16:02 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20=ED=9A=8C=EC=9B=90=EA=B0=80?= =?UTF-8?q?=EC=9E=85=20API=20=EC=82=AC=EC=9A=A9=EC=9E=90=20=EC=A0=84?= =?UTF-8?q?=ED=99=94=EB=B2=88=ED=98=B8=20=EC=B6=94=EA=B0=80=20(#19)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * ✨ 회원가입 API 사용자 전화번호 추가 * 🩹 예시 추가 --- openapi.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/openapi.yaml b/openapi.yaml index 754542c..968f6c9 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -500,12 +500,18 @@ components: name: type: string description: 사용자 이름 + phoneNumber: + type: string + description: 사용자 전화번호 + pattern: '^01[0-9]{8,9}$' + example: "01012345678" profile: $ref: '#/components/schemas/UserProfile' desiredPartner: $ref: '#/components/schemas/UserDesiredPartner' required: - name + - phoneNumber - profile - desiredPartner