在设置我的原理图时,我看到我可以提示输入以下任何类型 String | 布尔值 | 数组 | 号码 | 整数 | 空 | 目的。
我正在尝试设置一个示意图,提示用户从可用模块列表中选择一个模块。因此,例如,用户会看到如下内容:
What module are you adding this store to?
> Foo
Bar
Baz
虽然有大量字符串和布尔提示的示例,但没有人提供我为数组提示找到的示例。对于我的生活,我无法弄清楚如何在数组中提供选项以提示用户从中进行选择,而这根本不会出现在他们的文档中。
{
"$schema": "http://json-schema.org/schema",
"id": "SchematicsIDXStoreGen",
"title": "IDX Store Gen Schema",
"type": "object",
"properties": {
"featureName": {
"type": "string",
"description": "The name of the store",
"x-prompt": "What is the name of the store you'd like to create"
},
"module": {
"type": "array",
"description": "Select the appropriate module",
"x-prompt": "What module are you adding this store to?" // I want to provide a list of available modules here.
}
},
"required": ["featureName", "module"]
}