Era.ServerApi.CreateConnectionRequest
Description
Create connection request.
Properties
Name |
JsonSchemaType |
Description |
host |
string |
Network IP address, hostname od DNSSRV record. |
port |
integer |
IP port number from range: 1 - 65535 |
Dual message (request/response)
No dual message.Referenced in messages
No references.JsonSchema
{
"title": "Era.ServerApi.CreateConnectionRequest",
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"required": [
"Era.ServerApi.CreateConnectionRequest"
],
"properties": {
"Era.ServerApi.CreateConnectionRequest": {
"$ref": "#/definitions/CreateConnectionRequest"
}
},
"definitions": {
"CreateConnectionRequest": {
"additionalProperties": false,
"required": [
"host"
],
"type": "object",
"properties": {
"host": {
"type": "string"
},
"port": {
"type": "integer"
}
}
}
}
}