From 965b7691fd4dbd77a36df0f61281244cb6f85181 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Sat, 10 Oct 2020 23:29:00 +1100 Subject: [PATCH] Fixes for docs --- app/Http/Controllers/OpenAPI/SystemLogSchema.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Http/Controllers/OpenAPI/SystemLogSchema.php b/app/Http/Controllers/OpenAPI/SystemLogSchema.php index 878b05177dd9..56b002cb029d 100644 --- a/app/Http/Controllers/OpenAPI/SystemLogSchema.php +++ b/app/Http/Controllers/OpenAPI/SystemLogSchema.php @@ -7,9 +7,9 @@ * @OA\Property(property="company_id", type="string", example="AS3df3A", description="The company hashed id"), * @OA\Property(property="user_id", type="string", example="AS3df3A", description="The user_id hashed id"), * @OA\Property(property="client_id", type="string", example="AS3df3A", description="The client_id hashed id"), - * @OA\Property(property="event_id", type="int", example="1", description="The Log Type ID"), - * @OA\Property(property="category_id", type="int", example="1", description="The Category Type ID"), - * @OA\Property(property="type_id", type="int", example="1", description="The Type Type ID"), + * @OA\Property(property="event_id", type="integer", example=1, description="The Log Type ID"), + * @OA\Property(property="category_id", type="integer", example=1, description="The Category Type ID"), + * @OA\Property(property="type_id", type="integer", example=1, description="The Type Type ID"), * @OA\Property(property="log", type="object", example="{'key':'value'}", description="The json object of the error"), * @OA\Property(property="updated_at", type="string", example="2", description="______"), * @OA\Property(property="created_at", type="string", example="2", description="______"),