1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Http/Controllers/OpenAPI/UserSchema.php

18 lines
1.4 KiB
PHP
Raw Normal View History

2019-10-06 13:51:33 +02:00
<?php
2020-10-10 14:07:52 +02:00
/**
2019-10-06 13:51:33 +02:00
* @OA\Schema(
* schema="User",
* type="object",
2022-08-18 15:13:06 +02:00
* @OA\Property(property="id", type="string", example="Opnel5aKBz", description="The hashed id of the user"),
* @OA\Property(property="first_name", type="string", example="Brad", description="The first name of the user"),
* @OA\Property(property="last_name", type="string", example="Pitt", description="The last name of the user"),
* @OA\Property(property="email", type="string", example="brad@pitt.com", description="The users email address"),
* @OA\Property(property="phone", type="string", example="555-1233-23232", description="The users phone number"),
* @OA\Property(property="signature", type="string", example="Have a nice day!", description="The users sign off signature"),
* @OA\Property(property="avatar", type="string", example="https://url.to.your/avatar.png", description="The users avatar"),
* @OA\Property(property="accepted_terms_version", type="string", example="1.0.1", description="The version of the invoice ninja terms that has been accepted by the user"),
* @OA\Property(property="oauth_user_id", type="string", example="jkhasdf789as6f675sdf768sdfs", description="The provider id of the oauth entity"),
* @OA\Property(property="oauth_provider_id", type="string", example="google", description="The oauth entity id"),
2019-10-06 13:51:33 +02:00
* )
*/