Skip to content

Instantly share code, notes, and snippets.

@arpan-jain
Last active May 10, 2019 08:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arpan-jain/e698bef186dd14da0bc94e28e57b1b4d to your computer and use it in GitHub Desktop.
Save arpan-jain/e698bef186dd14da0bc94e28e57b1b4d to your computer and use it in GitHub Desktop.
Schema for Standings Card

Schema


Properties

Property Type Required Nullable Defined by
authRequired boolean Required No (this schema)
ctaText enum Required No (this schema)
ctaText2 enum Required No (this schema)
ctaUri string Required No (this schema)
ctaUri2 string Required No (this schema)
data object[] Required No (this schema)
title enum Required No (this schema)
type enum Required No (this schema)

authRequired

authRequired

  • is required
  • type: boolean
  • defined in this schema denotes whether authorization is required or not on the CTA link provided

authRequired Type

boolean

ctaText

ctaText

  • is required
  • type: enum
  • defined in this schema

The value of this property must be equal to one of the known values below.

ctaText Known Values

Value Description
View Standings

ctaText2

ctaText2

  • is required
  • type: enum
  • defined in this schema

The value of this property must be equal to one of the known values below.

ctaText2 Known Values

Value Description
View Standings

ctaUri

ctaUri

  • is required
  • type: string
  • defined in this schema

ctaUri Type

string

  • format: uri – Uniformous Resource Identifier (according to RFC3986)
  • minimum length: 1 characters

ctaUri2

ctaUri2

  • is required
  • type: string
  • defined in this schema

ctaUri2 Type

string

  • format: uri – Uniformous Resource Identifier (according to RFC3986)
  • minimum length: 1 characters

data

data

  • is required
  • type: object[]
  • at least 3 items in the array
  • defined in this schema

data Type

Array type: object[]

All items must be of the type: object with following properties:

Property Type Required
matchesDrawn integer Required
matchesLost integer Required
matchesPlayed integer Required
matchesTied integer Required
matchesWon integer Required
nrr number Required
points integer Required
position integer Required
teamImage string Required
teamName string Required
teamShortName string Required
tournamentName string Required

matchesDrawn

matchesDrawn

  • is required
  • type: integer
matchesDrawn Type

integer

  • minimum value: 0

matchesLost

matchesLost

  • is required
  • type: integer
matchesLost Type

integer

  • minimum value: 0

matchesPlayed

matchesPlayed

  • is required
  • type: integer
matchesPlayed Type

integer

  • minimum value: 0

matchesTied

matchesTied

  • is required
  • type: integer
matchesTied Type

integer

  • minimum value: 0

matchesWon

matchesWon

  • is required
  • type: integer
matchesWon Type

integer

  • minimum value: 0

nrr

nrr

  • is required
  • type: number
nrr Type

number

points

points

  • is required
  • type: integer
points Type

integer

position

position

  • is required
  • type: integer
position Type

integer

teamImage

teamImage

  • is required
  • type: string
teamImage Type

string

  • format: uri – Uniformous Resource Identifier (according to RFC3986)
  • minimum length: 1 characters

teamName

teamName

  • is required
  • type: string
teamName Type

string

  • minimum length: 1 characters

teamShortName

teamShortName

  • is required
  • type: string
teamShortName Type

string

  • minimum length: 1 characters

tournamentName

tournamentName

  • is required
  • type: string
tournamentName Type

string

  • minimum length: 1 characters

title

title

  • is required
  • type: enum
  • defined in this schema

The value of this property must be equal to one of the known values below.

title Known Values

Value Description
TOURNAMENT STANDINGS

type

type

  • is required
  • type: enum
  • defined in this schema

The value of this property must be equal to one of the known values below.

type Known Values

Value Description
TOURNAMENT_STANDINGS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment