{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "NodeCreate",
"type": "object",
"description": "Request body for creating a new node.",
"properties": {
"name": {
"type": "string",
"description": "Name of the node. If the name is an IP address, the address property is optional."
},
"address": {
"type": "string",
"description": "IP address of the node. Required if the name is not an IP address."
},
"partition": {
"type": "string"
},
"description": {
"type": "string"
},
"connectionLimit": {
"type": "integer"
},
"monitor": {
"type": "string"
},
"rateLimit": {
"type": "string"
},
"ratio": {
"type": "integer"
},
"fqdn": {
"type": "object"
}
}
}