push_broadcast_round_pgn
Send PGN-formatted chess games to a specified broadcast round on Lichess. Input includes broadcast ID, round ID, and PGN data to update the round with new game information.
Instructions
Push PGN to a broadcast round
Input Schema
Name | Required | Description | Default |
---|---|---|---|
broadcastId | Yes | ID of the broadcast | |
pgn | Yes | PGN games to push | |
roundId | Yes | ID of the round |
Input Schema (JSON Schema)
{
"properties": {
"broadcastId": {
"description": "ID of the broadcast",
"type": "string"
},
"pgn": {
"description": "PGN games to push",
"type": "string"
},
"roundId": {
"description": "ID of the round",
"type": "string"
}
},
"required": [
"broadcastId",
"roundId",
"pgn"
],
"type": "object"
}