mirror of
https://github.com/status-im/status-go.git
synced 2025-01-18 02:31:47 +00:00
35dc84fa7f
* test_: add multiple status-backend instances * test_: reliable schemas
35 lines
833 B
Plaintext
35 lines
833 B
Plaintext
{
|
|
"$schema": "https://json-schema.org/draft/2019-09/schema",
|
|
"$id": "http://example.com/example.json",
|
|
"type": "object",
|
|
"required": [
|
|
"id",
|
|
"jsonrpc",
|
|
"result"
|
|
],
|
|
"properties": {
|
|
"id": {
|
|
"type": "string"
|
|
},
|
|
"jsonrpc": {
|
|
"type": "string"
|
|
},
|
|
"result": {
|
|
"type": "object",
|
|
"patternProperties": {
|
|
"^[a-zA-Z0-9_]+$": {
|
|
"type": "object",
|
|
"required": ["usd"],
|
|
"properties": {
|
|
"usd": {
|
|
"type": "number"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"additionalProperties": false,
|
|
"minProperties": 1
|
|
}
|
|
}
|
|
}
|