Please note that this documentation is in draft and is not finalised.

We would encourage you provide any comments, questions, or suggestions for changes by use in-line commenting on this page. To do so simply highlight a section of text and then click on the "Comment" option that appears.

1. What is a Ranking

The Ranking entity is used to capture Players or Teams ranks within a category

2. Ranking Schema

To see a graphical representation of the data model (schema) for the Ranking entity please expand the link below:

3. Creating a Ranking

The minimum information to create a Ranking entity is an ID and a Name

<Ranking>
  <Updated>2019-12-31</Updated>
  <RankingID>349C4B46-9EB6-4E52-9486-38C02911FF03</RankingID>
  <Name>ATP Ranking</Name>
  <Discipline>Tennis</Discipline>
  <RankingType>INDIVIDUAL</RankingType>
  <Gender>MALE</Gender>
  <RankingItems>
	  <RankingItem>
      <Type>Roll Over</Type>
      <SortOrder>1</SortOrder>
      <Result>10840</Result>
      <Rank>1</Rank>
      <RankingItemCode></RankingItemCode>
      <Person>
        <TennisId>ABC1234567</TennisId>
      </Person>
    </RankingItem>
  ...
  </RankingItems>
</Ranking>


{
  "Updated" : "2019-12-31"
  "RankingID" : "349C4B46-9EB6-4E52-9486-38C02911FF03"
  "Name" : "ATP Ranking"
  "Discipline" : "Tennis"
  "RankingType" : "INDIVIDUAL"
  "Gender" : "MALE"
  "RankingItems" : " : [
	{
      "Type" : "Roll Over
      "SortOrder" : "1"
      "Result" : "10840"
      "Rank" : "1"
      "RankingItemCode" : ""
      "Person" : {
        "TennisId" : "ABC1234567
      }
    }

  ...
  ]
}

Related Information


Go back to Tennis Open Data Standards home page.