Skip to content

Instantly share code, notes, and snippets.

@S1M0N38
Last active December 11, 2025 16:06
Show Gist options
  • Select an option

  • Save S1M0N38/f0fafbc76e1b057820533582276d7fec to your computer and use it in GitHub Desktop.

Select an option

Save S1M0N38/f0fafbc76e1b057820533582276d7fec to your computer and use it in GitHub Desktop.
Fixtures Schema for BalatroBot and BalatroLLM
{
"$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