Model - Add Closed List
将列表实体模型添加到应用程序的某个版本。
POST {Endpoint}/luis/api/v2.0/apps/{appId}/versions/{versionId}/closedlists
URI 参数
| 名称 | 在 | 必需 | 类型 | 说明 |
|---|---|---|---|---|
|
app
|
path | True |
string (uuid) |
应用程序 ID。 |
|
Endpoint
|
path | True |
string |
支持的认知服务终结点(协议和主机名,例如:https://westus.api.cognitive.microsoft.com)。 |
|
version
|
path | True |
string |
版本 ID。 |
请求头
| 名称 | 必需 | 类型 | 说明 |
|---|---|---|---|
| Ocp-Apim-Subscription-Key | True |
string |
请求正文
| 名称 | 类型 | 说明 |
|---|---|---|
| name |
string |
列表实体的名称。 |
| subLists |
该功能的子列表。 |
响应
| 名称 | 类型 | 说明 |
|---|---|---|
| 201 Created |
string |
创建的模型的 ID。 |
| Other Status Codes |
错误响应。 |
安全性
Ocp-Apim-Subscription-Key
类型:
apiKey
在:
header
示例
Successful Create Closed List Entity Model request
示例请求
POST {Endpoint}/luis/api/v2.0/apps/86226c53-b7a6-416f-876b-226b2b5ab07b/versions/0.1/closedlists
{
"name": "States",
"subLists": [
{
"canonicalForm": "New York",
"list": [
"NY",
"New York"
]
},
{
"canonicalForm": "Washington",
"list": [
"Washington",
"WA"
]
},
{
"canonicalForm": "California",
"list": [
"California",
"CA",
"Calif.",
"Cal."
]
}
]
}
示例响应
"8713b104-78ec-4c4f-9f96-f2e53562cc16"
定义
| 名称 | 说明 |
|---|---|
|
Closed |
用于创建列表实体的对象模型。 |
|
Error |
调用 API 上的作时出现错误响应。 |
|
Word |
列表实体的项的子列表。 |
ClosedListModelCreateObject
用于创建列表实体的对象模型。
| 名称 | 类型 | 说明 |
|---|---|---|
| name |
string |
列表实体的名称。 |
| subLists |
该功能的子列表。 |
ErrorResponse
调用 API 上的作时出现错误响应。
| 名称 | 类型 | 说明 |
|---|---|---|
| errorType |
string |
WordListObject
列表实体的项的子列表。
| 名称 | 类型 | 说明 |
|---|---|---|
| canonicalForm |
string |
列表表示的标准窗体。 |
| list |
string[] |
同义词列表。 |