2020-08-24 07:08:49 +02:00
|
|
|
<?php
|
2020-10-10 14:07:52 +02:00
|
|
|
/**
|
2020-08-24 07:08:49 +02:00
|
|
|
* @OA\Schema(
|
|
|
|
* schema="SystemLog",
|
|
|
|
* type="object",
|
|
|
|
* @OA\Property(property="id", type="string", example="AS3df3A", description="The account hashed id"),
|
|
|
|
* @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"),
|
2020-10-10 14:29:00 +02:00
|
|
|
* @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"),
|
2020-08-24 11:51:19 +02:00
|
|
|
* @OA\Property(property="log", type="object", example="{'key':'value'}", description="The json object of the error"),
|
2020-08-24 07:08:49 +02:00
|
|
|
* @OA\Property(property="updated_at", type="string", example="2", description="______"),
|
|
|
|
* @OA\Property(property="created_at", type="string", example="2", description="______"),
|
|
|
|
* )
|
2020-09-06 11:38:10 +02:00
|
|
|
*/
|