So I have a WebPage and inside that WebPage I have an Article.
Now I know it is not a problem, but when I use this tool:
https://developers.google.com/webmasters/structured-data/testing-tool/
I get some note that the WebPage has no elements such as name and description, in that case what should I do? Should ignore it? Because even if I set meta tags for name and description it will be 100% the same as the Article one and then it might double content or doubled values, what should I do?
Example of my page:
<html>
<head>
<title></title>
</head>
<body itemscope itemtype="http://schema.org/WebPage">
    <nav class="navbar navbar-default" role="navigation" itemscope="itemscope" itemtype="http://schema.org/SiteNavigationElement"> HERE COME THE NAVIGATION CODE 
    </nav>
    <main itemscope itemtype="http://schema.org/Article">
    <h1 itemprop="name">Name</h1>
    <p itemprop="description">Description</p>
    </main>
    <div id="some-links">
             <ul>
              <li><a itemprop="relatedLink" href="" class="active"><span class="icon icon-eye"></span> Cat Overview</a></li>
              <li><a itemprop="relatedLink" href=""><span class="icon icon-dog"></span> Cat Breeds</a></li>
              <li><a itemprop="relatedLink" href=""><span class="icon icon-article"></span> Cat Articles</a></li>
              <li><a itemprop="relatedLink" href=""><span class="icon icon-paw"></span> Cat Adoption</a></li>
            </ul>
    </div>
</main>
</body>
</html>