|
schemas / base |
{
"$id": "https://estima.com/chess/wintd/schemas/base.json",
"description":"General demographic information for a tournament player or master player member",
"type": "object",
"properties": {
"name":{"type":"string","description":"Name (last, first)"},
"type":{"type":"string","description":"Sex or other coding for player type. T is team, C is computer, P is pair (for bughouse)","enum":["M","F","T","C","P"]},
"title":{"type":"string","description":"(chess) title of player","maxLength":3},
"id":{"type":"string","description":"ID in whatever system is being used"},
"expiry":{"type":"string","description":"US Chess expiration, coded mmyy with 9999 for life member"},
"stateOrFed":{"type":"string","description":"State or federation code","maxLength":3},
"group":{"type":"string","description":"User-definable prize group","maxLength":2},
"team":{"type":"string","description":"Team code","maxLength":6},
"club":{"type":"string","description":"Club code","maxLength":6},
"prizeteam":{"type":"string","description":"Secondary prize team code","maxLength":6},
"rating":{"type":"number","description":"Main rating"},
"localrate":{"type":"number","description":"Second/local rating"},
"stddev":{"type":"number","description":"Standard deviation of local rating"},
"extra":{"type":"string","description":"User-definable player classification","maxLength":1},
"phone":{"type":"string"},
"email":{"type":"string"},
"birthdate":{"type":"string","description":"birth date in whatever form is convenient"}
},
"required":["name"]
}
Copyright © 2026 Thomas Doan