From 3d054ebffc8f01df00ae249b4b80331e9b275cb0 Mon Sep 17 00:00:00 2001 From: Aaron Dalton Date: Wed, 8 Nov 2023 09:29:25 -0700 Subject: [PATCH] Don't ask --- src/schemas/gamerecord.d.ts | 3 +++ src/schemas/gamerecord.json | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/schemas/gamerecord.d.ts b/src/schemas/gamerecord.d.ts index 5b7ce40..80d51bb 100644 --- a/src/schemas/gamerecord.d.ts +++ b/src/schemas/gamerecord.d.ts @@ -65,6 +65,9 @@ export interface APGameRecord { * Set to true to explicitly flag a record as 'unrated' */ unrated?: boolean; + /** + * Set to `true` if the pie rule was invoked. + */ pied?: boolean; /** * List of the players and their userids and final scores. They should be listed in seating order (first player, then second player, etc.). Additional properties are accepted, so feel free to include information specifically relevant to a particular game. Any additional properties should be provided consistently for any reports from that site for that game. Note that player order should be as of the *end* of the game. So if the pie rule was invoked, then the seating should reflect the final order. diff --git a/src/schemas/gamerecord.json b/src/schemas/gamerecord.json index b9c6d02..f2f238e 100644 --- a/src/schemas/gamerecord.json +++ b/src/schemas/gamerecord.json @@ -82,7 +82,7 @@ "default": false }, "pied": { - "describe": "Set to `true` if the pie rule was invoked.", + "description": "Set to `true` if the pie rule was invoked.", "type": "boolean", "default": false },