addedInput schema / examples
Added value: +[
+ {
+ "fen": "rnbqkbnr/pppppppp/8/8/4P3/8/PPPP1PPP/RNBQKBNR b KQkq e3 0 1",
+ "scope": "lichess"
+ },
+ {
+ "play": "e2e4,c7c5",
+ "player": "hikaru",
+ "scope": "player",
+ "speeds": "blitz,rapid"
+ }
+]
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "fen": {
+ "description": "Position FEN",
+ "type": "string"
+ },
+ "moves": {
+ "description": "Top moves from this position",
+ "items": {
+ "properties": {
+ "averageRating": {
+ "description": "Average player rating",
+ "type": "number"
+ },
+ "black": {
+ "description": "Black wins %",
+ "type": "number"
+ },
+ "draws": {
+ "description": "Draws %",
+ "type": "number"
+ },
+ "games": {
+ "description": "Number of games",
+ "type": "number"
+ },
+ "san": {
+ "description": "Move in SAN notation",
+ "type": "string"
+ },
+ "uci": {
+ "description": "Move in UCI notation",
+ "type": "string"
+ },
+ "white": {
+ "description": "White wins %",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "opening": {
+ "description": "Opening information",
+ "properties": {
+ "eco": {
+ "description": "ECO code",
+ "type": "string"
+ },
+ "name": {
+ "description": "Opening name",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "recentGames": {
+ "description": "Recent games from this position",
+ "items": {
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "topGames": {
+ "description": "Top games from this position",
+ "items": {
+ "properties": {
+ "black": {
+ "properties": {
+ "name": {
+ "description": "Player name",
+ "type": "string"
+ },
+ "rating": {
+ "description": "Rating",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "id": {
+ "description": "Game ID",
+ "type": "string"
+ },
+ "result": {
+ "description": "Game result",
+ "type": "string"
+ },
+ "white": {
+ "properties": {
+ "name": {
+ "description": "Player name",
+ "type": "string"
+ },
+ "rating": {
+ "description": "Rating",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+}