My site gives satellite frequency info.Like this;
Frequency: 11881 Polarization: V Symbol Rate: 27500 Fec: 3/4
I want to use microdata for this datas. i used PageMap like this;
<PageMap>
<DataObject type="action">
<Attribute name="channel_name" value="Watan TV"/>
<Attribute name="frequency" value="11012"/>
<Attribute name="polarization" value="H"/>
<Attribute name="symbol_rate" value="27500"/>
<Attribute name="fec" value="5/6"/>
</DataObject>
</PageMap>
And i want to use microdata. But i cant find any type in Schema.org. So i used like this:
<div itemscope>
<span itemprop="channel_name">Watan TV</span>
<span itemprop="frequency">11012</span>
<span itemprop="polarization">H</span>
<span itemprop="symbol_rate">27500</span>
<span itemprop="fec">5/6</span>
</div>
Is this wrong? Or which schema type must i choose? Thanks...