core-lightning/doc/schemas/connect.request.json

22 lines
383 B
JSON
Raw Normal View History

2022-01-26 18:42:49 +01:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": "pubkey",
"description": ""
},
"host": {
"type": "string",
"description": "The hostname of the node."
},
"port": {
"type": "u16",
"description": "Port to try connecting to"
}
}
}