status-go/tests-functional/schemas/signal_node_started

15 lines
329 B
Plaintext
Raw Normal View History

{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"properties": {
"type": {
"type": "string",
"const": "node.started"
},
"event": {
"type": "null"
}
},
"required": ["type", "event"],
"additionalProperties": false
}