Open ethanfrey opened 2 years ago
can you provide a schema for this? Happy to use Record<string, never>
or something similar, just need to know what schema produces this.
Here is the section:
"query": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "QueryMsg",
"oneOf": [
{
"type": "object",
"required": [
"config"
],
"properties": {
"config": {
"type": "object",
"additionalProperties": false
}
},
"additionalProperties": false
}
]
},
Note sure how to upload JSON file here
Got some messages from eslint. Maybe you can adjust for the empty objects we love in Rust.
Code:
Error message:
I just manually updated mine to
Record<string, never>