在formflow-json-schema中更改JSON提示符描述

时间:2017-08-29 18:54:41

标签: json botframework

在formflow-json-schema中我想添加下一个描述

  

您的上一份订单包含以下详细信息

我的提示 CustomerOrders ,但目前正在使用EnumSelectOne“请告诉我客户订单:”

JSON

"required": [
"CustomerOrders",
],
"Templates": {
"NotUnderstood": {
  "Patterns": [ "I do not understand \"{0}\".", "Try again, I don't get \"{0}\"." ]
},
"EnumSelectOne": {
  "Patterns": [ "Please let me know the {&}: {||}" ],
  "ChoiceStyle": "Auto"
}
},
"properties": {

  "CustomerOrders": {
    "Templates": {"NoPreference": { "Patterns": [ "None" ] }},
},
  "type": [
    "string",
    "null"
  ],
   "Define": "return await dllOrders (state,field);"

  },

this is sample of problem

1 个答案:

答案 0 :(得分:1)

尝试使用提示属性。

ConstraintLayout