Pattern - List Intent Patterns
返回应用程序版本中特定意向的模式。
GET {Endpoint}/luis/api/v2.0/apps/{appId}/versions/{versionId}/intents/{intentId}/patternrulesGET {Endpoint}/luis/api/v2.0/apps/{appId}/versions/{versionId}/intents/{intentId}/patternrules?skip={skip}&take={take}URI 参数
| 名称 | 在 | 必需 | 类型 | 说明 | 
|---|---|---|---|---|
| app | path | True | string (uuid) | 应用程序 ID。 | 
| Endpoint | path | True | string | 支持的认知服务终结点(协议和主机名,例如:https://westus.api.cognitive.microsoft.com)。 | 
| intent | path | True | string (uuid) | 意向分类器 ID。 | 
| version | path | True | string | 版本 ID。 | 
| skip | query | integerminimum: 0 | 要跳过的条目数。 默认值为 0。 | |
| take | query | integerminimum: 0 maximum: 500 | 要返回的条目数。 最大页面大小为 500。 默认值为 100。 | 
请求头
| 名称 | 必需 | 类型 | 说明 | 
|---|---|---|---|
| Ocp-Apim-Subscription-Key | True | string | 
响应
| 名称 | 类型 | 说明 | 
|---|---|---|
| 200 OK | 检索的模式 | |
| Other Status Codes | 错误响应。 | 
安全性
Ocp-Apim-Subscription-Key
					类型: 
					apiKey
					在: 
					header
			
示例
Successful Get Intent Patterns request
示例请求
GET {Endpoint}/luis/api/v2.0/apps/86226c53-b7a6-416f-876b-226b2b5ab07b/versions/0.1/intents/6dbed7e2-7df6-4cd6-a225-97e6fbe4493d/patternrules?skip=0&take=100
示例响应
[
  {
    "id": "cc8fa554-cc6c-4bcc-97eb-c8e5bc2091b3",
    "pattern": "who's {Name} reporting to?",
    "intent": "report to"
  },
  {
    "id": "58077d3a-4bbb-47ba-8aa9-31c0ead0bf08",
    "pattern": "who's reporting to {Name}?",
    "intent": "report to"
  }
]定义
| 名称 | 说明 | 
|---|---|
| Error | 调用 API 上的作时出现错误响应。 | 
| Pattern | 模式规则 | 
ErrorResponse 
			
			调用 API 上的作时出现错误响应。
| 名称 | 类型 | 说明 | 
|---|---|---|
| errorType | string | 
PatternRuleInfo  
			
			模式规则
| 名称 | 类型 | 说明 | 
|---|---|---|
| id | string (uuid) | 模式 ID。 | 
| intent | string | 模式所属的意向名称。 | 
| pattern | string | 模式文本。 |