telegabber/config_schema.json

99 lines
2.4 KiB
JSON
Raw Normal View History

2019-10-25 18:12:38 +00:00
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"required": [":telegram", ":xmpp"],
"properties": {
":telegram": {
"type": "object",
"required": [":loglevel", ":content", ":tdlib"],
"properties": {
":loglevel": {
"$ref": "#/definitions/non-empty-string"
},
":content": {
"type": "object",
"properties": {
":path": {
"type": "string"
},
":link": {
"type": "string"
},
":upload": {
"type": "string"
}
}
},
":tdlib_verbosity": {
"type": "integer"
},
":tdlib": {
2022-01-26 16:59:38 +00:00
"required": [":client"],
2019-10-25 18:12:38 +00:00
"type": "object",
"properties": {
2022-01-27 06:57:46 +00:00
":datadir": {
"type": "string"
},
2019-10-25 18:12:38 +00:00
":client": {
"type": "object",
"required": [":api_id", ":api_hash"],
"properties": {
":api_id": {
"type": "string",
"pattern": "^[0-9]+$"
2019-10-25 18:12:38 +00:00
},
":api_hash": {
"$ref": "#/definitions/non-empty-string"
},
":device_model": {
"type": "string"
},
":application_version": {
"type": "string"
},
":use_chat_info_database": {
"type": "boolean"
},
":use_secret_chats": {
"type": "boolean"
2019-10-25 18:12:38 +00:00
}
}
}
}
}
}
},
":xmpp": {
"type": "object",
"required": [":loglevel", ":jid", ":host", ":port", ":password", ":db"],
"properties": {
":loglevel": {
"$ref": "#/definitions/non-empty-string"
},
":jid": {
"$ref": "#/definitions/non-empty-string"
},
":host": {
"$ref": "#/definitions/non-empty-string"
},
":port": {
"type": "integer",
"minimum": 1
},
":password": {
"$ref": "#/definitions/non-empty-string"
},
":db": {
"$ref": "#/definitions/non-empty-string"
}
}
}
},
"definitions": {
"non-empty-string": {
"type": "string",
"minLength": 1
}
}
}