/**
  * Verticals constructor
  */
 public function __construct()
 {
     parent::__construct(false);
     $this->parseRequest($this->allowedFields, $this->allowedObjects);
 }
 /**
  * Product constructor
  */
 public function __construct()
 {
     parent::__construct(false);
     $this->parseRequest($this->allowedFields, $this->allowedObjects);
     $this->schemaDir = __DIR__ . $this->getDI()->getConfig()->application->jsonSchemaDir;
 }