Hey guys, just wondering why `itemprop` can only be applied to `div` and applying it to `article` would result in warnings? ``` html <div itemprop=employee itemscope itemtype=http://schema.org/Person>...</div> ``` `=> OK` ``` html <article itemprop=employee itemscope itemtype=http://schema.org/Person>...</article> ``` `=> <article> proprietary attribute "itemprop"`