salix/back/models/chat-config.json

35 lines
710 B
JSON
Raw Permalink Normal View History

{
"name": "ChatConfig",
"description": "Chat API config",
"base": "VnModel",
"options": {
"mysql": {
"table": "chatConfig"
}
},
"properties": {
"id": {
"id": true,
2022-05-12 07:47:47 +00:00
"type": "number",
"description": "Identifier"
},
2019-12-27 07:49:51 +00:00
"host": {
2022-05-12 07:47:47 +00:00
"type": "string"
2019-12-27 07:49:51 +00:00
},
"api": {
2022-05-12 07:47:47 +00:00
"type": "string"
},
"user": {
2022-05-12 07:47:47 +00:00
"type": "string"
},
"password": {
2022-05-12 07:47:47 +00:00
"type": "string"
}
},
"acls": [{
"accessType": "READ",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
}]
}