From ca12b99438a74b59eab9e621df03dac41521bd17 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Wed, 13 Mar 2024 13:54:30 -0400 Subject: [PATCH] fix: first/last name are snake case --- api/account/swagger.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/api/account/swagger.yaml b/api/account/swagger.yaml index 44ab09d..90abf6e 100644 --- a/api/account/swagger.yaml +++ b/api/account/swagger.yaml @@ -147,14 +147,14 @@ components: RegisterRequest: type: object required: - - firstName - - lastName + - first_name + - last_name - email - password properties: - firstName: + first_name: type: string - lastName: + last_name: type: string email: type: string