WebSchemas/Sports/samples/espn-schema-proposal-Itemtypes

From W3C Wiki
<?xml version="1.0" encoding="UTF-8"?>
<!-- ESPN schema-proposal example - Itemtypes -->
<!-- begin line score -->
<div class="line-score clear">
    <div class="line-score-container">
        <table cellspacing="0" class="linescore" itemtype="http://schema.org/SportsMatch">
            <tr class="periods">
                <td class="teamRank"/>
                <td class="team"/>
                <td class="period" itemprop="periods" itemtype="http://schema.org/SportsPeriod"> 1
                        <meta itemprop="competitors"
                        itemtype="http://schema.org/SportsMatchCompetitor"
                        itemref="team1 team1-period1"/>
                    <meta itemprop="competitors" itemtype="http://schema.org/SportsMatchCompetitor"
                        itemref="team2 team2-period1"/>
                </td>
                <td class="period" itemprop="periods" itemtype="http://schema.org/SportsPeriod"> 2
                        <meta itemprop="competitors"
                        itemtype="http://schema.org/SportsMatchCompetitor"
                        itemref="team1 team1-period2"/>
                    <meta itemprop="competitors" itemtype="http://schema.org/SportsMatchCompetitor"
                        itemref="team2 team2-period2"/>
                </td>
                <td class="total"> T <meta itemprop="competitors"
                        itemtype="http://schema.org/SportsMatchCompetitor"
                        itemref="team1 team1-final"/>
                    <meta itemprop="competitors" itemtype="http://schema.org/SportsMatchCompetitor"
                        itemref="team2 team2-final"/>
                </td>
            </tr>
            <tr>
                <td class="teamRank"/>
                <td class="team" id="team1" itemprop="team" itemtype="http://schema.org/SportsTeam">
                    <a itemprop="url"
                        href="http://espn.go.com/mens-college- basketball/team/_/id/238/vanderbilt-commodores"
                        >VAN</a>
                    <meta itemprop="home" content="false"/>
                </td>
                <td id="team1-period1" itemprop="score"> 37 </td>
                <td id="team1-period2" itemprop="score"> 37 </td>
                <td class="ts" id="team1-final" itemprop="score"> 74 </td>
            </tr>
            <tr>
                <td class="teamRank">#1</td>
                <td class="team" id="team2" itemprop="team" itemtype="http://schema.org/SportsTeam">
                    <a itemprop="url"
                        href="http://espn.go.com/mens-college-basketball/team/_/id/96/kentucky-wildcats"
                        >UK</a>
                    <meta itemprop="home" content="true"/>
                </td>
                <td id="team2-period1" itemprop="score"> 36 </td>
                <td id="team2-period2" itemprop="score"> 47 </td>
                <td class="ts" id="team2-final" itemprop="score"> 83 </td>
            </tr>
        </table>
    </div>
</div>
<!-- end line score -->