-
Notifications
You must be signed in to change notification settings - Fork 7
/
schema_client-config.json
97 lines (97 loc) · 4.78 KB
/
schema_client-config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://github.com/Enfernuz/quik-lua-rpc-java-client/schema_client-config.json",
"title": "Схема конфигурации клиента QLua RPC-сервиса",
"description": "Конфигурация клиента QLua RPC-сервиса",
"type": "object",
"properties": {
"address": {
"description": "Адрес точки подключения к QLua RPC-сервису",
"type": "object",
"properties": {
"host": {
"description": "IP-адрес/хост точки подключения к QLua RPC-сервису",
"type": "string",
"minLength": 1
},
"port": {
"description": "Номер порта точки подключения к QLua RPC-сервису",
"type": "number",
"minimum": 0,
"maximum": 65535
}
},
"required": ["host", "port"]
},
"serde_protocol": {
"description": "Протокол сериализации/десериализации сообщений",
"type": "string",
"pattern": "protobuf|json"
},
"auth": {
"description": "Информация об используемом механизме аутентификации соединения",
"type": "object",
"properties": {
"mechanism": {
"description": "Тип механизма аутентификации ZeroMQ",
"type": "string",
"pattern": "NULL|PLAIN|CURVE"
},
"plain": {
"description": "Информация о простом механизме аутентификации соединения (пара 'пользователь/пароль')",
"type": "object",
"properties": {
"username": {
"description": "Пользователь",
"type": "string",
"minLength": 1
},
"password": {
"description": "Пароль",
"type": "string"
}
},
"required": ["username", "password"]
},
"curve": {
"description": "Информация о механизме аутентификации соединения с использованием шифрования",
"type": "object",
"properties": {
"client": {
"description": "Ключевая пара клиента",
"type": "object",
"properties": {
"public": {
"description": "Публичный CURVE-ключ клиента в формате Z85",
"type": "string",
"pattern": "^[0-9a-zA-Z.\\-:+=^!/*?&<>()\\[\\]{\\}@%$#]{40}$"
},
"secret": {
"description": "Приватный CURVE-ключ клиента в формате Z85",
"type": "string",
"pattern": "^[0-9a-zA-Z.\\-:+=^!/*?&<>()\\[\\]{\\}@%$#]{40}$"
}
},
"required": ["public", "secret"]
},
"server": {
"description": "Информация о CURVE-ключе точки подключения",
"type": "object",
"properties": {
"public": {
"description": "Публичный CURVE-ключ точки подключения в формате Z85",
"type": "string",
"pattern": "^[0-9a-zA-Z.\\-:+=^!/*?&<>()\\[\\]{\\}@%$#]{40}$"
}
},
"required": ["public"]
}
},
"required": ["client", "server"]
}
},
"required": ["mechanism"]
}
},
"required": ["address", "serde_protocol", "auth"]
}