1 Star 0 Fork 0

Jiashi1998/botbuilder-dotnet

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
baseComponent.schema 2.05 KB
一键复制 编辑 原始数据 按行查看 历史
Chris McConnell 提交于 2020-02-29 08:19 +08:00 . Update base component schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/microsoft/botbuilder-dotnet/{branch}/schemas/component.schema",
"title": "JSON Schema definition for dialog schemas.",
"description": "In order to create a component for Bot Framework .dialog files you need to create a schema file describing your configuration that meets this definition. This extends http://json-schema.org/draft-07/schema#.",
"definitions": {
"role": {
"title": "$role",
"description": "Defines the role played in the dialog schema [expression|union|union(Kind)].",
"type": "string",
"pattern": "^((expression)|(interface)|(implements\\([a-zA-Z][a-zA-Z0-9.]*\\)))$"
},
"id": {
"title": "$id",
"description": "Inline id for reuse of an inline definition",
"type": "string",
"pattern": "^([a-zA-Z][a-zA-Z0-9.]*)$"
},
"copy": {
"title": "$copy",
"description": "Copy the definition by id from a .dialog file.",
"type": "string",
"pattern": "^(([a-zA-Z][a-zA-Z0-9.]*)?(#[a-zA-Z][a-zA-Z0-9.]*)?)$"
},
"kind": {
"title": "$kind",
"description": "Defines the valid properties for the component you are configuring (from a dialog .schema file)",
"type": "string",
"pattern": "^[a-zA-Z][a-zA-Z0-9.]*$"
},
"designer": {
"title": "$designer",
"type": "object",
"description": "Extra information for the Bot Framework Designer."
}
},
"properties": {
"$role": {
"oneOf": [
{
"$ref": "#/definitions/role"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/role"
}
}
]
},
"$kind": {
"$ref": "#/definitions/kind"
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jiashisoft/botbuilder-dotnet.git
git@gitee.com:jiashisoft/botbuilder-dotnet.git
jiashisoft
botbuilder-dotnet
botbuilder-dotnet
master

搜索帮助