Last active
December 11, 2025 16:06
-
-
Save S1M0N38/f0fafbc76e1b057820533582276d7fec to your computer and use it in GitHub Desktop.
Fixtures Schema for BalatroBot and BalatroLLM
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "http://json-schema.org/draft-07/schema#", | |
| "title": "BalatroBot and BalatroLLM Test Fixtures Schema", | |
| "type": "object", | |
| "properties": { | |
| "$schema": {"type": "string"} | |
| }, | |
| "additionalProperties": { | |
| "type": "object", | |
| "additionalProperties": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "required": ["method", "params"], | |
| "properties": { | |
| "method": {"type": "string"}, | |
| "params": {"type": "object"} | |
| } | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment