/** * @OA\Schema( * title="RequestLogin", * type="object", * required={"user","password"} * ) */ class RequestLogin { /** * @OA\Property( * title="user", * description="Name of the new project", * example="A nice project" * ) * * @var string */ public $user; /** * @OA\Property( * title="password", * description="Description of the new project", * example="This is new project's description" * ) * * @var string */ public $password; }