{"openapi":"3.0.0","info":{"title":"LUIS Authoring Client","version":"3.0-preview","x-apisguru-categories":["cloud"],"x-logo":{"url":"https://assets.onestore.ms/cdnfiles/onestorerolling-1606-01000/shell/v3/images/logo/microsoft.png"},"x-origin":[{"format":"swagger","url":"https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/cognitiveservices/data-plane/LUIS/Authoring/preview/v3.0/LUIS-Authoring.json","version":"2.0"}],"x-preferred":true,"x-providerName":"azure.com","x-serviceName":"cognitiveservices-LUIS-Authoring","x-tags":["Azure","Microsoft"]},"security":[{"apiKeyHeader":[]}],"paths":{"/apps/":{"get":{"description":"Lists all of the user's applications.","operationId":"Apps_List","parameters":[{"$ref":"#/components/parameters/SkipInPath"},{"$ref":"#/components/parameters/TakeInPath"}],"responses":{"200":{"description":"A list of the user applications.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApplicationsInfoList"},"examples":{"Successful Get Applications List request":{"$ref":"#/components/examples/Successful_Get_Applications_List_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"description":"Creates a new LUIS app.","operationId":"Apps_Add","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApplicationCreateObject"}}},"description":"An application containing Name, Description (optional), Culture, Usage Scenario (optional), Domain (optional) and initial version ID (optional) of the application. Default value for the version ID is \"0.1\". Note: the culture cannot be changed after the app is created.","required":true},"responses":{"201":{"description":"The ID of the created application.","x-nullable":false,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GuidResponse"},"examples":{"Successful Application Creation":{"$ref":"#/components/examples/Successful_Application_Creation"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/assistants":{"get":{"description":"Gets the endpoint URLs for the prebuilt Cortana applications.","operationId":"Apps_ListCortanaEndpoints","responses":{"200":{"description":"A personal assistant apps JSON object containing the endpoint URLs for Cortana applications and the user's endpoint keys.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PersonalAssistantsResponse"},"examples":{"Successful Get Personal Assistant Applications":{"$ref":"#/components/examples/Successful_Get_Personal_Assistant_Applications"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/cultures":{"get":{"description":"Gets a list of supported cultures. Cultures are equivalent to the written language and locale. For example,\"en-us\" represents the U.S. variation of English.","operationId":"Apps_ListSupportedCultures","responses":{"200":{"description":"A list object containing the supported application cultures.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AvailableCultures"},"examples":{"Successful Get Application Cultures request":{"$ref":"#/components/examples/Successful_Get_Application_Cultures_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/customprebuiltdomains":{"get":{"description":"Gets all the available custom prebuilt domains for all cultures.","operationId":"Apps_ListAvailableCustomPrebuiltDomains","responses":{"200":{"description":"Returns a list of all custom prebuilt domains and their intents/entities representation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PrebuiltDomainsList"},"examples":{"Successful Get Available Custom Prebuilt Domains request":{"$ref":"#/components/examples/Successful_Get_Available_Custom_Prebuilt_Domains_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"description":"Adds a prebuilt domain along with its intent and entity models as a new application.","operationId":"Apps_AddCustomPrebuiltDomain","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PrebuiltDomainCreateObject"}}},"description":"A prebuilt domain create object containing the name and culture of the domain.","required":true},"responses":{"201":{"description":"The ID of the created application.","x-nullable":false,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GuidResponse"},"examples":{"Successful Add Custom Prebuilt Application request":{"$ref":"#/components/examples/Successful_Add_Custom_Prebuilt_Application_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/customprebuiltdomains/{culture}":{"get":{"description":"Gets all the available prebuilt domains for a specific culture.","operationId":"Apps_ListAvailableCustomPrebuiltDomainsForCulture","parameters":[{"description":"Culture.","in":"path","name":"culture","required":true,"schema":{"type":"string"},"examples":{"Successful Get AvailableCustomPrebuiltDomainsForCulture request":{"value":"{culture}"}}}],"responses":{"200":{"description":"Returns a list of all domains and their intents and entities for a specific culture.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PrebuiltDomainsList"},"examples":{"Successful Get AvailableCustomPrebuiltDomainsForCulture request":{"$ref":"#/components/examples/Successful_Get_AvailableCustomPrebuiltDomainsForCulture_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/domains":{"get":{"description":"Gets the available application domains.","operationId":"Apps_ListDomains","responses":{"200":{"description":"A list object containing the available application domains.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AvailableDomains"},"examples":{"Successful Get Application Domains request":{"$ref":"#/components/examples/Successful_Get_Application_Domains_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/import":{"post":{"description":"Imports an application to LUIS, the application's structure is included in the request body.","operationId":"Apps_Import","parameters":[{"description":"The application name to create. If not specified, the application name will be read from the imported object. If the application name already exists, an error is returned.","in":"query","name":"appName","schema":{"type":"string"},"examples":{"Successful Import Application":{"value":"Test LUIS App"}}}],"requestBody":{"$ref":"#/components/requestBodies/LuisApp"},"responses":{"201":{"description":"The ID of the imported application.","x-nullable":false,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GuidResponse"},"examples":{"Successful Import Application":{"$ref":"#/components/examples/Successful_Import_Application"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/usagescenarios":{"get":{"description":"Gets the application available usage scenarios.","operationId":"Apps_ListUsageScenarios","responses":{"200":{"description":"A list object containing the available application usage scenarios.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApplicationUsageScenarios"},"examples":{"Successful Get Application Usage Scenarios request":{"$ref":"#/components/examples/Successful_Get_Application_Usage_Scenarios_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}":{"delete":{"description":"Deletes an application.","operationId":"Apps_Delete","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/ForcePath"}],"responses":{"200":{"description":"Successfully deleted application.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Rename Application request":{"$ref":"#/components/examples/Successful_Rename_Application_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"get":{"description":"Gets the application info.","operationId":"Apps_Get","parameters":[{"$ref":"#/components/parameters/AppIdInPath"}],"responses":{"200":{"description":"The application info.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApplicationInfoResponse"},"examples":{"Successful Get Application Info request":{"$ref":"#/components/examples/Successful_Get_Application_Info_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"put":{"description":"Updates the name or description of the application.","operationId":"Apps_Update","parameters":[{"$ref":"#/components/parameters/AppIdInPath"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApplicationUpdateObject"}}},"description":"A model containing Name and Description of the application.","required":true},"responses":{"200":{"description":"Successfully updated application name and description.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Rename Application request":{"$ref":"#/components/examples/Successful_Rename_Application_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/azureaccounts":{"delete":{"description":"Removes assigned Azure account from the application.","operationId":"AzureAccounts_RemoveFromApp","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/BearerAuthPath"}],"requestBody":{"$ref":"#/components/requestBodies/AzureAccountInfoObject"},"responses":{"200":{"description":"Successful operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful delete assigned azure account request":{"$ref":"#/components/examples/Successful_delete_assigned_azure_account_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"apps - Removes an assigned LUIS Azure account from an application"},"get":{"description":"Gets the LUIS Azure accounts assigned to the application for the user using his ARM token.","operationId":"AzureAccounts_GetAssigned","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/BearerAuthPath"}],"responses":{"200":{"description":"A list of azure account information objects.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AzureAccountInfoList"},"examples":{"Successful Get assigned azure accounts request":{"$ref":"#/components/examples/Successful_Get_assigned_azure_accounts_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"apps - Get LUIS Azure accounts assigned to the application"},"post":{"description":"Assigns an Azure account to the application.","operationId":"AzureAccounts_AssignToApp","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/BearerAuthPath"}],"requestBody":{"$ref":"#/components/requestBodies/AzureAccountInfoObject"},"responses":{"201":{"description":"Successful operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Assign azure account request":{"$ref":"#/components/examples/Successful_Assign_azure_account_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"apps - Assign a LUIS Azure account to an application"}},"/apps/{appId}/endpoints":{"get":{"description":"Returns the available endpoint deployment regions and URLs.","operationId":"Apps_ListEndpoints","parameters":[{"$ref":"#/components/parameters/AppIdInPath"}],"responses":{"200":{"description":"Returns a list of endpoints regions and their corresponding endpoint URL.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AvailableEndpoints"},"examples":{"Successful Get Endpoints request":{"$ref":"#/components/examples/Successful_Get_Endpoints_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/permissions":{"delete":{"description":"Removes a user from the allowed list of users to access this LUIS application. Users are removed using their email address.","operationId":"Permissions_Delete","parameters":[{"$ref":"#/components/parameters/AppIdInPath"}],"requestBody":{"$ref":"#/components/requestBodies/UserCollaborator"},"responses":{"200":{"description":"Successful operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Remove User From Access List":{"$ref":"#/components/examples/Successful_Remove_User_From_Access_List"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"get":{"description":"Gets the list of user emails that have permissions to access your application.","operationId":"Permissions_List","parameters":[{"$ref":"#/components/parameters/AppIdInPath"}],"responses":{"200":{"description":"The list includes a single owner. All collaborators are listed in the emails array.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserAccessList"},"examples":{"Successful Get Application User Access List":{"$ref":"#/components/examples/Successful_Get_Application_User_Access_List"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"description":"Adds a user to the allowed list of users to access this LUIS application. Users are added using their email address.","operationId":"Permissions_Add","parameters":[{"$ref":"#/components/parameters/AppIdInPath"}],"requestBody":{"$ref":"#/components/requestBodies/UserCollaborator"},"responses":{"200":{"description":"Successful operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Add User To Access List":{"$ref":"#/components/examples/Successful_Add_User_To_Access_List"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"put":{"description":"Replaces the current user access list with the new list sent in the body. If an empty list is sent, all access to other users will be removed.","operationId":"Permissions_Update","parameters":[{"$ref":"#/components/parameters/AppIdInPath"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CollaboratorsArray"}}},"description":"A model containing a list of user email addresses.","required":true},"responses":{"200":{"description":"Successful operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Replaces Users From Access List":{"$ref":"#/components/examples/Successful_Replaces_Users_From_Access_List"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/publish":{"post":{"description":"Publishes a specific version of the application.","operationId":"Apps_Publish","parameters":[{"$ref":"#/components/parameters/AppIdInPath"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApplicationPublishObject"}}},"description":"The application publish object. The region is the target region that the application is published to.","required":true},"responses":{"201":{"description":"An object containing the application endpoint URL, its assigned endpoint key and publishing status.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProductionOrStagingEndpointInfo"},"examples":{"Successful Publish Application request":{"$ref":"#/components/examples/Successful_Publish_Application_request"}}}}},"207":{"description":"An object containing the application endpoint URL, its assigned endpoint key and publishing status in case that publishing one or more regions failed.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProductionOrStagingEndpointInfo"},"examples":{"Successful Publish Application request":{"$ref":"#/components/examples/Successful_Publish_Application_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/publishsettings":{"get":{"description":"Get the application publish settings including 'UseAllTrainingData'.","operationId":"Apps_GetPublishSettings","parameters":[{"$ref":"#/components/parameters/AppIdInPath"}],"responses":{"200":{"description":"The application publish settings.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PublishSettings"},"examples":{"Successful Get Publish Settings request":{"$ref":"#/components/examples/Successful_Get_Publish_Settings_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"put":{"description":"Updates the application publish settings including 'UseAllTrainingData'.","operationId":"Apps_UpdatePublishSettings","parameters":[{"$ref":"#/components/parameters/AppIdInPath"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PublishSettingUpdateObject"}}},"description":"An object containing the new publish application settings.","required":true},"responses":{"200":{"description":"Successfully updated application settings.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Update Publish Settings request":{"$ref":"#/components/examples/Successful_Update_Publish_Settings_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/querylogs":{"get":{"description":"Gets the logs of the past month's endpoint queries for the application.","operationId":"Apps_DownloadQueryLogs","parameters":[{"$ref":"#/components/parameters/AppIdInPath"}],"responses":{"200":{"description":"A CSV file containing the query logs for the past month.","content":{"application/octet-stream":{"schema":{"description":"The query logs of an application for the past month in CSV format.","format":"file","type":"object"},"examples":{"Successful Download Application Query logs request":{"$ref":"#/components/examples/Successful_Download_Application_Query_logs_request"}}}}},"default":{"description":"Error Response.","content":{"application/octet-stream":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/settings":{"get":{"description":"Get the application settings including 'UseAllTrainingData'.","operationId":"Apps_GetSettings","parameters":[{"$ref":"#/components/parameters/AppIdInPath"}],"responses":{"200":{"description":"The application settings.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApplicationSettings"},"examples":{"Successful Get Application Settings request":{"$ref":"#/components/examples/Successful_Get_Application_Settings_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"put":{"description":"Updates the application settings including 'UseAllTrainingData'.","operationId":"Apps_UpdateSettings","parameters":[{"$ref":"#/components/parameters/AppIdInPath"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApplicationSettingUpdateObject"}}},"description":"An object containing the new application settings.","required":true},"responses":{"200":{"description":"Successfully updated application settings.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Update Application Settings request":{"$ref":"#/components/examples/Successful_Update_Application_Settings_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions":{"get":{"description":"Gets a list of versions for this application ID.","operationId":"Versions_List","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/SkipInPath"},{"$ref":"#/components/parameters/TakeInPath"}],"responses":{"200":{"description":"A list of all versions of the application.","content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/VersionInfo"},"type":"array"},"examples":{"Successful Get Application Versions info request":{"$ref":"#/components/examples/Successful_Get_Application_Versions_info_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/import":{"post":{"description":"Imports a new version into a LUIS application.","operationId":"Versions_Import","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"description":"The new versionId to import. If not specified, the versionId will be read from the imported object.","in":"query","name":"versionId","schema":{"type":"string"},"examples":{"Successful Import Application":{"value":"0.2"}}}],"requestBody":{"$ref":"#/components/requestBodies/LuisApp"},"responses":{"201":{"description":"The created application version.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/VersionResponse"},"examples":{"Successful Import Application":{"$ref":"#/components/examples/Successful_Import_Application"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/":{"delete":{"description":"Deletes an application version.","operationId":"Versions_Delete","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"responses":{"200":{"description":"Successful operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Delete Application Version request":{"$ref":"#/components/examples/Successful_Delete_Application_Version_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"get":{"description":"Gets the version information such as date created, last modified date, endpoint URL, count of intents and entities, training and publishing status.","operationId":"Versions_Get","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"responses":{"200":{"description":"A model containing the version info.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/VersionInfo"},"examples":{"Successful Get Application Version info request":{"$ref":"#/components/examples/Successful_Get_Application_Version_info_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"put":{"description":"Updates the name or description of the application version.","operationId":"Versions_Update","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TaskUpdateObject"}}},"description":"A model containing Name and Description of the application.","required":true},"responses":{"200":{"description":"Successful operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Rename Application Version request":{"$ref":"#/components/examples/Successful_Rename_Application_Version_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/clone":{"post":{"description":"Creates a new version from the selected version.","operationId":"Versions_Clone","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TaskUpdateObject"}}},"description":"A model containing the new version ID.","required":true},"responses":{"201":{"description":"The new version ID.","content":{"application/json":{"schema":{"type":"string"},"examples":{"Successful Clone Application Version request":{"$ref":"#/components/examples/Successful_Clone_Application_Version_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/closedlists":{"get":{"description":"Gets information about all the list entity models in a version of the application.","operationId":"Model_ListClosedLists","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/SkipInPath"},{"$ref":"#/components/parameters/TakeInPath"}],"responses":{"200":{"description":"A list of list entity model infos.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClosedListEntityExtractorsList"},"examples":{"Successful Get Application Version Closed List Infos request":{"$ref":"#/components/examples/Successful_Get_Application_Version_Closed_List_Infos_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"description":"Adds a list entity model to a version of the application.","operationId":"Model_AddClosedList","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClosedListModelCreateObject"}}},"description":"A model containing the name and words for the new list entity extractor.","required":true},"responses":{"201":{"description":"The ID of the created model.","x-nullable":false,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GuidResponse"},"examples":{"Successful Create Closed List Entity Model request":{"$ref":"#/components/examples/Successful_Create_Closed_List_Entity_Model_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/closedlists/{clEntityId}":{"delete":{"description":"Deletes a list entity model from a version of the application.","operationId":"Model_DeleteClosedList","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The list entity model ID.","in":"path","name":"clEntityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Delete Closed List Entity Info request":{"value":"d1f95436-57ac-4524-ae81-5bdd32668ccf"}}}],"responses":{"200":{"description":"Successfully delete list entity from a version of application.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Delete Closed List Entity Info request":{"$ref":"#/components/examples/Successful_Delete_Closed_List_Entity_Info_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"get":{"description":"Gets information about a list entity in a version of the application.","operationId":"Model_GetClosedList","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The list model ID.","in":"path","name":"clEntityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Get Closed List Entity Info request":{"value":"8713b104-78ec-4c4f-9f96-f2e53562cc16"}}}],"responses":{"200":{"description":"The list model info.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClosedListEntityExtractor"},"examples":{"Successful Get Closed List Entity Info request":{"$ref":"#/components/examples/Successful_Get_Closed_List_Entity_Info_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"patch":{"description":"Adds a batch of sublists to an existing list entity in a version of the application.","operationId":"Model_PatchClosedList","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The list entity model ID.","in":"path","name":"clEntityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Add SubLists to Closed List Entity request":{"value":"d1f95436-57ac-4524-ae81-5bdd32668ccf"}}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClosedListModelPatchObject"}}},"description":"A words list batch.","required":true},"responses":{"200":{"description":"Successfully added sublists to the list entity.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Add SubLists to Closed List Entity request":{"$ref":"#/components/examples/Successful_Add_SubLists_to_Closed_List_Entity_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"put":{"description":"Updates the list entity in a version of the application.","operationId":"Model_UpdateClosedList","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The list model ID.","in":"path","name":"clEntityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Update Closed List Entity Info request":{"value":"d1f95436-57ac-4524-ae81-5bdd32668ccf"}}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClosedListModelUpdateObject"}}},"description":"The new list entity name and words list.","required":true},"responses":{"200":{"description":"Successfully updated list entity name and words list.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Update Closed List Entity Info request":{"$ref":"#/components/examples/Successful_Update_Closed_List_Entity_Info_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/closedlists/{clEntityId}/sublists":{"post":{"description":"Adds a sublist to an existing list entity in a version of the application.","operationId":"Model_AddSubList","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The list entity extractor ID.","in":"path","name":"clEntityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Add Sublist request":{"value":"d1f95436-57ac-4524-ae81-5bdd32668ccf"}}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WordListObject"}}},"description":"Words list.","required":true},"responses":{"201":{"description":"The ID of the newly created sublist.","content":{"application/json":{"schema":{"format":"int64","type":"integer"},"examples":{"Successful Add Sublist request":{"$ref":"#/components/examples/Successful_Add_Sublist_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/closedlists/{clEntityId}/sublists/{subListId}":{"delete":{"description":"Deletes a sublist of a specific list entity model from a version of the application.","operationId":"Model_DeleteSubList","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The list entity extractor ID.","in":"path","name":"clEntityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Delete Sublist request":{"value":"d1f95436-57ac-4524-ae81-5bdd32668ccf"}}},{"description":"The sublist ID.","in":"path","name":"subListId","required":true,"schema":{"type":"integer","format":"int64"},"examples":{"Successful Delete Sublist request":{"value":123}}}],"responses":{"200":{"description":"Successfully deleted sublist.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Delete Sublist request":{"$ref":"#/components/examples/Successful_Delete_Sublist_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"put":{"description":"Updates one of the list entity's sublists in a version of the application.","operationId":"Model_UpdateSubList","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The list entity extractor ID.","in":"path","name":"clEntityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Update Sublist request":{"value":"d1f95436-57ac-4524-ae81-5bdd32668ccf"}}},{"description":"The sublist ID.","in":"path","name":"subListId","required":true,"schema":{"type":"integer","format":"int64"},"examples":{"Successful Update Sublist request":{"value":123}}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WordListBaseUpdateObject"}}},"description":"A sublist update object containing the new canonical form and the list of words.","required":true},"responses":{"200":{"description":"Successfully updated sublist.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Update Sublist request":{"$ref":"#/components/examples/Successful_Update_Sublist_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/closedlists/{entityId}/roles":{"get":{"operationId":"Model_ListClosedListEntityRoles","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"entity Id","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Get Closed List Entity Roles request":{"value":"2d3173b0-983c-43ae-92f8-6f5b5d09a11a"}}}],"responses":{"200":{"description":"A list of the entity roles","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EntityRoleList"},"examples":{"Successful Get Closed List Entity Roles request":{"$ref":"#/components/examples/Successful_Get_Closed_List_Entity_Roles_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Get all roles for a list entity in a version of the application."},"post":{"operationId":"Model_CreateClosedListEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The entity model ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Create Closed List Entity Role request":{"value":"fc821c4e-a2f8-4074-9410-7271b38a692d"}}}],"requestBody":{"$ref":"#/components/requestBodies/EntityRoleCreateObject"},"responses":{"201":{"description":"The ID of the created entity role","x-nullable":false,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GuidResponse"},"examples":{"Successful Create Closed List Entity Role request":{"$ref":"#/components/examples/Successful_Create_Closed_List_Entity_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Create a role for a list entity in a version of the application."}},"/apps/{appId}/versions/{versionId}/closedlists/{entityId}/roles/{roleId}":{"delete":{"operationId":"Model_DeleteClosedListEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The entity ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Delete Prebuilt Entity Role request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}},{"description":"The entity role Id.","in":"path","name":"roleId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Delete Prebuilt Entity Role request":{"value":"a682a962-1f92-4ae7-b8b8-398414e30c12"}}}],"responses":{"200":{"description":"Successfully operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Delete Prebuilt Entity Role request":{"$ref":"#/components/examples/Successful_Delete_Prebuilt_Entity_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Delete a role for a given list entity in a version of the application."},"get":{"operationId":"Model_GetClosedListEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"entity ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Get Closed List Entity Role request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}},{"description":"entity role ID.","in":"path","name":"roleId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Get Closed List Entity Role request":{"value":"a682a962-1f92-4ae7-b8b8-398414e30c12"}}}],"responses":{"200":{"description":"An entity role","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EntityRole"},"examples":{"Successful Get Closed List Entity Role request":{"$ref":"#/components/examples/Successful_Get_Closed_List_Entity_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Get one role for a given list entity in a version of the application."},"put":{"operationId":"Model_UpdateClosedListEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The entity ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Update Closed List Entity Extractor Role request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}},{"description":"The entity role ID.","in":"path","name":"roleId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Update Closed List Entity Extractor Role request":{"value":"6dbed7e2-7df6-4cd6-a225-97e6fbe4493d"}}}],"requestBody":{"$ref":"#/components/requestBodies/EntityRoleUpdateObject"},"responses":{"200":{"description":"Successfully updated the entity role.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Update Closed List Entity Extractor Role request":{"$ref":"#/components/examples/Successful_Update_Closed_List_Entity_Extractor_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Update a role for a given list entity in a version of the application."}},"/apps/{appId}/versions/{versionId}/compositeentities":{"get":{"description":"Gets information about all the composite entity models in a version of the application.","operationId":"Model_ListCompositeEntities","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/SkipInPath"},{"$ref":"#/components/parameters/TakeInPath"}],"responses":{"200":{"description":"A list of composite entity model infos.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/CompositeEntityExtractorsList"},"examples":{"Successful Get Application Version Composite Entity Infos request":{"$ref":"#/components/examples/Successful_Get_Application_Version_Composite_Entity_Infos_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/compositeentities/{cEntityId}":{"delete":{"description":"Deletes a composite entity from a version of the application.","operationId":"Model_DeleteCompositeEntity","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/CEntityIdInPath"}],"responses":{"200":{"description":"Successfully deleted composite entity.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Delete Entity Info request":{"$ref":"#/components/examples/Successful_Delete_Entity_Info_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"get":{"description":"Gets information about a composite entity in a version of the application.","operationId":"Model_GetCompositeEntity","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/CEntityIdInPath"}],"responses":{"200":{"description":"The composite entity model info.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/CompositeEntityExtractor"},"examples":{"Successful Get Composite Entity Info request":{"$ref":"#/components/examples/Successful_Get_Composite_Entity_Info_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"put":{"description":"Updates a composite entity in a version of the application.","operationId":"Model_UpdateCompositeEntity","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/CEntityIdInPath"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CompositeEntityModel"}}},"description":"A model object containing the new entity extractor name and children.","required":true},"responses":{"200":{"description":"Successfully updated composite entity.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Update Composite Entity Extractor request":{"$ref":"#/components/examples/Successful_Update_Composite_Entity_Extractor_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/compositeentities/{cEntityId}/children":{"post":{"description":"Creates a single child in an existing composite entity model in a version of the application.","operationId":"Model_AddCompositeEntityChild","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/CEntityIdInPath"}],"requestBody":{"content":{"application/json":{"schema":{"properties":{"name":{"type":"string"}},"type":"object"}}},"description":"A model object containing the name of the new composite child model.","required":true},"responses":{"201":{"description":"The ID of the created model.","x-nullable":false,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GuidResponse"},"examples":{"Successful Create Composite Entity Child Model request":{"$ref":"#/components/examples/Successful_Create_Composite_Entity_Child_Model_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/compositeentities/{cEntityId}/children/{cChildId}":{"delete":{"description":"Deletes a composite entity extractor child from a version of the application.","operationId":"Model_DeleteCompositeEntityChild","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/CEntityIdInPath"},{"description":"The hierarchical entity extractor child ID.","in":"path","name":"cChildId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Delete Composite Entity Child Model request":{"value":"891c235f-4f42-4320-bc36-b6256b6c3f2b"}}}],"responses":{"200":{"description":"Successfully deleted entity.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Delete Composite Entity Child Model request":{"$ref":"#/components/examples/Successful_Delete_Composite_Entity_Child_Model_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/compositeentities/{cEntityId}/roles":{"get":{"operationId":"Model_ListCompositeEntityRoles","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/CEntityIdInPath"}],"responses":{"200":{"description":"A list of the entity roles","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EntityRoleList"},"examples":{"Successful Get Composite Entity Roles request":{"$ref":"#/components/examples/Successful_Get_Composite_Entity_Roles_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Get all roles for a composite entity in a version of the application"},"post":{"operationId":"Model_CreateCompositeEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/CEntityIdInPath"}],"requestBody":{"$ref":"#/components/requestBodies/EntityRoleCreateObject"},"responses":{"201":{"description":"The ID of the created entity role","x-nullable":false,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GuidResponse"},"examples":{"Successful Create Composite Entity Role request":{"$ref":"#/components/examples/Successful_Create_Composite_Entity_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Create a role for a composite entity in a version of the application."}},"/apps/{appId}/versions/{versionId}/compositeentities/{cEntityId}/roles/{roleId}":{"delete":{"operationId":"Model_DeleteCompositeEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/CEntityIdInPath"},{"description":"The entity role Id.","in":"path","name":"roleId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Delete Composite Entity Role request":{"value":"a682a962-1f92-4ae7-b8b8-398414e30c12"}}}],"responses":{"200":{"description":"Successfully operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Delete Composite Entity Role request":{"$ref":"#/components/examples/Successful_Delete_Composite_Entity_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Delete a role for a given composite entity in a version of the application."},"get":{"operationId":"Model_GetCompositeEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/CEntityIdInPath"},{"description":"entity role ID.","in":"path","name":"roleId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Get Composite Entity Role request":{"value":"a682a962-1f92-4ae7-b8b8-398414e30c12"}}}],"responses":{"200":{"description":"An entity role","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EntityRole"},"examples":{"Successful Get Composite Entity Role request":{"$ref":"#/components/examples/Successful_Get_Composite_Entity_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Get one role for a given composite entity in a version of the application"},"put":{"operationId":"Model_UpdateCompositeEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/CEntityIdInPath"},{"description":"The entity role ID.","in":"path","name":"roleId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Update Composite Entity Extractor Role request":{"value":"6dbed7e2-7df6-4cd6-a225-97e6fbe4493d"}}}],"requestBody":{"$ref":"#/components/requestBodies/EntityRoleUpdateObject"},"responses":{"200":{"description":"Successfully updated the entity role.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Update Composite Entity Extractor Role request":{"$ref":"#/components/examples/Successful_Update_Composite_Entity_Extractor_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Update a role for a given composite entity in a version of the application"}},"/apps/{appId}/versions/{versionId}/customprebuiltdomains":{"post":{"description":"Adds a customizable prebuilt domain along with all of its intent and entity models in a version of the application.","operationId":"Model_AddCustomPrebuiltDomain","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PrebuiltDomainCreateBaseObject"}}},"description":"A prebuilt domain create object containing the name of the domain.","required":true},"responses":{"201":{"description":"An array of the created customizable prebuilt domain intent and entity model Ids.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/GuidList"},"examples":{"Successful Add Custom Prebuilt Domain to Application request":{"$ref":"#/components/examples/Successful_Add_Custom_Prebuilt_Domain_to_Application_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/customprebuiltdomains/{domainName}":{"delete":{"description":"Deletes a prebuilt domain's models in a version of the application.","operationId":"Model_DeleteCustomPrebuiltDomain","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"Domain name.","in":"path","name":"domainName","required":true,"schema":{"type":"string"},"examples":{"Successful Delete Prebuilt Domain from Application request":{"value":"Web"}}}],"responses":{"200":{"description":"Successful operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Delete Prebuilt Domain from Application request":{"$ref":"#/components/examples/Successful_Delete_Prebuilt_Domain_from_Application_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/customprebuiltentities":{"get":{"description":"Gets all prebuilt entities used in a version of the application.","operationId":"Model_ListCustomPrebuiltEntities","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"responses":{"200":{"description":"Returns a list of all prebuilt entities and their representations.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EntityExtractorsList"},"examples":{"Successful Get Custom Prebuilt Domain Entities request":{"$ref":"#/components/examples/Successful_Get_Custom_Prebuilt_Domain_Entities_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"description":"Adds a prebuilt entity model to a version of the application.","operationId":"Model_AddCustomPrebuiltEntity","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PrebuiltDomainModelCreateObject"}}},"description":"A model object containing the name of the prebuilt entity and the name of the domain to which this model belongs.","required":true},"responses":{"201":{"description":"The ID of the created prebuilt model.","x-nullable":false,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GuidResponse"},"examples":{"Successful Add Custom Prebuilt Entity request":{"$ref":"#/components/examples/Successful_Add_Custom_Prebuilt_Entity_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/customprebuiltentities/{entityId}/roles":{"get":{"operationId":"Model_ListCustomPrebuiltEntityRoles","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"entity Id","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Get Custom Prebuilt Entity Roles request":{"value":"2d3173b0-983c-43ae-92f8-6f5b5d09a11a"}}}],"responses":{"200":{"description":"A list of the entity roles","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EntityRoleList"},"examples":{"Successful Get Custom Prebuilt Entity Roles request":{"$ref":"#/components/examples/Successful_Get_Custom_Prebuilt_Entity_Roles_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Get all roles for a prebuilt entity in a version of the application"},"post":{"operationId":"Model_CreateCustomPrebuiltEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The entity model ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Create Custom Prebuilt Entity Role request":{"value":"fc821c4e-a2f8-4074-9410-7271b38a692d"}}}],"requestBody":{"$ref":"#/components/requestBodies/EntityRoleCreateObject"},"responses":{"201":{"description":"The ID of the created entity role","x-nullable":false,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GuidResponse"},"examples":{"Successful Create Custom Prebuilt Entity Role request":{"$ref":"#/components/examples/Successful_Create_Custom_Prebuilt_Entity_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Create a role for a prebuilt entity in a version of the application."}},"/apps/{appId}/versions/{versionId}/customprebuiltentities/{entityId}/roles/{roleId}":{"delete":{"operationId":"Model_DeleteCustomEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The entity ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Delete Custom Prebuilt Entity Role request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}},{"description":"The entity role Id.","in":"path","name":"roleId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Delete Custom Prebuilt Entity Role request":{"value":"a682a962-1f92-4ae7-b8b8-398414e30c12"}}}],"responses":{"200":{"description":"Successfully operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Delete Custom Prebuilt Entity Role request":{"$ref":"#/components/examples/Successful_Delete_Custom_Prebuilt_Entity_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Delete a role for a given prebuilt entity in a version of the application."},"get":{"operationId":"Model_GetCustomEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"entity ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Get Custom Prebuilt Domain Entity Role request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}},{"description":"entity role ID.","in":"path","name":"roleId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Get Custom Prebuilt Domain Entity Role request":{"value":"a682a962-1f92-4ae7-b8b8-398414e30c12"}}}],"responses":{"200":{"description":"An entity role","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EntityRole"},"examples":{"Successful Get Custom Prebuilt Domain Entity Role request":{"$ref":"#/components/examples/Successful_Get_Custom_Prebuilt_Domain_Entity_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Get one role for a given prebuilt entity in a version of the application."},"put":{"operationId":"Model_UpdateCustomPrebuiltEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The entity ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Update Custom Prebuilt Entity Extractor Role request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}},{"description":"The entity role ID.","in":"path","name":"roleId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Update Custom Prebuilt Entity Extractor Role request":{"value":"6dbed7e2-7df6-4cd6-a225-97e6fbe4493d"}}}],"requestBody":{"$ref":"#/components/requestBodies/EntityRoleUpdateObject"},"responses":{"200":{"description":"Successfully updated the entity role.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Update Custom Prebuilt Entity Extractor Role request":{"$ref":"#/components/examples/Successful_Update_Custom_Prebuilt_Entity_Extractor_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Update a role for a given prebuilt entity in a version of the application."}},"/apps/{appId}/versions/{versionId}/customprebuiltintents":{"get":{"description":"Gets information about customizable prebuilt intents added to a version of the application.","operationId":"Model_ListCustomPrebuiltIntents","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"responses":{"200":{"description":"Returns a list of all customizable prebuilt intents and their representations in a version of the application.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/IntentClassifiersList"},"examples":{"Successful Get Custom Prebuilt Intent request":{"$ref":"#/components/examples/Successful_Get_Custom_Prebuilt_Intent_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"description":"Adds a customizable prebuilt intent model to a version of the application.","operationId":"Model_AddCustomPrebuiltIntent","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PrebuiltDomainModelCreateObject"}}},"description":"A model object containing the name of the customizable prebuilt intent and the name of the domain to which this model belongs.","required":true},"responses":{"201":{"description":"The ID of the created intent model.","x-nullable":false,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GuidResponse"},"examples":{"Successful Add Custom Prebuilt Intent request":{"$ref":"#/components/examples/Successful_Add_Custom_Prebuilt_Intent_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/customprebuiltmodels":{"get":{"description":"Gets all prebuilt intent and entity model information used in a version of this application.","operationId":"Model_ListCustomPrebuiltModels","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"responses":{"200":{"description":"Returns a list of all prebuilt models and their representations.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/CustomPrebuiltModelList"},"examples":{"Successful Get Custom Prebuilt Domain Models request":{"$ref":"#/components/examples/Successful_Get_Custom_Prebuilt_Domain_Models_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/entities":{"get":{"description":"Gets information about all the simple entity models in a version of the application.","operationId":"Model_ListEntities","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/SkipInPath"},{"$ref":"#/components/parameters/TakeInPath"}],"responses":{"200":{"description":"A list of entity model infos.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/NDepthEntityExtractorsList"},"examples":{"Successful Get Application Version Entity Infos request":{"$ref":"#/components/examples/Successful_Get_Application_Version_Entity_Infos_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"description":"Adds an entity extractor to a version of the application.","operationId":"Model_AddEntity","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EntityModelCreateObject"}}},"description":"A model object containing the name of the new entity extractor and its children.","required":true},"responses":{"201":{"description":"The ID of the created model.","x-nullable":false,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GuidResponse"},"examples":{"Successful Create Entity Extractor request":{"$ref":"#/components/examples/Successful_Create_Entity_Extractor_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/entities/{entityId}":{"delete":{"description":"Deletes an entity or a child from a version of the application.","operationId":"Model_DeleteEntity","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The entity extractor or the child entity extractor ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Delete Entity Info request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}}],"responses":{"200":{"description":"Successfully deleted entity.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Delete Entity Info request":{"$ref":"#/components/examples/Successful_Delete_Entity_Info_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"get":{"description":"Gets information about an entity model in a version of the application.","operationId":"Model_GetEntity","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The entity extractor ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Get Entity Info request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}}],"responses":{"200":{"description":"An entity model info.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/NDepthEntityExtractor"},"examples":{"Successful Get Entity Info request":{"$ref":"#/components/examples/Successful_Get_Entity_Info_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"patch":{"description":"Updates the name of an entity extractor or the name and instanceOf model of a child entity extractor.","operationId":"Model_UpdateEntityChild","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The entity extractor or the child entity extractor ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Update Entity Extractor request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EntityModelUpdateObject"}}},"description":"A model object containing the name new entity extractor or the name and instance of model of a child entity extractor ","required":true},"responses":{"200":{"description":"Successful operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Update Entity Extractor request":{"$ref":"#/components/examples/Successful_Update_Entity_Extractor_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/entities/{entityId}/children":{"post":{"description":"Creates a single child in an existing entity model hierarchy in a version of the application.","operationId":"Model_AddEntityChild","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The entity extractor ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Create Entity Child Model request":{"value":"fe559c31-9778-42ea-ba45-94e0bd7cf767"}}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ChildEntityModelCreateObject"}}},"description":"A model object containing the name of the new child model and its children.","required":true},"responses":{"201":{"description":"The ID of the created model.","x-nullable":false,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GuidResponse"},"examples":{"Successful Create Entity Child Model request":{"$ref":"#/components/examples/Successful_Create_Entity_Child_Model_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/entities/{entityId}/features":{"delete":{"description":"Deletes a relation from the feature relations used by the entity in a version of the application.","operationId":"Model_DeleteEntityFeature","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/EntityIdInPath"}],"requestBody":{"$ref":"#/components/requestBodies/ModelFeatureInformation"},"responses":{"200":{"description":"Successful operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Delete feature relation request":{"$ref":"#/components/examples/Successful_Delete_feature_relation_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"get":{"description":"Gets the information of the features used by the entity in a version of the application.","operationId":"Model_GetEntityFeatures","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/EntityIdInPath"}],"responses":{"200":{"description":"A list of feature information objects for the entity.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FeaturesPerModelResponseObject"},"examples":{"Successful Get Features information request":{"$ref":"#/components/examples/Successful_Get_Features_information_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"description":"Adds a new feature relation to be used by the entity in a version of the application.","operationId":"Features_AddEntityFeature","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/EntityIdInPath"}],"requestBody":{"$ref":"#/components/requestBodies/ModelFeatureInformation2"},"responses":{"200":{"description":"Successful operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Add Feature Relation request":{"$ref":"#/components/examples/Successful_Add_Feature_Relation_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"put":{"description":"Updates the information of the features used by the entity in a version of the application.","operationId":"Model_ReplaceEntityFeatures","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/EntityIdInPath"}],"requestBody":{"$ref":"#/components/requestBodies/FeaturesPerModelResponseObject"},"responses":{"200":{"description":"Successful operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Replace Features request":{"$ref":"#/components/examples/Successful_Replace_Features_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/entities/{entityId}/roles":{"get":{"operationId":"Model_ListEntityRoles","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"entity Id","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Get Entity Roles request":{"value":"2d3173b0-983c-43ae-92f8-6f5b5d09a11a"}}}],"responses":{"200":{"description":"A list of the entity roles","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EntityRoleList"},"examples":{"Successful Get Entity Roles request":{"$ref":"#/components/examples/Successful_Get_Entity_Roles_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Get all roles for an entity in a version of the application"},"post":{"operationId":"Model_CreateEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The entity model ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Create Entity Role request":{"value":"fc821c4e-a2f8-4074-9410-7271b38a692d"}}}],"requestBody":{"$ref":"#/components/requestBodies/EntityRoleCreateObject"},"responses":{"201":{"description":"The ID of the created entity role","x-nullable":false,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GuidResponse"},"examples":{"Successful Create Entity Role request":{"$ref":"#/components/examples/Successful_Create_Entity_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Create an entity role in a version of the application."}},"/apps/{appId}/versions/{versionId}/entities/{entityId}/roles/{roleId}":{"delete":{"operationId":"Model_DeleteEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The entity ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Delete Entity Extractor Role request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}},{"description":"The entity role Id.","in":"path","name":"roleId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Delete Entity Extractor Role request":{"value":"a682a962-1f92-4ae7-b8b8-398414e30c12"}}}],"responses":{"200":{"description":"Successfully operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Delete Entity Extractor Role request":{"$ref":"#/components/examples/Successful_Delete_Entity_Extractor_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Delete an entity role in a version of the application."},"get":{"operationId":"Model_GetEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"entity ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Get Entity Extractor Role request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}},{"description":"entity role ID.","in":"path","name":"roleId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Get Entity Extractor Role request":{"value":"a682a962-1f92-4ae7-b8b8-398414e30c12"}}}],"responses":{"200":{"description":"An entity role","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EntityRole"},"examples":{"Successful Get Entity Extractor Role request":{"$ref":"#/components/examples/Successful_Get_Entity_Extractor_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Get one role for a given entity in a version of the application"},"put":{"operationId":"Model_UpdateEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The entity ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Update Entity Extractor Role request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}},{"description":"The entity role ID.","in":"path","name":"roleId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Update Entity Extractor Role request":{"value":"6dbed7e2-7df6-4cd6-a225-97e6fbe4493d"}}}],"requestBody":{"$ref":"#/components/requestBodies/EntityRoleUpdateObject"},"responses":{"200":{"description":"Successfully updated the entity role.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Update Entity Extractor Role request":{"$ref":"#/components/examples/Successful_Update_Entity_Extractor_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Update a role for a given entity in a version of the application."}},"/apps/{appId}/versions/{versionId}/entities/{entityId}/suggest":{"get":{"description":"Get suggested example utterances that would improve the accuracy of the entity model in a version of the application.","operationId":"Model_ListEntitySuggestions","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The target entity extractor model to enhance.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Get Entity Suggestion Examples":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}},{"$ref":"#/components/parameters/TakeInPath"}],"responses":{"200":{"description":"If there's no trained entity model, nothing is returned in the response. If there's a trained model and active learning finds any relevant queries, they are returned with the entity model predictions. If there's a trained model but active learning didn't find any relevant queries, an empty list is returned in the response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EntitiesSuggestionExamples"},"examples":{"Successful Get Entity Suggestion Examples":{"$ref":"#/components/examples/Successful_Get_Entity_Suggestion_Examples"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/example":{"post":{"description":"Adds a labeled example utterance in a version of the application.","operationId":"Examples_Add","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ExampleLabelObject"}}},"description":"A labeled example utterance with the expected intent and entities.","required":true},"responses":{"201":{"description":"The ID of the created example utterance.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/LabelExampleResponse"},"examples":{"Successful Add Label request":{"$ref":"#/components/examples/Successful_Add_Label_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/examples":{"get":{"description":"Returns example utterances to be reviewed from a version of the application.","operationId":"Examples_List","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/SkipInPath"},{"$ref":"#/components/parameters/TakeInPath"}],"responses":{"200":{"description":"A list of predictions and label pairs for every example utterance in the application.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/LabeledUtterances"},"examples":{"Successful Review Labeled Examples request":{"$ref":"#/components/examples/Successful_Review_Labeled_Examples_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"description":"Adds a batch of labeled example utterances to a version of the application.","operationId":"Examples_Batch","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ExampleLabelObjectArray"}}},"description":"Array of example utterances.","required":true},"responses":{"201":{"description":"A string array determining which labeled example utterances were added successfully.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BatchLabelExampleResponse"},"examples":{"Successful Batch Add Labels request":{"$ref":"#/components/examples/Successful_Batch_Add_Labels_request"}}}}},"207":{"description":"Indicates that the request was partially successful. The response contains a string array indicating the status of each of the added labeled example utterances.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BatchLabelExampleResponse"},"examples":{"Successful Batch Add Labels request":{"$ref":"#/components/examples/Successful_Batch_Add_Labels_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/examples/{exampleId}":{"delete":{"description":"Deletes the labeled example utterances with the specified ID from a version of the application.","operationId":"Examples_Delete","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The example ID.","in":"path","name":"exampleId","required":true,"schema":{"type":"integer"},"examples":{"Successful Delete Example Label request":{"value":-5313926}}}],"responses":{"200":{"description":"Successfully deleted example utterance.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Delete Example Label request":{"$ref":"#/components/examples/Successful_Delete_Example_Label_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/export":{"get":{"description":"Exports a LUIS application to JSON format.","operationId":"Versions_Export","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"responses":{"200":{"description":"The LUIS application structure in JSON format.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/LuisApp"},"examples":{"Successful Export Application Version":{"$ref":"#/components/examples/Successful_Export_Application_Version"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/features":{"get":{"description":"Gets all the extraction phraselist and pattern features in a version of the application.","operationId":"Features_List","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/SkipInPath"},{"$ref":"#/components/parameters/TakeInPath"}],"responses":{"200":{"description":"A list of all phraselist features and a list of all pattern features.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FeaturesResponseObject"},"examples":{"Successful Get Application Version Features request":{"$ref":"#/components/examples/Successful_Get_Application_Version_Features_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/hierarchicalentities":{"get":{"description":"Gets information about all the hierarchical entity models in a version of the application.","operationId":"Model_ListHierarchicalEntities","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/SkipInPath"},{"$ref":"#/components/parameters/TakeInPath"}],"responses":{"200":{"description":"A list of hierarchical entity model infos.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HierarchicalEntityExtractorsList"},"examples":{"Successful Get Application Version Hierarchical Entity Infos request":{"$ref":"#/components/examples/Successful_Get_Application_Version_Hierarchical_Entity_Infos_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/hierarchicalentities/{hEntityId}":{"delete":{"description":"Deletes a hierarchical entity from a version of the application.","operationId":"Model_DeleteHierarchicalEntity","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/HEntityIdInPath"}],"responses":{"200":{"description":"Successfully deleted entity.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Delete Hierarchical Entity Model request":{"$ref":"#/components/examples/Successful_Delete_Hierarchical_Entity_Model_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"get":{"description":"Gets information about a hierarchical entity in a version of the application.","operationId":"Model_GetHierarchicalEntity","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/HEntityIdInPath"}],"responses":{"200":{"description":"A hierarchical entity model info.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HierarchicalEntityExtractor"},"examples":{"Successful Get Hierarchical Entity Info request":{"$ref":"#/components/examples/Successful_Get_Hierarchical_Entity_Info_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"patch":{"description":"Updates the name of a hierarchical entity model in a version of the application.","operationId":"Model_UpdateHierarchicalEntity","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/HEntityIdInPath"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ModelUpdateObject"}}},"description":"Model containing names of the hierarchical entity.","required":true},"responses":{"200":{"description":"Successful operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Get Hierarchical Entity Info request":{"$ref":"#/components/examples/Successful_Get_Hierarchical_Entity_Info_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/hierarchicalentities/{hEntityId}/children/{hChildId}":{"delete":{"description":"Deletes a hierarchical entity extractor child in a version of the application.","operationId":"Model_DeleteHierarchicalEntityChild","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/HEntityIdInPath"},{"description":"The hierarchical entity extractor child ID.","in":"path","name":"hChildId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Delete Hierarchical Entity Child Model request":{"value":"fe559c31-9778-42ea-ed45-94e0bd7cf767"}}}],"responses":{"200":{"description":"Successfully deleted entity.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Delete Hierarchical Entity Child Model request":{"$ref":"#/components/examples/Successful_Delete_Hierarchical_Entity_Child_Model_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"get":{"description":"Gets information about the child's model contained in an hierarchical entity child model in a version of the application.","operationId":"Model_GetHierarchicalEntityChild","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/HEntityIdInPath"},{"description":"The hierarchical entity extractor child ID.","in":"path","name":"hChildId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Get Hierarchical Entity Child Info request":{"value":"{hChildId}"}}}],"responses":{"200":{"description":"The hierarchical entity child model info.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HierarchicalChildEntity"},"examples":{"Successful Get Hierarchical Entity Child Info request":{"$ref":"#/components/examples/Successful_Get_Hierarchical_Entity_Child_Info_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"patch":{"description":"Renames a single child in an existing hierarchical entity model in a version of the application.","operationId":"Model_UpdateHierarchicalEntityChild","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/HEntityIdInPath"},{"description":"The hierarchical entity extractor child ID.","in":"path","name":"hChildId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Update Hierarchical Entity Child Model request":{"value":"fe559c31-9778-42ea-ed45-94e0bd7cf767"}}}],"requestBody":{"content":{"application/json":{"schema":{"properties":{"name":{"type":"string"}},"type":"object"}}},"description":"Model object containing new name of the hierarchical entity child.","required":true},"responses":{"200":{"description":"Successfully updated entity child.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Update Hierarchical Entity Child Model request":{"$ref":"#/components/examples/Successful_Update_Hierarchical_Entity_Child_Model_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/hierarchicalentities/{hEntityId}/roles":{"get":{"operationId":"Model_ListHierarchicalEntityRoles","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/HEntityIdInPath"}],"responses":{"200":{"description":"A list of the entity roles","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EntityRoleList"},"examples":{"Successful Get Hierarchical Entity Roles request":{"$ref":"#/components/examples/Successful_Get_Hierarchical_Entity_Roles_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Get all roles for a hierarchical entity in a version of the application"},"post":{"operationId":"Model_CreateHierarchicalEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/HEntityIdInPath"}],"requestBody":{"$ref":"#/components/requestBodies/EntityRoleCreateObject"},"responses":{"201":{"description":"The ID of the created entity role","x-nullable":false,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GuidResponse"},"examples":{"Successful Create Hierarchical Entity Role request":{"$ref":"#/components/examples/Successful_Create_Hierarchical_Entity_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Create a role for an hierarchical entity in a version of the application."}},"/apps/{appId}/versions/{versionId}/hierarchicalentities/{hEntityId}/roles/{roleId}":{"delete":{"operationId":"Model_DeleteHierarchicalEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/HEntityIdInPath"},{"description":"The entity role Id.","in":"path","name":"roleId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Delete Hierarchical Entity Role request":{"value":"a682a962-1f92-4ae7-b8b8-398414e30c12"}}}],"responses":{"200":{"description":"Successfully operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Delete Hierarchical Entity Role request":{"$ref":"#/components/examples/Successful_Delete_Hierarchical_Entity_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Delete a role for a given hierarchical role in a version of the application."},"get":{"operationId":"Model_GetHierarchicalEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/HEntityIdInPath"},{"description":"entity role ID.","in":"path","name":"roleId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Get Hierarchical Entity Role request":{"value":"a682a962-1f92-4ae7-b8b8-398414e30c12"}}}],"responses":{"200":{"description":"An entity role","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EntityRole"},"examples":{"Successful Get Hierarchical Entity Role request":{"$ref":"#/components/examples/Successful_Get_Hierarchical_Entity_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Get one role for a given hierarchical entity in a version of the application."},"put":{"operationId":"Model_UpdateHierarchicalEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/HEntityIdInPath"},{"description":"The entity role ID.","in":"path","name":"roleId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Update Hierarchical Entity Extractor Role request":{"value":"6dbed7e2-7df6-4cd6-a225-97e6fbe4493d"}}}],"requestBody":{"$ref":"#/components/requestBodies/EntityRoleUpdateObject"},"responses":{"200":{"description":"Successfully updated the entity role.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Update Hierarchical Entity Extractor Role request":{"$ref":"#/components/examples/Successful_Update_Hierarchical_Entity_Extractor_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Update a role for a given hierarchical entity in a version of the application."}},"/apps/{appId}/versions/{versionId}/intents":{"get":{"description":"Gets information about the intent models in a version of the application.","operationId":"Model_ListIntents","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/SkipInPath"},{"$ref":"#/components/parameters/TakeInPath"}],"responses":{"200":{"description":"A list of intent model infos.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/IntentClassifiersList"},"examples":{"Successful Get Application Version Intent Infos request":{"$ref":"#/components/examples/Successful_Get_Application_Version_Intent_Infos_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"description":"Adds an intent to a version of the application.","operationId":"Model_AddIntent","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ModelCreateObject"}}},"description":"A model object containing the name of the new intent.","required":true},"responses":{"201":{"description":"The ID of the created intent model.","x-nullable":false,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GuidResponse"},"examples":{"Successful Create Intent Classifier request":{"$ref":"#/components/examples/Successful_Create_Intent_Classifier_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/intents/{intentId}":{"delete":{"description":"Deletes an intent from a version of the application.","operationId":"Model_DeleteIntent","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/IntentIdInPath"},{"description":"If true, deletes the intent's example utterances. If false, moves the example utterances to the None intent. The default value is false.","in":"query","name":"deleteUtterances","schema":{"type":"boolean","default":false}}],"responses":{"200":{"description":"Successful operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Delete Intent Model request":{"$ref":"#/components/examples/Successful_Delete_Intent_Model_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"get":{"description":"Gets information about the intent model in a version of the application.","operationId":"Model_GetIntent","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/IntentIdInPath"}],"responses":{"200":{"description":"An intent model info.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/IntentClassifier"},"examples":{"Successful Get Intent Info request":{"$ref":"#/components/examples/Successful_Get_Intent_Info_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"put":{"description":"Updates the name of an intent in a version of the application.","operationId":"Model_UpdateIntent","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/IntentIdInPath"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ModelUpdateObject"}}},"description":"A model object containing the new intent name.","required":true},"responses":{"200":{"description":"Successful operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Rename Intent Model request":{"$ref":"#/components/examples/Successful_Rename_Intent_Model_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/intents/{intentId}/features":{"delete":{"description":"Deletes a relation from the feature relations used by the intent in a version of the application.","operationId":"Model_DeleteIntentFeature","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/IntentIdInPath"}],"requestBody":{"$ref":"#/components/requestBodies/ModelFeatureInformation"},"responses":{"200":{"description":"Successful operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Delete feature relation request":{"$ref":"#/components/examples/Successful_Delete_feature_relation_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"get":{"description":"Gets the information of the features used by the intent in a version of the application.","operationId":"Model_GetIntentFeatures","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/IntentIdInPath"}],"responses":{"200":{"description":"A list of feature information objects for the intent.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FeaturesPerModelResponseObject"},"examples":{"Successful Get Features information request":{"$ref":"#/components/examples/Successful_Get_Features_information_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"description":"Adds a new feature relation to be used by the intent in a version of the application.","operationId":"Features_AddIntentFeature","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/IntentIdInPath"}],"requestBody":{"$ref":"#/components/requestBodies/ModelFeatureInformation2"},"responses":{"200":{"description":"Successful operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Add Feature Relation request":{"$ref":"#/components/examples/Successful_Add_Feature_Relation_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"put":{"description":"Updates the information of the features used by the intent in a version of the application.","operationId":"Model_ReplaceIntentFeatures","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/IntentIdInPath"}],"requestBody":{"$ref":"#/components/requestBodies/FeaturesPerModelResponseObject"},"responses":{"200":{"description":"Successful operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Replace Features request":{"$ref":"#/components/examples/Successful_Replace_Features_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/intents/{intentId}/patternrules":{"get":{"operationId":"Pattern_ListIntentPatterns","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/IntentIdInPath"},{"$ref":"#/components/parameters/SkipInPath"},{"$ref":"#/components/parameters/TakeInPath"}],"responses":{"200":{"description":"The retrieved patterns","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PatternRuleList"},"examples":{"Successful Get Intent Patterns request":{"$ref":"#/components/examples/Successful_Get_Intent_Patterns_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Returns patterns for the specific intent in a version of the application."}},"/apps/{appId}/versions/{versionId}/intents/{intentId}/suggest":{"get":{"description":"Suggests example utterances that would improve the accuracy of the intent model in a version of the application.","operationId":"Model_ListIntentSuggestions","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/IntentIdInPath"},{"$ref":"#/components/parameters/TakeInPath"}],"responses":{"200":{"description":"If there's no trained intent model, nothing is returned in the response. If there's a trained model and active learning finds any relevant queries, they are returned with the intent model predictions. If there's a trained model but active learning didn't find any relevant queries, an empty list is returned in the response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/IntentsSuggestionExamples"},"examples":{"Successful Get Intents Suggestion Examples":{"$ref":"#/components/examples/Successful_Get_Intents_Suggestion_Examples"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/listprebuilts":{"get":{"description":"Gets all the available prebuilt entities in a version of the application.","operationId":"Model_ListPrebuiltEntities","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"responses":{"200":{"description":"A list of the possible prebuilt entity extractors.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AvailablePrebuiltEntityModels"},"examples":{"Successful Get Available Prebuilt Entity Extractors request":{"$ref":"#/components/examples/Successful_Get_Available_Prebuilt_Entity_Extractors_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/models":{"get":{"description":"Gets information about all the intent and entity models in a version of the application.","operationId":"Model_ListModels","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/SkipInPath"},{"$ref":"#/components/parameters/TakeInPath"}],"responses":{"200":{"description":"A list of application model infos.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ModelsInfoResponseObject"},"examples":{"Successful Get Application Version Model Infos request":{"$ref":"#/components/examples/Successful_Get_Application_Version_Model_Infos_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/models/{modelId}/examples":{"get":{"description":"Gets the example utterances for the given intent or entity model in a version of the application.","operationId":"Model_Examples","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The ID (GUID) of the model.","in":"path","name":"modelId","required":true,"x-ms-parameter-location":"method","schema":{"type":"string"},"examples":{"Successful Get Examples Per Model Request":{"value":"e4770e43-233a-48ad-a1fa-54f4f97eff9f"}}},{"$ref":"#/components/parameters/SkipInPath"},{"$ref":"#/components/parameters/TakeInPath"}],"responses":{"200":{"description":"A list of example utterances for the model.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ExamplesPerModelResponseObject"},"examples":{"Successful Get Examples Per Model Request":{"$ref":"#/components/examples/Successful_Get_Examples_Per_Model_Request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/patternanyentities":{"get":{"operationId":"Model_ListPatternAnyEntityInfos","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/SkipInPath"},{"$ref":"#/components/parameters/TakeInPath"}],"responses":{"200":{"description":"A list of Pattern.Any entity model infos.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PatternAnyEntityExtractorList"},"examples":{"Successful Create Regex Entity Model request":{"$ref":"#/components/examples/Successful_Create_Regex_Entity_Model_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Get information about the Pattern.Any entity models in a version of the application."},"post":{"operationId":"Model_CreatePatternAnyEntityModel","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PatternAnyModelCreateObject"}}},"description":"A model object containing the name and explicit list for the new Pattern.Any entity extractor.","required":true},"responses":{"201":{"description":"The ID of the created Pattern.Any entity model.","x-nullable":false,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GuidResponse"},"examples":{"Successful Create Regex Entity Model request":{"$ref":"#/components/examples/Successful_Create_Regex_Entity_Model_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Adds a pattern.any entity extractor to a version of the application."}},"/apps/{appId}/versions/{versionId}/patternanyentities/{entityId}":{"delete":{"operationId":"Model_DeletePatternAnyEntityModel","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The Pattern.Any entity extractor ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Delete Pattern.Any Entity request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}}],"responses":{"200":{"description":"Successfully operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Delete Pattern.Any Entity request":{"$ref":"#/components/examples/Successful_Delete_Pattern.Any_Entity_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Deletes a Pattern.Any entity extractor from a version of the application."},"get":{"operationId":"Model_GetPatternAnyEntityInfo","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The entity extractor ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Get Pattern.Any Entity request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}}],"responses":{"200":{"description":"A regular expression entity model info.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PatternAnyEntityExtractor"},"examples":{"Successful Get Pattern.Any Entity request":{"$ref":"#/components/examples/Successful_Get_Pattern.Any_Entity_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Gets information about the Pattern.Any model in a version of the application."},"put":{"operationId":"Model_UpdatePatternAnyEntityModel","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The Pattern.Any entity extractor ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Update Pattern.Any Entity request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PatternAnyModelUpdateObject"}}},"description":"An object containing the explicit list of the Pattern.Any entity.","required":true},"responses":{"200":{"description":"Successfully updated the Pattern.Any entity extractor.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Update Pattern.Any Entity request":{"$ref":"#/components/examples/Successful_Update_Pattern.Any_Entity_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Updates the name and explicit (exception) list of a Pattern.Any entity model in a version of the application."}},"/apps/{appId}/versions/{versionId}/patternanyentities/{entityId}/explicitlist":{"get":{"operationId":"Model_GetExplicitList","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The Pattern.Any entity id.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Get Explicit List request":{"value":"2d3173b0-983c-43ae-92f8-6f5b5d09a11a"}}}],"responses":{"200":{"description":"A list of the explicit list items","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ExplicitListItemList"},"examples":{"Successful Get Explicit List request":{"$ref":"#/components/examples/Successful_Get_Explicit_List_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Get the explicit (exception) list of the pattern.any entity in a version of the application."},"post":{"operationId":"Model_AddExplicitListItem","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The Pattern.Any entity extractor ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Create Custom Prebuilt Entity Role request":{"value":"fc821c4e-a2f8-4074-9410-7271b38a692d"}}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ExplicitListItemCreateObject"}}},"description":"The new explicit list item.","required":true},"responses":{"201":{"description":"The ID of the created explicit list item.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ExplicitListItemIDResponse"},"examples":{"Successful Create Custom Prebuilt Entity Role request":{"$ref":"#/components/examples/Successful_Create_Custom_Prebuilt_Entity_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Add a new exception to the explicit list for the Pattern.Any entity in a version of the application."}},"/apps/{appId}/versions/{versionId}/patternanyentities/{entityId}/explicitlist/{itemId}":{"delete":{"operationId":"Model_DeleteExplicitListItem","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The pattern.any entity id.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Delete Pattern.Any Explicit List Item request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}},{"description":"The explicit list item which will be deleted.","in":"path","name":"itemId","required":true,"schema":{"type":"integer","format":"int64"},"examples":{"Successful Delete Pattern.Any Explicit List Item request":{"value":543211}}}],"responses":{"200":{"description":"Successfully operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Delete Pattern.Any Explicit List Item request":{"$ref":"#/components/examples/Successful_Delete_Pattern.Any_Explicit_List_Item_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Delete an item from the explicit (exception) list for a Pattern.any entity in a version of the application."},"get":{"operationId":"Model_GetExplicitListItem","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The Pattern.Any entity Id.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Get Pattern.Any Explicit List Item request":{"value":"2d3173b0-983c-43ae-92f8-6f5b5d09a11a"}}},{"description":"The explicit list item Id.","in":"path","name":"itemId","required":true,"schema":{"type":"integer","format":"int64"},"examples":{"Successful Get Pattern.Any Explicit List Item request":{"value":76451}}}],"responses":{"200":{"description":"An explicit list item info.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ExplicitListItem"},"examples":{"Successful Get Pattern.Any Explicit List Item request":{"$ref":"#/components/examples/Successful_Get_Pattern.Any_Explicit_List_Item_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Get the explicit (exception) list of the pattern.any entity in a version of the application."},"put":{"operationId":"Model_UpdateExplicitListItem","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The Pattern.Any entity extractor ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Update Pattern.Any Entity Explicit List Item request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}},{"description":"The explicit list item ID.","in":"path","name":"itemId","required":true,"schema":{"type":"integer","format":"int64"},"examples":{"Successful Update Pattern.Any Entity Explicit List Item request":{"value":53435}}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ExplicitListItemUpdateObject"}}},"description":"The new explicit list item.","required":true},"responses":{"200":{"description":"Successfully updated the explicit list item.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Update Pattern.Any Entity Explicit List Item request":{"$ref":"#/components/examples/Successful_Update_Pattern.Any_Entity_Explicit_List_Item_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Updates an explicit (exception) list item for a Pattern.Any entity in a version of the application."}},"/apps/{appId}/versions/{versionId}/patternanyentities/{entityId}/roles":{"get":{"operationId":"Model_ListPatternAnyEntityRoles","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"entity Id","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Get Pattern.Any Entity Roles request":{"value":"2d3173b0-983c-43ae-92f8-6f5b5d09a11a"}}}],"responses":{"200":{"description":"A list of the entity roles","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EntityRoleList"},"examples":{"Successful Get Pattern.Any Entity Roles request":{"$ref":"#/components/examples/Successful_Get_Pattern.Any_Entity_Roles_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Get all roles for a Pattern.any entity in a version of the application"},"post":{"operationId":"Model_CreatePatternAnyEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The entity model ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Create Pattern.Any Entity Role request":{"value":"fc821c4e-a2f8-4074-9410-7271b38a692d"}}}],"requestBody":{"$ref":"#/components/requestBodies/EntityRoleCreateObject"},"responses":{"201":{"description":"The ID of the created entity role","x-nullable":false,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GuidResponse"},"examples":{"Successful Create Pattern.Any Entity Role request":{"$ref":"#/components/examples/Successful_Create_Pattern.Any_Entity_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Create a role for an Pattern.any entity in a version of the application."}},"/apps/{appId}/versions/{versionId}/patternanyentities/{entityId}/roles/{roleId}":{"delete":{"operationId":"Model_DeletePatternAnyEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The entity ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Delete Pattern.Any Entity Role request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}},{"description":"The entity role Id.","in":"path","name":"roleId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Delete Pattern.Any Entity Role request":{"value":"a682a962-1f92-4ae7-b8b8-398414e30c12"}}}],"responses":{"200":{"description":"Successfully operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Delete Pattern.Any Entity Role request":{"$ref":"#/components/examples/Successful_Delete_Pattern.Any_Entity_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Delete a role for a given Pattern.any entity in a version of the application."},"get":{"operationId":"Model_GetPatternAnyEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"entity ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Get Pattern.Any Entity Role request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}},{"description":"entity role ID.","in":"path","name":"roleId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Get Pattern.Any Entity Role request":{"value":"a682a962-1f92-4ae7-b8b8-398414e30c12"}}}],"responses":{"200":{"description":"An entity role","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EntityRole"},"examples":{"Successful Get Pattern.Any Entity Role request":{"$ref":"#/components/examples/Successful_Get_Pattern.Any_Entity_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Get one role for a given Pattern.any entity in a version of the application."},"put":{"operationId":"Model_UpdatePatternAnyEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The entity ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Update Pattern.Any Entity Extractor Role request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}},{"description":"The entity role ID.","in":"path","name":"roleId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Update Pattern.Any Entity Extractor Role request":{"value":"6dbed7e2-7df6-4cd6-a225-97e6fbe4493d"}}}],"requestBody":{"$ref":"#/components/requestBodies/EntityRoleUpdateObject"},"responses":{"200":{"description":"Successfully updated the entity role.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Update Pattern.Any Entity Extractor Role request":{"$ref":"#/components/examples/Successful_Update_Pattern.Any_Entity_Extractor_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Update a role for a given Pattern.any entity in a version of the application."}},"/apps/{appId}/versions/{versionId}/patternrule":{"post":{"operationId":"Pattern_AddPattern","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PatternRuleCreateObject"}}},"description":"The input pattern.","required":true},"responses":{"201":{"description":"The created pattern","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PatternRuleInfo"},"examples":{"Successful Add Pattern request":{"$ref":"#/components/examples/Successful_Add_Pattern_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Adds a pattern to a version of the application."}},"/apps/{appId}/versions/{versionId}/patternrules":{"delete":{"operationId":"Pattern_DeletePatterns","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"requestBody":{"content":{"application/json":{"schema":{"items":{"format":"uuid","type":"string"},"type":"array"}}},"description":"The patterns IDs.","required":true},"responses":{"200":{"description":"Successfully operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Batch Delete Patterns request":{"$ref":"#/components/examples/Successful_Batch_Delete_Patterns_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Deletes a list of patterns in a version of the application."},"get":{"operationId":"Pattern_ListPatterns","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/SkipInPath"},{"$ref":"#/components/parameters/TakeInPath"}],"responses":{"200":{"description":"The retrieved patterns","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PatternRuleList"},"examples":{"Successful Get Application Version Patterns request":{"$ref":"#/components/examples/Successful_Get_Application_Version_Patterns_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Gets patterns in a version of the application."},"post":{"operationId":"Pattern_BatchAddPatterns","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"requestBody":{"content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/PatternRuleCreateObject"},"type":"array"}}},"description":"A JSON array containing patterns.","required":true},"responses":{"201":{"description":"The created patterns","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PatternRuleList"},"examples":{"Successful Batch Add Patterns request":{"$ref":"#/components/examples/Successful_Batch_Add_Patterns_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Adds a batch of patterns in a version of the application."},"put":{"operationId":"Pattern_UpdatePatterns","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"requestBody":{"content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/PatternRuleUpdateObject"},"type":"array"}}},"description":"An array represents the patterns.","required":true},"responses":{"200":{"description":"The updated patterns","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PatternRuleList"},"examples":{"Successful Batch Update Patterns request":{"$ref":"#/components/examples/Successful_Batch_Update_Patterns_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Updates patterns in a version of the application."}},"/apps/{appId}/versions/{versionId}/patternrules/{patternId}":{"delete":{"operationId":"Pattern_DeletePattern","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The pattern ID.","in":"path","name":"patternId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Delete Pattern request":{"value":"cc8fa554-cc6c-4bcc-97eb-c8e5bc2091b3"}}}],"responses":{"200":{"description":"Successfully operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Delete Pattern request":{"$ref":"#/components/examples/Successful_Delete_Pattern_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Deletes the pattern with the specified ID from a version of the application.."},"put":{"operationId":"Pattern_UpdatePattern","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The pattern ID.","in":"path","name":"patternId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Update Pattern request":{"value":"cc8fa554-cc6c-4bcc-97eb-c8e5bc2091b3"}}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PatternRuleUpdateObject"}}},"description":"An object representing a pattern.","required":true},"responses":{"200":{"description":"The updated pattern","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PatternRuleInfo"},"examples":{"Successful Update Pattern request":{"$ref":"#/components/examples/Successful_Update_Pattern_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Updates a pattern in a version of the application."}},"/apps/{appId}/versions/{versionId}/phraselists":{"get":{"description":"Gets all the phraselist features in a version of the application.","operationId":"Features_ListPhraseLists","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/SkipInPath"},{"$ref":"#/components/parameters/TakeInPath"}],"responses":{"200":{"description":"A list of all phraselist features.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PhraseListFeatureInfoList"},"examples":{"Successful Get Application Version Phraselist Features request":{"$ref":"#/components/examples/Successful_Get_Application_Version_Phraselist_Features_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"description":"Creates a new phraselist feature in a version of the application.","operationId":"Features_AddPhraseList","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PhraselistCreateObject"}}},"description":"A Phraselist object containing Name, comma-separated Phrases and the isExchangeable boolean. Default value for isExchangeable is true.","required":true},"responses":{"201":{"description":"The ID of the created feature.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FeatureIDResponse"},"examples":{"Successful Create Phraselist Feature request":{"$ref":"#/components/examples/Successful_Create_Phraselist_Feature_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/phraselists/{phraselistId}":{"delete":{"description":"Deletes a phraselist feature from a version of the application.","operationId":"Features_DeletePhraseList","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The ID of the feature to be deleted.","in":"path","name":"phraselistId","required":true,"schema":{"type":"integer"},"examples":{"Successful Delete Phraselist Feature Info request":{"value":178384}}}],"responses":{"200":{"description":"Successfully deleted phraselist.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Delete Phraselist Feature Info request":{"$ref":"#/components/examples/Successful_Delete_Phraselist_Feature_Info_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"get":{"description":"Gets phraselist feature info in a version of the application.","operationId":"Features_GetPhraseList","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The ID of the feature to be retrieved.","in":"path","name":"phraselistId","required":true,"schema":{"type":"integer"},"examples":{"Successful Get Phraselist Feature Info request":{"value":178384}}}],"responses":{"200":{"description":"A phraselist feature info.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PhraseListFeatureInfo"},"examples":{"Successful Get Phraselist Feature Info request":{"$ref":"#/components/examples/Successful_Get_Phraselist_Feature_Info_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"put":{"description":"Updates the phrases, the state and the name of the phraselist feature in a version of the application.","operationId":"Features_UpdatePhraseList","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The ID of the feature to be updated.","in":"path","name":"phraselistId","required":true,"schema":{"type":"integer"},"examples":{"Successful Update Phraselist Feature Info request":{"value":178384}}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PhraselistUpdateObject"}}},"description":"The new values for: - Just a boolean called IsActive, in which case the status of the feature will be changed. - Name, Pattern, Mode, and a boolean called IsActive to update the feature."},"responses":{"200":{"description":"Successfully updated phraselist.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Update Phraselist Feature Info request":{"$ref":"#/components/examples/Successful_Update_Phraselist_Feature_Info_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/prebuilts":{"get":{"description":"Gets information about all the prebuilt entities in a version of the application.","operationId":"Model_ListPrebuilts","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/SkipInPath"},{"$ref":"#/components/parameters/TakeInPath"}],"responses":{"200":{"description":"A list of prebuilt entity models infos.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PrebuiltEntityExtractorsList"},"examples":{"Successful Get Application Version Prebuilt Infos request":{"$ref":"#/components/examples/Successful_Get_Application_Version_Prebuilt_Infos_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"description":"Adds a list of prebuilt entities to a version of the application.","operationId":"Model_AddPrebuilt","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PrebuiltExtractorNames"}}},"description":"An array of prebuilt entity extractor names.","required":true},"responses":{"201":{"description":"An array of the created prebuilt extractor infos.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PrebuiltEntityExtractorsList"},"examples":{"Successful Add Application Version Prebuilt Infos request":{"$ref":"#/components/examples/Successful_Add_Application_Version_Prebuilt_Infos_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/prebuilts/{entityId}/roles":{"get":{"operationId":"Model_ListPrebuiltEntityRoles","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"entity Id","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Get Prebuilt Entity Roles request":{"value":"2d3173b0-983c-43ae-92f8-6f5b5d09a11a"}}}],"responses":{"200":{"description":"A list of the entity roles","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EntityRoleList"},"examples":{"Successful Get Prebuilt Entity Roles request":{"$ref":"#/components/examples/Successful_Get_Prebuilt_Entity_Roles_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Get a prebuilt entity's roles in a version of the application."},"post":{"operationId":"Model_CreatePrebuiltEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The entity model ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Create Prebuilt Entity Role request":{"value":"fc821c4e-a2f8-4074-9410-7271b38a692d"}}}],"requestBody":{"$ref":"#/components/requestBodies/EntityRoleCreateObject"},"responses":{"201":{"description":"The ID of the created entity role","x-nullable":false,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GuidResponse"},"examples":{"Successful Create Prebuilt Entity Role request":{"$ref":"#/components/examples/Successful_Create_Prebuilt_Entity_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Create a role for a prebuilt entity in a version of the application."}},"/apps/{appId}/versions/{versionId}/prebuilts/{entityId}/roles/{roleId}":{"delete":{"operationId":"Model_DeletePrebuiltEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The entity ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Delete Prebuilt Entity Role request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}},{"description":"The entity role Id.","in":"path","name":"roleId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Delete Prebuilt Entity Role request":{"value":"a682a962-1f92-4ae7-b8b8-398414e30c12"}}}],"responses":{"200":{"description":"Successfully operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Delete Prebuilt Entity Role request":{"$ref":"#/components/examples/Successful_Delete_Prebuilt_Entity_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Delete a role in a prebuilt entity in a version of the application."},"get":{"operationId":"Model_GetPrebuiltEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"entity ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Get Prebuilt Entity Role request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}},{"description":"entity role ID.","in":"path","name":"roleId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Get Prebuilt Entity Role request":{"value":"a682a962-1f92-4ae7-b8b8-398414e30c12"}}}],"responses":{"200":{"description":"An entity role","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EntityRole"},"examples":{"Successful Get Prebuilt Entity Role request":{"$ref":"#/components/examples/Successful_Get_Prebuilt_Entity_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Get one role for a given prebuilt entity in a version of the application"},"put":{"operationId":"Model_UpdatePrebuiltEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The entity ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Update Prebuilt Entity Extractor Role request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}},{"description":"The entity role ID.","in":"path","name":"roleId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Update Prebuilt Entity Extractor Role request":{"value":"6dbed7e2-7df6-4cd6-a225-97e6fbe4493d"}}}],"requestBody":{"$ref":"#/components/requestBodies/EntityRoleUpdateObject"},"responses":{"200":{"description":"Successfully updated the entity role.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Update Prebuilt Entity Extractor Role request":{"$ref":"#/components/examples/Successful_Update_Prebuilt_Entity_Extractor_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Update a role for a given prebuilt entity in a version of the application"}},"/apps/{appId}/versions/{versionId}/prebuilts/{prebuiltId}":{"delete":{"description":"Deletes a prebuilt entity extractor from a version of the application.","operationId":"Model_DeletePrebuilt","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The prebuilt entity extractor ID.","in":"path","name":"prebuiltId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Get Prebuilt Info request":{"value":"a065c863-918e-4c56-a267-9aaae3c7dced"}}}],"responses":{"200":{"description":"Successful operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Get Prebuilt Info request":{"$ref":"#/components/examples/Successful_Get_Prebuilt_Info_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"get":{"description":"Gets information about a prebuilt entity model in a version of the application.","operationId":"Model_GetPrebuilt","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The prebuilt entity extractor ID.","in":"path","name":"prebuiltId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Get Prebuilt Info request":{"value":"a065c863-918e-4c56-a267-9aaae3c7dced"}}}],"responses":{"200":{"description":"A prebuilt entity models info.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PrebuiltEntityExtractor"},"examples":{"Successful Get Prebuilt Info request":{"$ref":"#/components/examples/Successful_Get_Prebuilt_Info_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/regexentities":{"get":{"operationId":"Model_ListRegexEntityInfos","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"$ref":"#/components/parameters/SkipInPath"},{"$ref":"#/components/parameters/TakeInPath"}],"responses":{"200":{"description":"A list of regular expression entity model infos.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegexEntityExtractorList"},"examples":{"Successful Get Regex Entity Models request":{"$ref":"#/components/examples/Successful_Get_Regex_Entity_Models_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Gets information about the regular expression entity models in a version of the application."},"post":{"operationId":"Model_CreateRegexEntityModel","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegexModelCreateObject"}}},"description":"A model object containing the name and regex pattern for the new regular expression entity extractor.","required":true},"responses":{"201":{"description":"The ID of the created model.","x-nullable":false,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GuidResponse"},"examples":{"Successful Create Regex Entity Model request":{"$ref":"#/components/examples/Successful_Create_Regex_Entity_Model_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Adds a regular expression entity model to a version of the application."}},"/apps/{appId}/versions/{versionId}/regexentities/{entityId}/roles":{"get":{"operationId":"Model_ListRegexEntityRoles","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"entity Id","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Get Regex Entity Roles request":{"value":"2d3173b0-983c-43ae-92f8-6f5b5d09a11a"}}}],"responses":{"200":{"description":"A list of the entity roles","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EntityRoleList"},"examples":{"Successful Get Regex Entity Roles request":{"$ref":"#/components/examples/Successful_Get_Regex_Entity_Roles_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Get all roles for a regular expression entity in a version of the application."},"post":{"operationId":"Model_CreateRegexEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The entity model ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Create Regex Entity Role request":{"value":"fc821c4e-a2f8-4074-9410-7271b38a692d"}}}],"requestBody":{"$ref":"#/components/requestBodies/EntityRoleCreateObject"},"responses":{"201":{"description":"The ID of the created entity role","x-nullable":false,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GuidResponse"},"examples":{"Successful Create Regex Entity Role request":{"$ref":"#/components/examples/Successful_Create_Regex_Entity_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Create a role for an regular expression entity in a version of the application."}},"/apps/{appId}/versions/{versionId}/regexentities/{entityId}/roles/{roleId}":{"delete":{"operationId":"Model_DeleteRegexEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The entity ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Delete Regex Entity Role request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}},{"description":"The entity role Id.","in":"path","name":"roleId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Delete Regex Entity Role request":{"value":"a682a962-1f92-4ae7-b8b8-398414e30c12"}}}],"responses":{"200":{"description":"Successfully operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Delete Regex Entity Role request":{"$ref":"#/components/examples/Successful_Delete_Regex_Entity_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Delete a role for a given regular expression in a version of the application."},"get":{"operationId":"Model_GetRegexEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"entity ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Get Regex Entity Role request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}},{"description":"entity role ID.","in":"path","name":"roleId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Get Regex Entity Role request":{"value":"a682a962-1f92-4ae7-b8b8-398414e30c12"}}}],"responses":{"200":{"description":"An entity role","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EntityRole"},"examples":{"Successful Get Regex Entity Role request":{"$ref":"#/components/examples/Successful_Get_Regex_Entity_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Get one role for a given regular expression entity in a version of the application."},"put":{"operationId":"Model_UpdateRegexEntityRole","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The entity ID.","in":"path","name":"entityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Update Regex Entity Extractor Role request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}},{"description":"The entity role ID.","in":"path","name":"roleId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Update Regex Entity Extractor Role request":{"value":"6dbed7e2-7df6-4cd6-a225-97e6fbe4493d"}}}],"requestBody":{"$ref":"#/components/requestBodies/EntityRoleUpdateObject"},"responses":{"200":{"description":"Successfully updated the entity role.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Update Regex Entity Extractor Role request":{"$ref":"#/components/examples/Successful_Update_Regex_Entity_Extractor_Role_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Update a role for a given regular expression entity in a version of the application"}},"/apps/{appId}/versions/{versionId}/regexentities/{regexEntityId}":{"delete":{"operationId":"Model_DeleteRegexEntityModel","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The regular expression entity extractor ID.","in":"path","name":"regexEntityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Delete Regex Entity request":{"value":"a065c863-918e-4c56-a267-9aaae3c7dced"}}}],"responses":{"200":{"description":"Successfully operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Delete Regex Entity request":{"$ref":"#/components/examples/Successful_Delete_Regex_Entity_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Deletes a regular expression entity from a version of the application."},"get":{"operationId":"Model_GetRegexEntityEntityInfo","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The regular expression entity model ID.","in":"path","name":"regexEntityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Get Regex Entity request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}}],"responses":{"200":{"description":"A regular expression entity model info.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegexEntityExtractor"},"examples":{"Successful Get Regex Entity request":{"$ref":"#/components/examples/Successful_Get_Regex_Entity_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Gets information about a regular expression entity in a version of the application."},"put":{"operationId":"Model_UpdateRegexEntityModel","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"},{"description":"The regular expression entity extractor ID.","in":"path","name":"regexEntityId","required":true,"schema":{"type":"string","format":"uuid"},"examples":{"Successful Update Regex Entity request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegexModelUpdateObject"}}},"description":"An object containing the new entity name and regex pattern.","required":true},"responses":{"200":{"description":"Successfully updated the regular expression entity extractor.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Update Regex Entity request":{"$ref":"#/components/examples/Successful_Update_Regex_Entity_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"Updates the regular expression entity in a version of the application."}},"/apps/{appId}/versions/{versionId}/settings":{"get":{"description":"Gets the settings in a version of the application.","operationId":"Settings_List","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"responses":{"200":{"description":"A list of the application version settings.","content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/AppVersionSettingObject"},"type":"array"},"examples":{"Successful Get Application Version settings request":{"$ref":"#/components/examples/Successful_Get_Application_Version_settings_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"put":{"description":"Updates the settings in a version of the application.","operationId":"Settings_Update","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"requestBody":{"content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/AppVersionSettingObject"},"type":"array"}}},"description":"A list of the updated application version settings.","required":true},"responses":{"200":{"description":"Successful operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Update Application Version settings request":{"$ref":"#/components/examples/Successful_Update_Application_Version_settings_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/suggest":{"delete":{"description":"Deleted an unlabelled utterance in a version of the application.","operationId":"Versions_DeleteUnlabelledUtterance","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"requestBody":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"The utterance text to delete.","required":true},"responses":{"200":{"description":"Successful operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OperationStatus"},"examples":{"Successful Delete Unlabelled Utterance":{"$ref":"#/components/examples/Successful_Delete_Unlabelled_Utterance"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/apps/{appId}/versions/{versionId}/train":{"get":{"description":"Gets the training status of all models (intents and entities) for the specified LUIS app. You must call the train API to train the LUIS app before you call this API to get training status. \"appID\" specifies the LUIS app ID. \"versionId\" specifies the version number of the LUIS app. For example, \"0.1\".","operationId":"Train_GetStatus","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"responses":{"200":{"description":"A successful response provides an array of training status details for a LUIS app that you submitted for training. Each element in the response array provides training status for a model (intent or entity) in the LUIS app. Note: Training status is not provided for prebuilt entities because they are pretrained. The \"modelId\" property identifies which intent or entity the training status corresponds to. To get the name and type of each model, use the models API which has a request URL in this format: https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/{appId}/versions/{versionId}/models The details property for each model can contain the following fields: \"statusId\": An integer from 0 to 3 that corresponds to the value of the status field. \"status\": A string with one of the following values: \"Success\", \"UpToDate\", \"InProgress\", \"Fail\". If the status is \"Fail\", the \"failureReason\" property provides the reason for failure. \"exampleCount\": The number of examples used for training. In the case of the None intent or prebuilt domain intents and entities, this number includes example provided internally by the system as well as examples you added to your LUIS app. \"failureReason\": A string that indicates the reason training failed.  The value \"FewLabels\" means that no labeled example utterances were provided for training. \"trainingDateTime\": A string indicating the time the model was last trained. The value uses the ISO 8601 format for representing times in UTC (Coordinated Universal Time) with a UTC designator (\"Z\"), for example: \"2017-08-10T01:08:34Z\".","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ModelTrainingInfoList"},"examples":{"Successful Get Application Version Training Status request":{"$ref":"#/components/examples/Successful_Get_Application_Version_Training_Status_request"}}},"JSON":{"schema":{"$ref":"#/components/schemas/ModelTrainingInfoList"},"examples":{"Successful Get Application Version Training Status request":{"$ref":"#/components/examples/Successful_Get_Application_Version_Training_Status_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}},"JSON":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"description":"Sends a training request for a version of a specified LUIS app. This POST request initiates a request asynchronously. To determine whether the training request is successful, submit a GET request to get training status. Note: The application version is not fully trained unless all the models (intents and entities) are trained successfully or are up to date. To verify training success, get the training status at least once after training is complete.","operationId":"Train_TrainVersion","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"responses":{"202":{"description":"This response indicates the initial training status.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EnqueueTrainingResponse"},"examples":{"Successful Train Application Version request":{"$ref":"#/components/examples/Successful_Train_Application_Version_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/azureaccounts":{"get":{"description":"Gets the LUIS Azure accounts for the user using his ARM token.","operationId":"AzureAccounts_ListUserLUISAccounts","parameters":[{"$ref":"#/components/parameters/BearerAuthPath"}],"responses":{"200":{"description":"A list of Azure account information objects.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AzureAccountInfoList"},"examples":{"Successful Get azure accounts request":{"$ref":"#/components/examples/Successful_Get_azure_accounts_request"}}}}},"default":{"description":"Error Response.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"user - Get LUIS Azure accounts"}},"/package/{appId}/slot/{slotName}/gzip":{"get":{"description":"Packages a published LUIS application as a GZip file to be used in the LUIS container.","operationId":"Apps_PackagePublishedApplicationAsGzip","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/SlotNameInPath"}],"responses":{"200":{"description":"The GZip binary stream of the published application package.","content":{"application/octet-stream":{"schema":{"type":"string","format":"binary"},"examples":{"Successful Get published application package request":{"$ref":"#/components/examples/Successful_Get_published_application_package_request"}}},"application/json":{"schema":{"type":"string","format":"binary"},"examples":{"Successful Get published application package request":{"$ref":"#/components/examples/Successful_Get_published_application_package_request"}}}}},"default":{"description":"Error Response.","content":{"application/octet-stream":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}},"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"package - Gets published LUIS application package in binary stream GZip format"}},"/package/{appId}/versions/{versionId}/gzip":{"get":{"description":"Packages trained LUIS application as GZip file to be used in the LUIS container.","operationId":"Apps_PackageTrainedApplicationAsGzip","parameters":[{"$ref":"#/components/parameters/AppIdInPath"},{"$ref":"#/components/parameters/VersionIdInPath"}],"responses":{"200":{"description":"The GZip binary stream of the trained application package.","content":{"application/octet-stream":{"schema":{"type":"string","format":"binary"},"examples":{"Successful Get published application package request":{"$ref":"#/components/examples/Successful_Get_published_application_package_request"}}},"application/json":{"schema":{"type":"string","format":"binary"},"examples":{"Successful Get published application package request":{"$ref":"#/components/examples/Successful_Get_published_application_package_request"}}}}},"default":{"description":"Error Response.","content":{"application/octet-stream":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}},"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"summary":"package - Gets trained LUIS application package in binary stream GZip format"}}},"servers":[{"url":"https://azure.local"},{"url":"{Endpoint}/luis/authoring/v3.0-preview","variables":{"Endpoint":{"description":"Supported Cognitive Services endpoints (protocol and hostname, for example: https://westus.api.cognitive.microsoft.com).","x-ms-parameter-location":"client","x-ms-skip-url-encoding":true,"default":"none"}}}],"components":{"examples":{"Successful_Get_Applications_List_request":{"value":[{"createdDateTime":"2017-01-31T16:15:54Z","culture":"en-us","description":"This is my first dummy application","domain":"Comics","endpointHitsCount":0,"endpoints":{"PRODUCTION":{"assignedEndpointKey":"","endpointRegion":"westus","endpointUrl":"DummyUrl","isStaging":false,"publishedDateTime":"2017-02-19T17:09:14Z","versionId":"0.1"}},"id":"363187f1-c573-46b3-bc4c-ae01d686e68e","name":"MyFirstDummyApp","usageScenario":"IoT","versionsCount":3}]},"Successful_Application_Creation":{"value":"9e6703ec-56fe-48ce-8a72-10d592f6056d"},"Successful_Get_Personal_Assistant_Applications":{"value":{"endpointKeys":[],"endpointUrls":{"Chinese":"ChineseDummyURL","English":"EnglishDummyURL","French":"FrenchDummyURL","Italian":"ItalianDummyURL","Spanish":"SpanishDummyURL"}}},"Successful_Get_Application_Cultures_request":{"value":[{"code":"en-us","name":"English"},{"code":"zh-cn","name":"Chinese"},{"code":"fr-fr","name":"French"},{"code":"fr-ca","name":"French Canadian"},{"code":"es-es","name":"Spanish"},{"code":"es-mx","name":"Spanish Mexican"},{"code":"it-it","name":"Italian"},{"code":"de-de","name":"German"},{"code":"ja-jp","name":"Japanese"},{"code":"pt-br","name":"Brazilian Portuguese"},{"code":"ko-kr","name":"Korean"},{"code":"nl-nl","name":"Dutch"}]},"Successful_Get_Available_Custom_Prebuilt_Domains_request":{"value":[{"culture":"en-us","description":"A custom prebuilt domain for taxi booking","entities":[{"description":"Route starting point","examples":"find taxi x to take me to 9th street from space needle","name":"from_place_name"}],"examples":"book taxi x on friday at 6 pm, take me to Tinga's from Westin hotel with taxi lux","intents":[{"description":"Requests/Books taxi","examples":"book taxi x on friday at 6 pm","name":"book_taxi"},{"description":"Cancels taxi request","examples":"I just called an taxi SUV , please cancel, Cancel my taxi","name":"cancel_taxi"}],"name":"taxi"},{"culture":"en-us","description":"A custom prebuilt domain that gets weather forecast and condition","entities":[{"description":"Location of the queried weather","examples":"What's the weather like in Minneapolis","name":"location"},{"description":"Temperature measurement unit","examples":"Please change the weather from Fahrenheit to Celsius","name":"unit"}],"examples":"Show me the weather for this weekend, What's the weather?","intents":[{"description":"Gets weather forecast","examples":"What's the weather like tomorrow?","name":"get_forecast"},{"description":"Gets weather condition","examples":"what's the average temperature in India in September?","name":"get_condition"}],"name":"weather"}]},"Successful_Add_Custom_Prebuilt_Application_request":{"value":"00000000-0000-0000-0000-000000000000"},"Successful_Get_AvailableCustomPrebuiltDomainsForCulture_request":{"value":[{"culture":"en-us","description":"A custom prebuilt domain for taxi booking","entities":[{"description":"Route starting point","examples":"find taxi x to take me to 9th street from space needle","name":"from_place_name"}],"examples":"book taxi x on friday at 6 pm, take me to Tinga's from Westin hotel with taxi lux","intents":[{"description":"Requests/Books taxi","examples":"book taxi x on friday at 6 pm","name":"book_taxi"},{"description":"Cancels taxi request","examples":"I just called an taxi SUV , please cancel, Cancel my taxi","name":"cancel_taxi"}],"name":"taxi"},{"culture":"en-us","description":"A custom prebuilt domain that gets weather forecast and condition","entities":[{"description":"Location of the queried weather","examples":"What's the weather like in Minneapolis","name":"location"},{"description":"Temperature measurement unit","examples":"Please change the weather from Fahrenheit to Celsius","name":"unit"}],"examples":"Show me the weather for this weekend, What's the weather?","intents":[{"description":"Gets weather forecast","examples":"What's the weather like tomorrow?","name":"get_forecast"},{"description":"Gets weather condition","examples":"what's the average temperature in India in September?","name":"get_condition"}],"name":"weather"}]},"Successful_Get_Application_Domains_request":{"value":["Booking & Reference","Business","Comics","Communication","Education","Entertainment","Finance","Food & Nutrition","Gaming","Health & Fitness","Home Automation","Media & Video","Medical","Music & Audio","Navigation & Maps","News & Magazines","Personalization","Productivity","Real Estate","Scheduler","Shopping","Social Network","Sports","Telecom","Tools","Transportation","Translation","Travel & Local","Weather","Others"]},"Successful_Import_Application":{"value":"0.2"},"Successful_Get_Application_Usage_Scenarios_request":{"value":["IoT","Bot","Mobile Application","Other"]},"Successful_Rename_Application_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Application_Info_request":{"value":{"createdDateTime":"2017-01-31T16:15:54Z","culture":"en-us","description":"This is my first dummy application","domain":"Comics","endpointHitsCount":0,"endpoints":{"PRODUCTION":{"assignedEndpointKey":"","endpointRegion":"westus","endpointUrl":"DummyUrl","isStaging":false,"publishedDateTime":"2017-02-19T17:09:14Z","versionId":"0.1"}},"id":"363187f1-c573-46b3-bc4c-ae01d686e68e","name":"MyFirstDummyAp","usageScenario":"IoT","versionsCount":3}},"Successful_delete_assigned_azure_account_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_assigned_azure_accounts_request":{"value":[{"accountName":"{account_name}","azureSubscriptionId":"{azure_subscription_id}","resourceGroup":"{resource_group_name}"}]},"Successful_Assign_azure_account_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Endpoints_request":{"value":{"eastus2":"https://eastus2.api.cognitive.microsoft.com/api/v2.0/apps/bb25e72c-2279-46bb-a99b-89fcb921b58a","southeastasia":"https://southeastasia.api.cognitive.microsoft.com/api/v2.0/apps/bb25e72c-2279-46bb-a99b-89fcb921b58a","westcentralus":"https://westcentralus.api.cognitive.microsoft.com/api/v2.0/apps/bb25e72c-2279-46bb-a99b-89fcb921b58a","westus":"https://westus.api.cognitive.microsoft.com/api/v2.0/apps/bb25e72c-2279-46bb-a99b-89fcb921b58a"}},"Successful_Remove_User_From_Access_List":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Application_User_Access_List":{"value":{"emails":["yourname@outlook.com"],"owner":"owner@email.com"}},"Successful_Add_User_To_Access_List":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Replaces_Users_From_Access_List":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Publish_Application_request":{"value":{"assignedEndpointKey":"11be6373fca44ded80fbe2afa8597c18","endpointRegion":"westus, cus","endpointUrl":"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/11be6373fca44ded80fbe2afa8597c18","failedRegions":"cus","isStaging":false,"publishedDateTime":"2017-11-28T19:20:28Z"}},"Successful_Get_Publish_Settings_request":{"value":{"id":"51963bf0-08a1-44b7-9c69-735dbb92ce74","sentimentAnalysis":true,"speech":true,"spellChecker":true}},"Successful_Update_Publish_Settings_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Download_Application_Query_logs_request":{"value":"\"Query\",\"UTC DateTime\",\"Response\" \"hello, world!\",01/31/2017 17:17:41,\"{  \"\"query\"\": \"\"Hello, World!\"\",  \"\"topScoringIntent\"\": {    \"\"intent\"\": \"\"None\"\",    \"\"score\"\": 0.6277761  },  \"\"intents\"\": [    {      \"\"intent\"\": \"\"None\"\",      \"\"score\"\": 0.6277761    },    {      \"\"intent\"\": \"\"BookFlight\"\",      \"\"score\"\": 0.002136109    },    {      \"\"intent\"\": \"\"GetWeather\"\",      \"\"score\"\": 0.00142168161    }  ],  \"\"entities\"\": []}\""},"Successful_Get_Application_Settings_request":{"value":{"id":"51963bf0-08a1-44b7-9c69-735dbb92ce74","public":false}},"Successful_Update_Application_Settings_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Application_Versions_info_request":{"value":[{"assignedEndpointKey":{"SubscriptionKey":"","SubscriptionName":"","SubscriptionRegion":"westus"},"createdDateTime":"2017-08-01T14:34:15Z","endpointHitsCount":175,"endpointUrl":"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/363187f1-c573-46b3-bc4c-ae01d686e68e","entitiesCount":0,"externalApiKeys":{},"intentsCount":4,"lastModifiedDateTime":"2017-11-28T20:12:09Z","lastPublishedDateTime":"2017-11-28T20:12:35Z","lastTrainedDateTime":"2017-11-28T20:12:12Z","trainingStatus":"Trained","version":"0.1"}]},"Successful_Delete_Application_Version_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Application_Version_info_request":{"value":{"assignedEndpointKey":{"SubscriptionKey":"","SubscriptionName":"","SubscriptionRegion":"westus"},"createdDateTime":"2017-08-01T14:34:15Z","endpointHitsCount":175,"endpointUrl":"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/363187f1-c573-46b3-bc4c-ae01d686e68e","entitiesCount":0,"externalApiKeys":{},"intentsCount":4,"lastModifiedDateTime":"2017-11-28T20:12:09Z","lastPublishedDateTime":"2017-11-28T20:12:35Z","lastTrainedDateTime":"2017-11-28T20:12:12Z","trainingStatus":"Trained","version":"0.1"}},"Successful_Rename_Application_Version_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Clone_Application_Version_request":{"value":"1.0"},"Successful_Get_Application_Version_Closed_List_Infos_request":{"value":[{"id":"8713b104-78ec-4c4f-9f96-f2e53562cc16","name":"States","readableType":"Closed List Entity Extractor","roles":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 1"},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 2"}],"subLists":[{"canonicalForm":"new york","id":1,"list":["ny","new york"]},{"canonicalForm":"washington","id":2,"list":["washington","wa"]},{"canonicalForm":"california","id":3,"list":["california","ca","calif.","cal."]}],"typeId":5}]},"Successful_Create_Closed_List_Entity_Model_request":{"value":"8713b104-78ec-4c4f-9f96-f2e53562cc16"},"Successful_Delete_Closed_List_Entity_Info_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Closed_List_Entity_Info_request":{"value":{"id":"8713b104-78ec-4c4f-9f96-f2e53562cc16","name":"States","readableType":"Closed List Entity Extractor","roles":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 1"},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 2"}],"subLists":[{"canonicalForm":"new york","id":1,"list":["ny","new york"]},{"canonicalForm":"washington","id":2,"list":["washington","wa"]},{"canonicalForm":"california","id":3,"list":["california","ca","calif.","cal."]}],"typeId":5}},"Successful_Add_SubLists_to_Closed_List_Entity_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Update_Closed_List_Entity_Info_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Add_Sublist_request":{"value":6134877},"Successful_Delete_Sublist_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Update_Sublist_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Closed_List_Entity_Roles_request":{"value":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 1"},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 2"}]},"Successful_Create_Closed_List_Entity_Role_request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"},"Successful_Delete_Prebuilt_Entity_Role_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Closed_List_Entity_Role_request":{"value":{"id":"a682a962-1f92-4ae7-b8b8-398414e30c12","name":"role 1"}},"Successful_Update_Closed_List_Entity_Extractor_Role_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Application_Version_Composite_Entity_Infos_request":{"value":[{"children":[{"id":"63ebd752-4e81-4ce7-a698-b59b82bf5519","name":"Location::To"},{"id":"a18eaa87-ecd9-4a67-a951-e70cf5b87c7e","name":"datetime"}],"id":"bc1bae43-7904-48ad-a165-88b1910174f9","name":"Reservation","readableType":"Composite Entity Extractor","roles":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 1"},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 2"}],"typeId":4}]},"Successful_Delete_Entity_Info_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Composite_Entity_Info_request":{"value":{"children":[{"id":"63ebd752-4e81-4ce7-a698-b59b82bf5519","name":"Location::To"},{"id":"a18eaa87-ecd9-4a67-a951-e70cf5b87c7e","name":"datetime"}],"id":"bc1bae43-7904-48ad-a165-88b1910174f9","name":"Reservation","readableType":"Composite Entity Extractor","roles":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 1"},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 2"}],"typeId":4}},"Successful_Update_Composite_Entity_Extractor_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Create_Composite_Entity_Child_Model_request":{"value":"891c235f-4f42-4320-bc36-b6256b6c3f2b"},"Successful_Delete_Composite_Entity_Child_Model_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Composite_Entity_Roles_request":{"value":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 1"},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 2"}]},"Successful_Create_Composite_Entity_Role_request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"},"Successful_Delete_Composite_Entity_Role_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Composite_Entity_Role_request":{"value":{"id":"a682a962-1f92-4ae7-b8b8-398414e30c12","name":"role 1"}},"Successful_Update_Composite_Entity_Extractor_Role_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Add_Custom_Prebuilt_Domain_to_Application_request":{"value":["2639049a-e41d-4285-a3c6-8a17ed299473","200d6173-ecfa-4967-bf95-3c319902dc52","f80aa9ba-64c8-4a36-8cc5-92010d0aadf1","f50d6f0f-b2dd-4973-9270-c114312b3a10"]},"Successful_Delete_Prebuilt_Domain_from_Application_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Custom_Prebuilt_Domain_Entities_request":{"value":[{"customPrebuiltDomainName":"Camera","customPrebuiltModelName":"AppName","id":"b8e31be4-300f-455e-894b-6f079abca0a2","name":"Camera.AppName","readableType":"Entity Extractor","roles":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 1"},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 2"}],"typeId":1}]},"Successful_Add_Custom_Prebuilt_Entity_request":{"value":"1c2e70c1-3cbf-4e89-9703-9583b81102b9"},"Successful_Get_Custom_Prebuilt_Entity_Roles_request":{"value":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 1"},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 2"}]},"Successful_Create_Custom_Prebuilt_Entity_Role_request":{"value":8645},"Successful_Delete_Custom_Prebuilt_Entity_Role_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Custom_Prebuilt_Domain_Entity_Role_request":{"value":{"id":"a682a962-1f92-4ae7-b8b8-398414e30c12","name":"role 1"}},"Successful_Update_Custom_Prebuilt_Entity_Extractor_Role_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Custom_Prebuilt_Intent_request":{"value":[{"customPrebuiltDomainName":"Calendar","customPrebuiltModelName":"Add","id":"b8e31be4-300f-455e-894b-6f079abca0a2","name":"Camera.AppName","readableType":"Intent Classifier","typeId":1}]},"Successful_Add_Custom_Prebuilt_Intent_request":{"value":"1c2e70c1-3cbf-4e89-9703-9583b81102b9"},"Successful_Get_Custom_Prebuilt_Domain_Models_request":{"value":[{"customPrebuiltDomainName":"Calendar","customPrebuiltModelName":"Find","id":"1aa813da-8d36-4d16-bb13-d6f193290fea","name":"Calendar.Find","readableType":"Intent Classifier","typeId":0},{"customPrebuiltDomainName":"Calendar","customPrebuiltModelName":"Location","id":"d02b2e38-6b3c-412e-bf9e-f6770a40c9a0","name":"Calendar.Location","readableType":"Entity Extractor","roles":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 1"},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 2"}],"typeId":1}]},"Successful_Get_Application_Version_Entity_Infos_request":{"value":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"DayOfWeek","readableType":"Entity Extractor","roles":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 1"},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 2"}],"typeId":1},{"customPrebuiltDomainName":"Camera","customPrebuiltModelName":"AppName","id":"b8e31be4-300f-455e-894b-6f079abca0a2","name":"$Camera.AppName","readableType":"Entity Extractor","roles":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 1"},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 2"}],"typeId":1}]},"Successful_Create_Entity_Extractor_request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"},"Successful_Get_Entity_Info_request":{"value":{"children":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","instanceOf":"datetimeV2","name":"Day","readableType":"Child Entity Extractor","typeId":1}],"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"DayOfWeek","readableType":"Entity Extractor","roles":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 1"},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 2"}],"typeId":1}},"Successful_Update_Entity_Extractor_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Create_Entity_Child_Model_request":{"value":"891c235f-4f42-4320-bc36-b6256b6c3f2b"},"Successful_Delete_feature_relation_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Features_information_request":{"value":[{"featureName":"Phraselist1"},{"modelName":"None"}]},"Successful_Add_Feature_Relation_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Replace_Features_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Entity_Roles_request":{"value":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 1"},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 2"}]},"Successful_Create_Entity_Role_request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"},"Successful_Delete_Entity_Extractor_Role_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Entity_Extractor_Role_request":{"value":{"id":"a682a962-1f92-4ae7-b8b8-398414e30c12","name":"role 1"}},"Successful_Update_Entity_Extractor_Role_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Entity_Suggestion_Examples":{"value":[{"entityPredictions":[],"intentPredictions":[{"name":"None","score":0.65},{"name":"FindAirportByCode","score":0.02},{"name":"WeatherInPlace","score":0.01},{"name":"TimeInPlace","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0}],"text":"hey","tokenizedText":["hey"]},{"entityPredictions":[{"endTokenIndex":4,"entityName":"datetime","phrase":"2-2-2017","startTokenIndex":0}],"intentPredictions":[{"name":"None","score":0.88},{"name":"TimeInPlace","score":0},{"name":"FindAirportByCode","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0},{"name":"WeatherInPlace","score":0}],"text":"2-2-2017","tokenizedText":["2","-","2","-","2017"]},{"entityPredictions":[],"intentPredictions":[{"name":"FindAirportByCode","score":0.99},{"name":"FindHotels","score":0.01},{"name":"TimeInPlace","score":0},{"name":"None","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"WeatherInPlace","score":0}],"text":"maybe find me an airport first","tokenizedText":["maybe","find","me","an","airport","first"]},{"entityPredictions":[],"intentPredictions":[{"name":"None","score":0.98},{"name":"FindAirportByCode","score":0.01},{"name":"WeatherInPlace","score":0.01},{"name":"TimeInPlace","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0}],"text":"as","tokenizedText":["as"]},{"entityPredictions":[{"endTokenIndex":3,"entityName":"Renamed Entity","phrase":"barcelona","startTokenIndex":3},{"endTokenIndex":3,"entityName":"geography","phrase":"barcelona","startTokenIndex":3}],"intentPredictions":[{"name":"FindHotels","score":1},{"name":"TimeInPlace","score":0},{"name":"None","score":0},{"name":"FindAirportByCode","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"WeatherInPlace","score":0}],"text":"find hotel in barcelona","tokenizedText":["find","hotel","in","barcelona"]},{"entityPredictions":[{"endTokenIndex":4,"entityName":"Code","phrase":"atl","startTokenIndex":4}],"intentPredictions":[{"name":"FindAirportByCode","score":1},{"name":"TimeInPlace","score":0},{"name":"None","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0},{"name":"WeatherInPlace","score":0}],"text":"find airport with code atl","tokenizedText":["find","airport","with","code","atl"]},{"entityPredictions":[{"endTokenIndex":4,"entityName":"Renamed Entity","phrase":"madrid","startTokenIndex":4}],"intentPredictions":[{"name":"FindHotels-ChangeLocation","score":1},{"name":"FindHotels","score":0.24},{"name":"TimeInPlace","score":0},{"name":"None","score":0},{"name":"FindAirportByCode","score":0},{"name":"WeatherInPlace","score":0}],"text":"change hotel location to madrid","tokenizedText":["change","hotel","location","to","madrid"]},{"entityPredictions":[],"intentPredictions":[{"name":"FindAirportByCode","score":1},{"name":"FindHotels","score":0.01},{"name":"TimeInPlace","score":0},{"name":"None","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"WeatherInPlace","score":0}],"text":"ok, find me an airport","tokenizedText":["ok",",","find","me","an","airport"]},{"entityPredictions":[{"endTokenIndex":0,"entityName":"Code","phrase":"eze","startTokenIndex":0}],"intentPredictions":[{"name":"FindAirportByCode","score":0.68},{"name":"None","score":0.29},{"name":"TimeInPlace","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0},{"name":"WeatherInPlace","score":0}],"text":"eze","tokenizedText":["eze"]},{"entityPredictions":[{"endTokenIndex":0,"entityName":"datetime","phrase":"today","startTokenIndex":0},{"endTokenIndex":0,"entityName":"datetime","phrase":"today","startTokenIndex":0}],"intentPredictions":[{"name":"None","score":0.64},{"name":"FindAirportByCode","score":0.01},{"name":"WeatherInPlace","score":0.01},{"name":"TimeInPlace","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0}],"text":"today","tokenizedText":["today"]},{"entityPredictions":[],"intentPredictions":[{"name":"None","score":0.16},{"name":"WeatherInPlace","score":0.07},{"name":"TimeInPlace","score":0},{"name":"FindAirportByCode","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0}],"text":"buenos aires","tokenizedText":["buenos","aires"]},{"entityPredictions":[],"intentPredictions":[{"name":"None","score":0.37},{"name":"FindAirportByCode","score":0.01},{"name":"WeatherInPlace","score":0.01},{"name":"TimeInPlace","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0}],"text":"hi there","tokenizedText":["hi","there"]},{"entityPredictions":[{"endTokenIndex":4,"entityName":"datetime","phrase":"05-28-2017","startTokenIndex":0}],"intentPredictions":[{"name":"None","score":0.85},{"name":"TimeInPlace","score":0},{"name":"FindAirportByCode","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0},{"name":"WeatherInPlace","score":0}],"text":"05-28-2017","tokenizedText":["05","-","28","-","2017"]},{"entityPredictions":[{"endTokenIndex":0,"entityName":"datetime","phrase":"tomorrow","startTokenIndex":0}],"intentPredictions":[{"name":"None","score":0.6},{"name":"FindAirportByCode","score":0.01},{"name":"WeatherInPlace","score":0.01},{"name":"TimeInPlace","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0}],"text":"tomorrow","tokenizedText":["tomorrow"]},{"entityPredictions":[{"endTokenIndex":6,"entityName":"Renamed Entity","phrase":"san francisco","startTokenIndex":5},{"endTokenIndex":6,"entityName":"geography","phrase":"san francisco","startTokenIndex":5}],"intentPredictions":[{"name":"WeatherInPlace","score":0.99},{"name":"TimeInPlace","score":0},{"name":"None","score":0},{"name":"FindAirportByCode","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0}],"text":"tell me the weather in san francisco","tokenizedText":["tell","me","the","weather","in","san","francisco"]},{"entityPredictions":[{"endTokenIndex":5,"entityName":"Renamed Entity","phrase":"barcelona","startTokenIndex":5}],"intentPredictions":[{"name":"FindHotels","score":1},{"name":"TimeInPlace","score":0},{"name":"None","score":0},{"name":"FindAirportByCode","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"WeatherInPlace","score":0}],"text":"find me a hotel in barcelona","tokenizedText":["find","me","a","hotel","in","barcelona"]},{"entityPredictions":[],"intentPredictions":[{"name":"None","score":0.62},{"name":"FindAirportByCode","score":0.09},{"name":"WeatherInPlace","score":0.01},{"name":"TimeInPlace","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0}],"text":"dme","tokenizedText":["dme"]},{"entityPredictions":[],"intentPredictions":[{"name":"None","score":0.65},{"name":"FindAirportByCode","score":0.02},{"name":"WeatherInPlace","score":0.01},{"name":"TimeInPlace","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0}],"text":"dude","tokenizedText":["dude"]},{"entityPredictions":[{"endTokenIndex":5,"entityName":"Code","phrase":"juj","startTokenIndex":5}],"intentPredictions":[{"name":"FindAirportByCode","score":1},{"name":"FindHotels","score":0.01},{"name":"TimeInPlace","score":0},{"name":"None","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"WeatherInPlace","score":0}],"text":"sorry, find me airport juj","tokenizedText":["sorry",",","find","me","airport","juj"]},{"entityPredictions":[],"intentPredictions":[{"name":"None","score":0.52},{"name":"WeatherInPlace","score":0.01},{"name":"TimeInPlace","score":0},{"name":"FindAirportByCode","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0}],"text":"madrid","tokenizedText":["madrid"]},{"entityPredictions":[],"intentPredictions":[{"name":"FindAirportByCode","score":1},{"name":"TimeInPlace","score":0},{"name":"None","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0},{"name":"WeatherInPlace","score":0}],"text":"search for airport","tokenizedText":["search","for","airport"]},{"entityPredictions":[{"endTokenIndex":6,"entityName":"Renamed Entity","phrase":"miami","startTokenIndex":6},{"endTokenIndex":6,"entityName":"geography","phrase":"miami","startTokenIndex":6}],"intentPredictions":[{"name":"TimeInPlace","score":1},{"name":"None","score":0},{"name":"FindAirportByCode","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0},{"name":"WeatherInPlace","score":0}],"text":"what's the time in miami?","tokenizedText":["what","'","s","the","time","in","miami","?"]},{"entityPredictions":[{"endTokenIndex":1,"entityName":"datetime","phrase":"next monday","startTokenIndex":0}],"intentPredictions":[{"name":"None","score":0.3},{"name":"FindAirportByCode","score":0.01},{"name":"WeatherInPlace","score":0.01},{"name":"TimeInPlace","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0}],"text":"next monday","tokenizedText":["next","monday"]},{"entityPredictions":[{"endTokenIndex":3,"entityName":"geography","phrase":"seattle","startTokenIndex":3}],"intentPredictions":[{"name":"FindHotels","score":1},{"name":"None","score":0.02},{"name":"TimeInPlace","score":0},{"name":"FindAirportByCode","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"WeatherInPlace","score":0}],"text":"search hotels, seattle","tokenizedText":["search","hotels",",","seattle"]},{"entityPredictions":[{"endTokenIndex":3,"entityName":"Renamed Entity","phrase":"madrid","startTokenIndex":3}],"intentPredictions":[{"name":"FindHotels-ChangeLocation","score":1},{"name":"None","score":0.03},{"name":"FindAirportByCode","score":0.01},{"name":"TimeInPlace","score":0},{"name":"FindHotels","score":0},{"name":"WeatherInPlace","score":0}],"text":"change location to madrid","tokenizedText":["change","location","to","madrid"]},{"entityPredictions":[],"intentPredictions":[{"name":"FindHotels","score":0.99},{"name":"TimeInPlace","score":0},{"name":"None","score":0},{"name":"FindAirportByCode","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"WeatherInPlace","score":0}],"text":"search hotels, \"next day\"","tokenizedText":["search","hotels",",","\"","next","day","\""]},{"entityPredictions":[{"endTokenIndex":2,"entityName":"RoomType","phrase":"deluxe","startTokenIndex":2},{"endTokenIndex":7,"entityName":"Category","phrase":"3 stars","startTokenIndex":6},{"endTokenIndex":10,"entityName":"Renamed Entity","phrase":"barcelona","startTokenIndex":10},{"endTokenIndex":10,"entityName":"geography","phrase":"barcelona","startTokenIndex":10}],"intentPredictions":[{"name":"FindHotels","score":1},{"name":"TimeInPlace","score":0},{"name":"None","score":0},{"name":"FindAirportByCode","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"WeatherInPlace","score":0}],"text":"find a deluxe room in a 3 stars hotel in barcelona please","tokenizedText":["find","a","deluxe","room","in","a","3","stars","hotel","in","barcelona","please"]},{"entityPredictions":[],"intentPredictions":[{"name":"TimeInPlace","score":1},{"name":"None","score":0.14},{"name":"FindAirportByCode","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0},{"name":"WeatherInPlace","score":0}],"text":"time miami","tokenizedText":["time","miami"]},{"entityPredictions":[{"endTokenIndex":3,"entityName":"Renamed Entity","phrase":"barcelona","startTokenIndex":3},{"endTokenIndex":5,"entityName":"Checkin","phrase":"today","startTokenIndex":5},{"endTokenIndex":5,"entityName":"datetime","phrase":"today","startTokenIndex":5}],"intentPredictions":[{"name":"FindHotels","score":1},{"name":"TimeInPlace","score":0},{"name":"None","score":0},{"name":"FindAirportByCode","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"WeatherInPlace","score":0}],"text":"find hotel in barcelona from today","tokenizedText":["find","hotel","in","barcelona","from","today"]},{"entityPredictions":[{"endTokenIndex":2,"entityName":"datetime","phrase":"5","startTokenIndex":2},{"endTokenIndex":3,"entityName":"Category","phrase":"5 start","startTokenIndex":2},{"endTokenIndex":6,"entityName":"Renamed Entity","phrase":"jujuy","startTokenIndex":6}],"intentPredictions":[{"name":"FindHotels","score":1},{"name":"TimeInPlace","score":0},{"name":"None","score":0},{"name":"FindAirportByCode","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"WeatherInPlace","score":0}],"text":"search for 5 start hotels in jujuy","tokenizedText":["search","for","5","start","hotels","in","jujuy"]},{"entityPredictions":[{"endTokenIndex":4,"entityName":"datetime","phrase":"tomorrow","startTokenIndex":4}],"intentPredictions":[{"name":"FindHotels","score":1},{"name":"None","score":0.01},{"name":"TimeInPlace","score":0},{"name":"FindAirportByCode","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"WeatherInPlace","score":0}],"text":"search hotels, past tomorrow","tokenizedText":["search","hotels",",","past","tomorrow"]},{"entityPredictions":[{"endTokenIndex":0,"entityName":"Code","phrase":"loz","startTokenIndex":0}],"intentPredictions":[{"name":"None","score":1},{"name":"FindAirportByCode","score":0.01},{"name":"TimeInPlace","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0},{"name":"WeatherInPlace","score":0}],"text":"loz","tokenizedText":["loz"]},{"entityPredictions":[],"intentPredictions":[{"name":"WeatherInPlace","score":1},{"name":"TimeInPlace","score":0},{"name":"None","score":0},{"name":"FindAirportByCode","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0}],"text":"show me the weather","tokenizedText":["show","me","the","weather"]},{"entityPredictions":[{"endTokenIndex":0,"entityName":"Code","phrase":"dme","startTokenIndex":0}],"intentPredictions":[{"name":"FindAirportByCode","score":0.99},{"name":"None","score":0.04},{"name":"TimeInPlace","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0},{"name":"WeatherInPlace","score":0}],"text":"dme airport","tokenizedText":["dme","airport"]},{"entityPredictions":[{"endTokenIndex":1,"entityName":"Code","phrase":"zzz","startTokenIndex":1}],"intentPredictions":[{"name":"FindAirportByCode","score":1},{"name":"None","score":0.01},{"name":"TimeInPlace","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0},{"name":"WeatherInPlace","score":0}],"text":"find zzz airport","tokenizedText":["find","zzz","airport"]},{"entityPredictions":[{"endTokenIndex":3,"entityName":"Renamed Entity","phrase":"miami","startTokenIndex":3},{"endTokenIndex":3,"entityName":"geography","phrase":"miami","startTokenIndex":3}],"intentPredictions":[{"name":"FindHotels-ChangeLocation","score":1},{"name":"None","score":0.08},{"name":"TimeInPlace","score":0},{"name":"FindAirportByCode","score":0},{"name":"FindHotels","score":0},{"name":"WeatherInPlace","score":0}],"text":"change location to miami","tokenizedText":["change","location","to","miami"]},{"entityPredictions":[{"endTokenIndex":3,"entityName":"Checkin","phrase":"today","startTokenIndex":3},{"endTokenIndex":3,"entityName":"datetime","phrase":"today","startTokenIndex":3},{"endTokenIndex":6,"entityName":"Checkout","phrase":"next monday","startTokenIndex":5},{"endTokenIndex":6,"entityName":"datetime","phrase":"next monday","startTokenIndex":5}],"intentPredictions":[{"name":"FindHotels","score":1},{"name":"TimeInPlace","score":0},{"name":"None","score":0},{"name":"FindAirportByCode","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"WeatherInPlace","score":0}],"text":"find hotel from today till next monday","tokenizedText":["find","hotel","from","today","till","next","monday"]},{"entityPredictions":[{"endTokenIndex":7,"entityName":"Code","phrase":"bcn","startTokenIndex":7}],"intentPredictions":[{"name":"FindAirportByCode","score":1},{"name":"FindHotels","score":0.02},{"name":"TimeInPlace","score":0},{"name":"None","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"WeatherInPlace","score":0}],"text":"sorry, find me airport with code bcn","tokenizedText":["sorry",",","find","me","airport","with","code","bcn"]},{"entityPredictions":[{"endTokenIndex":5,"entityName":"Renamed Entity","phrase":"aisjj3o9f2","startTokenIndex":5}],"intentPredictions":[{"name":"WeatherInPlace","score":0.82},{"name":"FindHotels","score":0.02},{"name":"None","score":0.01},{"name":"TimeInPlace","score":0},{"name":"FindAirportByCode","score":0},{"name":"FindHotels-ChangeLocation","score":0}],"text":"actionresult = \"weather in aisjj3o9f2\"","tokenizedText":["actionresult","=","\"","weather","in","aisjj3o9f2","\""]},{"entityPredictions":[],"intentPredictions":[{"name":"None","score":0.06},{"name":"FindHotels","score":0.05},{"name":"FindAirportByCode","score":0.01},{"name":"WeatherInPlace","score":0.01},{"name":"TimeInPlace","score":0},{"name":"FindHotels-ChangeLocation","score":0}],"text":"[object object]","tokenizedText":["[","object","object","]"]},{"entityPredictions":[{"endTokenIndex":4,"entityName":"datetime","phrase":"05-27-2017","startTokenIndex":0}],"intentPredictions":[{"name":"None","score":0.84},{"name":"FindHotels","score":0.01},{"name":"TimeInPlace","score":0},{"name":"FindAirportByCode","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"WeatherInPlace","score":0}],"text":"05-27-2017","tokenizedText":["05","-","27","-","2017"]},{"entityPredictions":[],"intentPredictions":[{"name":"FindHotels-ChangeLocation","score":1},{"name":"FindHotels","score":0.03},{"name":"None","score":0.01},{"name":"TimeInPlace","score":0},{"name":"FindAirportByCode","score":0},{"name":"WeatherInPlace","score":0}],"text":"change hotel location","tokenizedText":["change","hotel","location"]},{"entityPredictions":[],"intentPredictions":[{"name":"None","score":1},{"name":"FindAirportByCode","score":0.01},{"name":"TimeInPlace","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0},{"name":"WeatherInPlace","score":0}],"text":"asdttt","tokenizedText":["asdttt"]},{"entityPredictions":[{"endTokenIndex":4,"entityName":"Renamed Entity","phrase":"miami","startTokenIndex":4},{"endTokenIndex":4,"entityName":"geography","phrase":"miami","startTokenIndex":4}],"intentPredictions":[{"name":"TimeInPlace","score":1},{"name":"WeatherInPlace","score":0.01},{"name":"None","score":0},{"name":"FindAirportByCode","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0}],"text":"whats the time in miami","tokenizedText":["whats","the","time","in","miami"]},{"entityPredictions":[{"endTokenIndex":2,"entityName":"Renamed Entity","phrase":"brasil","startTokenIndex":2}],"intentPredictions":[{"name":"TimeInPlace","score":1},{"name":"None","score":0.01},{"name":"FindAirportByCode","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0},{"name":"WeatherInPlace","score":0}],"text":"time in brasil","tokenizedText":["time","in","brasil"]},{"entityPredictions":[],"intentPredictions":[{"name":"None","score":0.65},{"name":"FindAirportByCode","score":0.02},{"name":"WeatherInPlace","score":0.01},{"name":"TimeInPlace","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0}],"text":"mia","tokenizedText":["mia"]},{"entityPredictions":[{"endTokenIndex":4,"entityName":"datetime","phrase":"3-3-2017","startTokenIndex":0}],"intentPredictions":[{"name":"None","score":0.87},{"name":"TimeInPlace","score":0},{"name":"FindAirportByCode","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0},{"name":"WeatherInPlace","score":0}],"text":"3-3-2017","tokenizedText":["3","-","3","-","2017"]},{"entityPredictions":[{"endTokenIndex":6,"entityName":"Renamed Entity","phrase":"buenos aires","startTokenIndex":5},{"endTokenIndex":6,"entityName":"geography","phrase":"buenos aires","startTokenIndex":5},{"endTokenIndex":6,"entityName":"geography","phrase":"buenos aires","startTokenIndex":5},{"endTokenIndex":6,"entityName":"geography","phrase":"buenos aires","startTokenIndex":5}],"intentPredictions":[{"name":"WeatherInPlace","score":0.97},{"name":"FindHotels","score":0.01},{"name":"TimeInPlace","score":0},{"name":"None","score":0},{"name":"FindAirportByCode","score":0},{"name":"FindHotels-ChangeLocation","score":0}],"text":"how is the weather in buenos aires?","tokenizedText":["how","is","the","weather","in","buenos","aires","?"]},{"entityPredictions":[],"intentPredictions":[{"name":"None","score":0.98},{"name":"FindAirportByCode","score":0.01},{"name":"WeatherInPlace","score":0.01},{"name":"TimeInPlace","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0}],"text":"n","tokenizedText":["n"]},{"entityPredictions":[{"endTokenIndex":1,"entityName":"Code","phrase":"aaa","startTokenIndex":1}],"intentPredictions":[{"name":"FindAirportByCode","score":1},{"name":"TimeInPlace","score":0},{"name":"None","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0},{"name":"WeatherInPlace","score":0}],"text":"find aaa airport","tokenizedText":["find","aaa","airport"]},{"entityPredictions":[{"endTokenIndex":2,"entityName":"Code","phrase":"lhr","startTokenIndex":2}],"intentPredictions":[{"name":"FindAirportByCode","score":0.99},{"name":"None","score":0.01},{"name":"TimeInPlace","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0},{"name":"WeatherInPlace","score":0}],"text":"find airport lhr","tokenizedText":["find","airport","lhr"]},{"entityPredictions":[{"endTokenIndex":0,"entityName":"Code","phrase":"juj","startTokenIndex":0}],"intentPredictions":[{"name":"None","score":1},{"name":"FindAirportByCode","score":0.01},{"name":"TimeInPlace","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0},{"name":"WeatherInPlace","score":0}],"text":"juj","tokenizedText":["juj"]},{"entityPredictions":[],"intentPredictions":[{"name":"None","score":1},{"name":"FindAirportByCode","score":0.01},{"name":"TimeInPlace","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0},{"name":"WeatherInPlace","score":0}],"text":"adweqwe","tokenizedText":["adweqwe"]},{"entityPredictions":[{"endTokenIndex":3,"entityName":"Renamed Entity","phrase":"madrid","startTokenIndex":3},{"endTokenIndex":3,"entityName":"geography","phrase":"madrid","startTokenIndex":3},{"endTokenIndex":5,"entityName":"Checkin","phrase":"today","startTokenIndex":5},{"endTokenIndex":5,"entityName":"datetime","phrase":"today","startTokenIndex":5}],"intentPredictions":[{"name":"FindHotels","score":1},{"name":"TimeInPlace","score":0},{"name":"None","score":0},{"name":"FindAirportByCode","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"WeatherInPlace","score":0}],"text":"find hotel in madrid for today","tokenizedText":["find","hotel","in","madrid","for","today"]},{"entityPredictions":[{"endTokenIndex":2,"entityName":"Code","phrase":"zzz","startTokenIndex":2}],"intentPredictions":[{"name":"FindAirportByCode","score":1},{"name":"None","score":0.01},{"name":"TimeInPlace","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0},{"name":"WeatherInPlace","score":0}],"text":"find airport zzz","tokenizedText":["find","airport","zzz"]},{"entityPredictions":[{"endTokenIndex":5,"entityName":"datetime","phrase":"tomorrow","startTokenIndex":5}],"intentPredictions":[{"name":"FindHotels","score":1},{"name":"TimeInPlace","score":0},{"name":"None","score":0},{"name":"FindAirportByCode","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"WeatherInPlace","score":0}],"text":"search hotels, \"past tomorrow\"","tokenizedText":["search","hotels",",","\"","past","tomorrow","\""]},{"entityPredictions":[{"endTokenIndex":3,"entityName":"Category","phrase":"5 stars","startTokenIndex":2},{"endTokenIndex":6,"entityName":"Renamed Entity","phrase":"barcelo","startTokenIndex":6}],"intentPredictions":[{"name":"FindHotels","score":1},{"name":"TimeInPlace","score":0},{"name":"None","score":0},{"name":"FindAirportByCode","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"WeatherInPlace","score":0}],"text":"search for 5 stars hotels in barcelo","tokenizedText":["search","for","5","stars","hotels","in","barcelo"]},{"entityPredictions":[],"intentPredictions":[{"name":"FindAirportByCode","score":1},{"name":"None","score":0.01},{"name":"TimeInPlace","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0},{"name":"WeatherInPlace","score":0}],"text":"airport","tokenizedText":["airport"]},{"entityPredictions":[],"intentPredictions":[{"name":"FindHotels-ChangeLocation","score":1},{"name":"None","score":0.19},{"name":"FindAirportByCode","score":0.02},{"name":"TimeInPlace","score":0},{"name":"FindHotels","score":0},{"name":"WeatherInPlace","score":0}],"text":"change location","tokenizedText":["change","location"]},{"entityPredictions":[{"endTokenIndex":4,"entityName":"datetime","phrase":"11/11/2017","startTokenIndex":0}],"intentPredictions":[{"name":"None","score":0.9},{"name":"FindHotels","score":0.01},{"name":"TimeInPlace","score":0},{"name":"FindAirportByCode","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"WeatherInPlace","score":0}],"text":"11/11/2017","tokenizedText":["11","/","11","/","2017"]},{"entityPredictions":[{"endTokenIndex":6,"entityName":"Renamed Entity","phrase":"new york","startTokenIndex":5},{"endTokenIndex":6,"entityName":"geography","phrase":"new york","startTokenIndex":5},{"endTokenIndex":6,"entityName":"Retrieve Sample List","phrase":"new york","startTokenIndex":5}],"intentPredictions":[{"name":"WeatherInPlace","score":1},{"name":"TimeInPlace","score":0},{"name":"None","score":0},{"name":"FindAirportByCode","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0}],"text":"tell me the weather in new york","tokenizedText":["tell","me","the","weather","in","new","york"]}]},"Successful_Add_Label_request":{"value":{"ExampleId":-11,"UtteranceText":"whats the weather in buenos aires?"}},"Successful_Review_Labeled_Examples_request":{"value":[{"entityLabels":[{"endTokenIndex":7,"entityName":"Location","startTokenIndex":7}],"entityPredictions":[{"endTokenIndex":7,"entityName":"Location","phrase":"seattle","startTokenIndex":7}],"id":-12,"intentLabel":"GetWeather","intentPredictions":[{"name":"GetWeather","score":1},{"name":"None","score":0.21},{"name":"BookFlight","score":0}],"text":"what's the weather like in seattle?","tokenizedText":["what","'","s","the","weather","like","in","seattle","?"]},{"entityLabels":[{"endTokenIndex":7,"entityName":"Location","role":"To","startTokenIndex":7},{"endTokenIndex":5,"entityName":"Location","role":"from","startTokenIndex":5}],"entityPredictions":[{"endTokenIndex":9,"entityName":"datetime","phrase":"next thursday","startTokenIndex":8}],"id":-11,"intentLabel":"BookFlight","intentPredictions":[{"name":"BookFlight","score":0.93},{"name":"None","score":0.41},{"name":"GetWeather","score":0}],"text":"book me a flight from cairo to redmond next thursday","tokenizedText":["book","me","a","flight","from","cairo","to","redmond","next","thursday"]}]},"Successful_Batch_Add_Labels_request":{"value":[{"error":{"code":"FAILED","message":"whats the weather in seattle?. Error: The intent classifier InvalidIntent does not exist in the selected application"},"hasError":true},{"hasError":false,"value":{"ExampleId":-5313943,"UtteranceText":"whats the weather in buenos aires?"}}]},"Successful_Delete_Example_Label_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Export_Application_Version":{"value":{"closedLists":[],"composites":[],"culture":"en-us","desc":"","entities":[{"name":"AirportCode","roles":["destination"]},{"name":"Hotel","roles":[]}],"intents":[{"inherits":{"domain_name":"HomeAutomation","model_name":"TurnOff"},"name":"HomeAutomation.TurnOff"},{"name":"dateintent"},{"name":"Help"},{"name":"None"},{"name":"SearchHotels"},{"name":"ShowHotelsReviews"}],"luis_schema_version":"3.0.0","model_features":[{"activated":true,"mode":true,"name":"Near","words":"near,around,close,nearby"},{"activated":true,"mode":true,"name":"Show","words":"show,find,look,search"}],"name":"LuisBot","patternAnyEntities":[{"explicitList":[],"name":"patternAny1","roles":["role1","role2"]}],"patterns":[{"intent":"Help","pattern":"this is [a test] {patternAny1:role1}"}],"prebuiltEntities":[{"name":"datetimeV2","roles":["datetime role"]}],"regex_entities":[{"name":"regex1","regexPattern":"[^a]+","roles":["regex role"]}],"regex_features":[{"activated":true,"name":"AirportCodeRegex","pattern":"[a-z]{3}"}],"utterances":[{"entities":[],"intent":"Help","text":"i need help"},{"entities":[],"intent":"Help","text":"help me"},{"entities":[],"intent":"dateintent","text":"tomorrow"},{"entities":[],"intent":"SearchHotels","text":"search for hotels in seattle"},{"entities":[],"intent":"Help","text":"what can i do?"},{"entities":[],"intent":"dateintent","text":"next monday"},{"entities":[],"intent":"dateintent","text":"next year"},{"entities":[],"intent":"SearchHotels","text":"look for hotels in miami"},{"entities":[],"intent":"SearchHotels","text":"show me hotels in california"},{"entities":[{"endPos":44,"entity":"Hotel","startPos":23}],"intent":"ShowHotelsReviews","text":"show me the reviews of the amazing bot resort"},{"entities":[{"endPos":42,"entity":"Hotel","startPos":25}],"intent":"ShowHotelsReviews","text":"can i see the reviews of extended bot hotel?"},{"entities":[{"endPos":23,"entity":"Hotel","startPos":16}],"intent":"ShowHotelsReviews","text":"find reviews of hotelxya"},{"entities":[{"endPos":35,"entity":"Hotel","startPos":19}],"intent":"ShowHotelsReviews","text":"show me reviews of the amazing hotel"},{"entities":[],"intent":"Help","text":"what are the available options?"},{"entities":[],"intent":"SearchHotels","text":"best hotels in seattle"},{"entities":[],"intent":"SearchHotels","text":"hotels in los angeles"},{"entities":[],"intent":"SearchHotels","text":"can you show me hotels from los angeles?"},{"entities":[{"endPos":56,"entity":"Hotel","startPos":31}],"intent":"ShowHotelsReviews","text":"can you show me the reviews of the amazing resort & hotel"},{"entities":[{"endPos":46,"entity":"Hotel","startPos":24}],"intent":"ShowHotelsReviews","text":"what are the reviews of the hotel bot framework?"},{"entities":[{"endPos":19,"entity":"AirportCode","startPos":17}],"intent":"SearchHotels","text":"find hotels near eze"},{"entities":[{"endPos":24,"entity":"AirportCode","startPos":22}],"intent":"SearchHotels","text":"where can i stay near nnn?"},{"entities":[{"endPos":19,"entity":"AirportCode","startPos":17}],"intent":"SearchHotels","text":"show hotels near att airport"},{"entities":[{"endPos":19,"entity":"AirportCode","startPos":17}],"intent":"SearchHotels","text":"find hotels near agl"},{"entities":[{"endPos":21,"entity":"AirportCode","startPos":19}],"intent":"SearchHotels","text":"find hotels around eze airport"},{"entities":[],"intent":"dateintent","text":"01/7"}],"versionId":"0.1"}},"Successful_Get_Application_Version_Features_request":{"value":{"patternFeatures":[{"enabledForAllModels":true,"id":81231,"isActive":true,"name":"EmailPattern","pattern":"\\b[A-Z0-9._%+-]+@[A-Z0-9.-]+\\.[A-Z]{2,}\\b"}],"phraselistFeatures":[{"enabledForAllModels":true,"id":5341,"isActive":true,"isExchangeable":true,"name":"Cities","phrases":"Seattle,New York,Paris,Moscow,Beijin"},{"enabledForAllModels":true,"id":74598,"isActive":true,"isExchangeable":true,"name":"DaysOfWeek","phrases":"monday,tuesday,wednesday,thursday,friday,saturday,sunday"}]}},"Successful_Get_Application_Version_Hierarchical_Entity_Infos_request":{"value":[{"children":[{"id":"ec076676-d8d9-42fa-a44e-87989c0a2f82","name":"From"},{"id":"63ebd752-4e81-4ce7-a698-b59b82bf5519","name":"To"}],"id":"fe559c31-9778-42ea-ba45-94e0bd7cf767","name":"Location","readableType":"Hierarchical Entity Extractor","roles":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 1"},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 2"}],"typeId":3}]},"Successful_Delete_Hierarchical_Entity_Model_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Hierarchical_Entity_Info_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Delete_Hierarchical_Entity_Child_Model_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Hierarchical_Entity_Child_Info_request":{"value":{"id":"ef278a6c-d94f-4d20-a602-cf53d0acf0f5","name":"From","readableType":"Hierarchical Child Entity Extractor","typeId":6}},"Successful_Update_Hierarchical_Entity_Child_Model_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Hierarchical_Entity_Roles_request":{"value":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 1"},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 2"}]},"Successful_Create_Hierarchical_Entity_Role_request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"},"Successful_Delete_Hierarchical_Entity_Role_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Hierarchical_Entity_Role_request":{"value":{"id":"a682a962-1f92-4ae7-b8b8-398414e30c12","name":"role 1"}},"Successful_Update_Hierarchical_Entity_Extractor_Role_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Application_Version_Intent_Infos_request":{"value":[{"id":"227a71ed-7d4b-4dce-8f3a-16c4e5cc06e8","name":"BookFlight","readableType":"Intent Classifier","typeId":0},{"id":"8285a9ee-6bc0-4409-87f4-82d539f70529","name":"None","readableType":"Intent Classifier","typeId":0},{"customPrebuiltDomainName":"Camera","customPrebuiltModelName":"CapturePhoto","id":"9500536f-ffec-4fab-93ad-6268abb0f73c","name":"$Camera.CapturePhoto","readableType":"Intent Classifier","typeId":0}]},"Successful_Create_Intent_Classifier_request":{"value":"227a71ed-7d4b-4dce-8f3a-16c4e5cc06e8"},"Successful_Delete_Intent_Model_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Intent_Info_request":{"value":{"id":"8285a9ee-6bc0-4409-87f4-82d539f70529","name":"TestIntent","readableType":"Intent Classifier","typeId":0}},"Successful_Rename_Intent_Model_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Intent_Patterns_request":{"value":[{"id":"cc8fa554-cc6c-4bcc-97eb-c8e5bc2091b3","intent":"report to","pattern":"who's {Name} reporting to?"},{"id":"58077d3a-4bbb-47ba-8aa9-31c0ead0bf08","intent":"report to","pattern":"who's reporting to {Name}?"}]},"Successful_Get_Intents_Suggestion_Examples":{"value":[{"entityPredictions":[],"intentPredictions":[{"name":"None","score":0.65},{"name":"FindAirportByCode","score":0.02},{"name":"WeatherInPlace","score":0.01},{"name":"TimeInPlace","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0}],"text":"hey","tokenizedText":["hey"]},{"entityPredictions":[{"endTokenIndex":4,"entityName":"datetime","phrase":"2-2-2017","startTokenIndex":0}],"intentPredictions":[{"name":"None","score":0.88},{"name":"TimeInPlace","score":0},{"name":"FindAirportByCode","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0},{"name":"WeatherInPlace","score":0}],"text":"2-2-2017","tokenizedText":["2","-","2","-","2017"]},{"entityPredictions":[],"intentPredictions":[{"name":"FindAirportByCode","score":0.99},{"name":"FindHotels","score":0.01},{"name":"TimeInPlace","score":0},{"name":"None","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"WeatherInPlace","score":0}],"text":"maybe find me an airport first","tokenizedText":["maybe","find","me","an","airport","first"]},{"entityPredictions":[],"intentPredictions":[{"name":"None","score":0.98},{"name":"FindAirportByCode","score":0.01},{"name":"WeatherInPlace","score":0.01},{"name":"TimeInPlace","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"FindHotels","score":0}],"text":"as","tokenizedText":["as"]},{"entityPredictions":[{"endTokenIndex":3,"entityName":"Renamed Entity","phrase":"barcelona","startTokenIndex":3},{"endTokenIndex":3,"entityName":"geography","phrase":"barcelona","startTokenIndex":3}],"intentPredictions":[{"name":"FindHotels","score":1},{"name":"TimeInPlace","score":0},{"name":"None","score":0},{"name":"FindAirportByCode","score":0},{"name":"FindHotels-ChangeLocation","score":0},{"name":"WeatherInPlace","score":0}],"text":"find hotel in barcelona","tokenizedText":["find","hotel","in","barcelona"]}]},"Successful_Get_Available_Prebuilt_Entity_Extractors_request":{"value":[{"description":"Continents, Countries, Cities, Post codes, and other points of interest","examples":"Antarctica, Portugal, Dubai, Sanjiang County, Lake Pontchartrain, CB3 0DS","name":"geography"},{"description":"Dates and times, resolved to a canonical form","examples":"June 23, 1976, Jul 11 2012, 7 AM, 6:49 PM, tomorrow at 7 AM","name":"datetime"},{"description":"Email Addresses","examples":"user@site.net, user_name@mysite.com.eg","name":"email"},{"description":"Websites URLs","examples":"www.website.com, http://website.net?name=my_name&age=10, https://www.mywebsite.net.eg/page","name":"url"},{"description":"US phone numbers","examples":"123-456-7890, +1 123 456 789, (123)456-789","name":"phoneNumber"}]},"Successful_Get_Application_Version_Model_Infos_request":{"value":[{"id":"227a71ed-7d4b-4dce-8f3a-16c4e5cc06e8","name":"BookFlight","readableType":"Intent Classifier","typeId":0},{"id":"a18eaa87-ecd9-4a67-a951-e70cf5b87c7e","name":"datetime","readableType":"Prebuilt Entity Extractor","roles":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 1"},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 2"}],"typeId":2},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"DayOfWeek","readableType":"Entity Extractor","roles":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 1"},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 2"}],"typeId":1},{"children":[{"id":"ec076676-d8d9-42fa-a44e-87989c0a2f82","name":"From"},{"id":"63ebd752-4e81-4ce7-a698-b59b82bf5519","name":"To"}],"id":"fe559c31-9778-42ea-ba45-94e0bd7cf767","name":"Location","readableType":"Hierarchical Entity Extractor","roles":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 1"},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 2"}],"typeId":3},{"id":"8285a9ee-6bc0-4409-87f4-82d539f70529","name":"None","readableType":"Intent Classifier","typeId":0},{"children":[{"id":"63ebd752-4e81-4ce7-a698-b59b82bf5519","name":"Location::To"},{"id":"a18eaa87-ecd9-4a67-a951-e70cf5b87c7e","name":"datetime"}],"id":"bc1bae43-7904-48ad-a165-88b1910174f9","name":"Reservation","readableType":"Composite Entity Extractor","roles":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 1"},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 2"}],"typeId":4},{"id":"8713b104-78ec-4c4f-9f96-f2e53562cc16","name":"States","readableType":"Closed List Entity Extractor","roles":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 1"},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 2"}],"subLists":[{"canonicalForm":"new york","id":1,"list":["ny","new york"]},{"canonicalForm":"washington","id":2,"list":["washington","wa"]},{"canonicalForm":"california","id":3,"list":["california","ca","calif.","cal."]}],"typeId":5},{"customPrebuiltDomainName":"Camera","customPrebuiltModelName":"AppName","id":"b8e31be4-300f-455e-894b-6f079abca0a2","name":"$Camera.AppName","readableType":"Entity Extractor","roles":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 1"},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 2"}],"typeId":1},{"customPrebuiltDomainName":"Camera","customPrebuiltModelName":"CapturePhoto","id":"9500536f-ffec-4fab-93ad-6268abb0f73c","name":"$Camera.CapturePhoto","readableType":"Intent Classifier","typeId":0}]},"Successful_Get_Examples_Per_Model_Request":{"value":[{"id":10002,"text":"Lorem ipsum dolor sit amet"},{"id":10003,"text":"consectetur adipiscing elit"},{"id":10004,"text":"sed do eiusmod tempor incididunt"}]},"Successful_Create_Regex_Entity_Model_request":{"value":"bc1bae43-7904-48ad-a165-88b1910174f9"},"Successful_Delete_Pattern.Any_Entity_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Pattern.Any_Entity_request":{"value":{"explicitList":[{"explicitListItem":"item 1","id":456},{"explicitListItem":"item 2","id":457}],"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"any","readableType":"Pattern.Any Entity Extractor","roles":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 1"},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 2"}],"typeId":7}},"Successful_Update_Pattern.Any_Entity_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Explicit_List_request":{"value":[{"explicitListItem":"item 1","id":48674},{"explicitListItem":"item 2","id":76451}]},"Successful_Delete_Pattern.Any_Explicit_List_Item_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Pattern.Any_Explicit_List_Item_request":{"value":{"explicitListItem":"item 2","id":76451}},"Successful_Update_Pattern.Any_Entity_Explicit_List_Item_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Pattern.Any_Entity_Roles_request":{"value":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 1"},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 2"}]},"Successful_Create_Pattern.Any_Entity_Role_request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"},"Successful_Delete_Pattern.Any_Entity_Role_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Pattern.Any_Entity_Role_request":{"value":{"id":"a682a962-1f92-4ae7-b8b8-398414e30c12","name":"role 1"}},"Successful_Update_Pattern.Any_Entity_Extractor_Role_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Add_Pattern_request":{"value":{"id":"cc8fa554-cc6c-4bcc-97eb-c8e5bc2091b3","intent":"report to","pattern":"who's {Name} reporting to?"}},"Successful_Batch_Delete_Patterns_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Application_Version_Patterns_request":{"value":[{"id":"cc8fa554-cc6c-4bcc-97eb-c8e5bc2091b3","intent":"report to","pattern":"who's {Name} reporting to?"},{"id":"58077d3a-4bbb-47ba-8aa9-31c0ead0bf08","intent":"report to","pattern":"who's reporting to {Name}?"}]},"Successful_Batch_Add_Patterns_request":{"value":[{"id":"cc8fa554-cc6c-4bcc-97eb-c8e5bc2091b3","intent":"report to","pattern":"who's {Name} reporting to?"},{"id":"cc8fa554-cc6c-4bcc-97eb-c8e5bc2091b3","intent":"report to","pattern":"who's {Name} reporting to?"}]},"Successful_Batch_Update_Patterns_request":{"value":[{"id":"cc8fa554-cc6c-4bcc-97eb-c8e5bc2091b3","intent":"report to","pattern":"who's {Name} reporting to?"},{"id":"cc8fa554-cc6c-4bcc-97eb-c8e5bc2091b3","intent":"report to","pattern":"who's {Name} reporting to?"}]},"Successful_Delete_Pattern_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Update_Pattern_request":{"value":{"id":"cc8fa554-cc6c-4bcc-97eb-c8e5bc2091b3","intent":"report to","pattern":"who's {Name} reporting to?"}},"Successful_Get_Application_Version_Phraselist_Features_request":{"value":[{"enabledForAllModels":true,"id":321421,"isActive":true,"isExchangeable":true,"name":"Cities","phrases":"Seattle,New York,Paris,Moscow,Beijin"},{"enabledForAllModels":true,"id":97832,"isActive":true,"isExchangeable":true,"name":"DaysOfWeek","phrases":"monday,tuesday,wednesday,thursday,friday,saturday,sunday"}]},"Successful_Create_Phraselist_Feature_request":{"value":1823},"Successful_Delete_Phraselist_Feature_Info_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Phraselist_Feature_Info_request":{"value":{"enabledForAllModels":true,"id":178384,"isActive":true,"isExchangeable":true,"name":"DaysOfWeek","phrases":"monday,tuesday,wednesday,thursday,friday,saturday,sunday"}},"Successful_Update_Phraselist_Feature_Info_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Application_Version_Prebuilt_Infos_request":{"value":[{"id":"a18eaa87-ecd9-4a67-a951-e70cf5b87c7e","name":"datetime","readableType":"Prebuilt Entity Extractor","roles":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 1"},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 2"}],"typeId":2}]},"Successful_Add_Application_Version_Prebuilt_Infos_request":{"value":[{"id":"a18eaa87-ecd9-4a67-a951-e70cf5b87c7e","name":"datetime","readableType":"Prebuilt Entity Extractor","typeId":2}]},"Successful_Get_Prebuilt_Entity_Roles_request":{"value":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 1"},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 2"}]},"Successful_Create_Prebuilt_Entity_Role_request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"},"Successful_Get_Prebuilt_Entity_Role_request":{"value":{"id":"a682a962-1f92-4ae7-b8b8-398414e30c12","name":"role 1"}},"Successful_Update_Prebuilt_Entity_Extractor_Role_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Prebuilt_Info_request":{"value":{"id":"a065c863-918e-4c56-a267-9aaae3c7dced","name":"datetimeV2","readableType":"Prebuilt Entity Extractor","roles":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 1"},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 2"}],"typeId":2}},"Successful_Get_Regex_Entity_Models_request":{"value":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"AirportCodeRegex","readableType":"Regex Entity Extractor","regexPattern":"[a-z]{3}","roles":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 1"},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 2"}],"typeId":8},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"Guid regex","readableType":"Regex Entity Extractor","regexPattern":"[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{3}-[0-9A-F]{12}","roles":[],"typeId":8}]},"Successful_Get_Regex_Entity_Roles_request":{"value":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 1"},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 2"}]},"Successful_Create_Regex_Entity_Role_request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"},"Successful_Delete_Regex_Entity_Role_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Regex_Entity_Role_request":{"value":{"id":"a682a962-1f92-4ae7-b8b8-398414e30c12","name":"role 1"}},"Successful_Update_Regex_Entity_Extractor_Role_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Delete_Regex_Entity_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Regex_Entity_request":{"value":{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"AirportCodeRegex","readableType":"Regex Entity Extractor","regexPattern":"[a-z]{3}","roles":[{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 1"},{"id":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73","name":"role 2"}],"typeId":8}},"Successful_Update_Regex_Entity_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Application_Version_settings_request":{"value":[{"name":"UseAllTrainingData","value":"false"}]},"Successful_Update_Application_Version_settings_request":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Delete_Unlabelled_Utterance":{"value":{"code":"Success","message":"Operation Successful"}},"Successful_Get_Application_Version_Training_Status_request":{"value":[{"details":{"exampleCount":0,"status":"InProgress","statusId":3},"modelId":"f9b00d5b-1f2d-421e-bc99-5ff192d0b998"},{"details":{"exampleCount":12,"status":"UpToDate","statusId":2,"trainingDateTime":"2017-01-31T21:42:02Z"},"modelId":"51403af3-5342-4926-abaa-91172a42e075"},{"details":{"exampleCount":12,"failureReason":"FewLabels","status":"Fail","statusId":1},"modelId":"b4cf6402-dc79-4ca3-8666-b0007337e92b"},{"details":{"exampleCount":0,"status":"InProgress","statusId":3},"modelId":"e8e3135a-acd9-4164-a65c-e2fedbe78cfa"},{"details":{"exampleCount":12,"status":"Success","statusId":0,"trainingDateTime":"2017-01-31T21:42:02Z"},"modelId":"3291fac9-6368-4c87-9562-e78cae0fa7c6"},{"details":{"exampleCount":0,"status":"InProgress","statusId":3},"modelId":"a193efac-ab02-49d7-b005-ee717d45c4f1"}]},"Successful_Train_Application_Version_request":{"value":{"status":"Queued","statusId":9}},"Successful_Get_azure_accounts_request":{"value":[{"accountName":"{account_name}","azureSubscriptionId":"{azure_subscription_id}","resourceGroup":"{resource_group_name}"}]},"Successful_Get_published_application_package_request":{"value":"{binary}"}},"parameters":{"AppIdInPath":{"description":"The application ID.","in":"path","name":"appId","required":true,"x-ms-parameter-location":"method","schema":{"type":"string","format":"uuid"},"examples":{"Successful Rename Application request":{"value":"363187f1-c573-46b3-bc4c-ae01d686e68e"},"Successful Get Application Info request":{"value":"363187f1-c573-46b3-bc4c-ae01d686e68e"},"Successful delete assigned azure account request":{"value":"363187f1-c573-46b3-bc4c-ae01d686e68e"},"Successful Get assigned azure accounts request":{"value":"363187f1-c573-46b3-bc4c-ae01d686e68e"},"Successful Assign azure account request":{"value":"363187f1-c573-46b3-bc4c-ae01d686e68e"},"Successful Get Endpoints request":{"value":"363187f1-c573-46b3-bc4c-ae01d686e68e"},"Successful Remove User From Access List":{"value":"363187f1-c573-46b3-bc4c-ae01d686e68e"},"Successful Get Application User Access List":{"value":"363187f1-c573-46b3-bc4c-ae01d686e68e"},"Successful Add User To Access List":{"value":"363187f1-c573-46b3-bc4c-ae01d686e68e"},"Successful Replaces Users From Access List":{"value":"363187f1-c573-46b3-bc4c-ae01d686e68e"},"Successful Publish Application request":{"value":"11be6373fca44ded80fbe2afa8597c18"},"Successful Get Publish Settings request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Update Publish Settings request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Download Application Query logs request":{"value":"{appId}"},"Successful Get Application Settings request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Update Application Settings request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Application Versions info request":{"value":"363187f1-c573-46b3-bc4c-ae01d686e68e"},"Successful Import Application":{"value":"bd72e8d7-62b8-48f5-9dcb-e3b0588b803a"},"Successful Delete Application Version request":{"value":"363187f1-c573-46b3-bc4c-ae01d686e68e"},"Successful Get Application Version info request":{"value":"363187f1-c573-46b3-bc4c-ae01d686e68e"},"Successful Rename Application Version request":{"value":"363187f1-c573-46b3-bc4c-ae01d686e68e"},"Successful Clone Application Version request":{"value":"363187f1-c573-46b3-bc4c-ae01d686e68e"},"Successful Get Application Version Closed List Infos request":{"value":"11be6373fca44ded80fbe2afa8597c18"},"Successful Create Closed List Entity Model request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Delete Closed List Entity Info request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Closed List Entity Info request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Add SubLists to Closed List Entity request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Update Closed List Entity Info request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Add Sublist request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Delete Sublist request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Update Sublist request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Closed List Entity Roles request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Create Closed List Entity Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Delete Prebuilt Entity Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Closed List Entity Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Update Closed List Entity Extractor Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Application Version Composite Entity Infos request":{"value":"{appId}"},"Successful Delete Entity Info request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Composite Entity Info request":{"value":"{appId}"},"Successful Update Composite Entity Extractor request":{"value":"{appId}"},"Successful Create Composite Entity Child Model request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Delete Composite Entity Child Model request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Composite Entity Roles request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Create Composite Entity Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Delete Composite Entity Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Composite Entity Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Update Composite Entity Extractor Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Add Custom Prebuilt Domain to Application request":{"value":"363187f1-c573-46b3-bc4c-ae01d686e68e"},"Successful Delete Prebuilt Domain from Application request":{"value":"363187f1-c573-46b3-bc4c-ae01d686e68e"},"Successful Get Custom Prebuilt Domain Entities request":{"value":"363187f1-c573-46b3-bc4c-ae01d686e68e"},"Successful Add Custom Prebuilt Entity request":{"value":"363187f1-c573-46b3-bc4c-ae01d686e68e"},"Successful Get Custom Prebuilt Entity Roles request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Create Custom Prebuilt Entity Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Delete Custom Prebuilt Entity Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Custom Prebuilt Domain Entity Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Update Custom Prebuilt Entity Extractor Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Custom Prebuilt Intent request":{"value":"363187f1-c573-46b3-bc4c-ae01d686e68e"},"Successful Add Custom Prebuilt Intent request":{"value":"363187f1-c573-46b3-bc4c-ae01d686e68e"},"Successful Get Custom Prebuilt Domain Models request":{"value":"363187f1-c573-46b3-bc4c-ae01d686e68e"},"Successful Get Application Version Entity Infos request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Create Entity Extractor request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Entity Info request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Update Entity Extractor request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Create Entity Child Model request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Delete feature relation request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Features information request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Add Feature Relation request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Replace Features request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Entity Roles request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Create Entity Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Delete Entity Extractor Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Entity Extractor Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Update Entity Extractor Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Entity Suggestion Examples":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Add Label request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Review Labeled Examples request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Batch Add Labels request":{"value":"2370fb9d-7dbc-4898-a361-a742cf290766"},"Successful Delete Example Label request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Export Application Version":{"value":"bd72e8d7-62b8-48f5-9dcb-e3b0588b803a"},"Successful Get Application Version Features request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Application Version Hierarchical Entity Infos request":{"value":"{appId}"},"Successful Delete Hierarchical Entity Model request":{"value":"{appId}"},"Successful Get Hierarchical Entity Info request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Delete Hierarchical Entity Child Model request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Hierarchical Entity Child Info request":{"value":"{appId}"},"Successful Update Hierarchical Entity Child Model request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Hierarchical Entity Roles request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Create Hierarchical Entity Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Delete Hierarchical Entity Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Hierarchical Entity Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Update Hierarchical Entity Extractor Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Application Version Intent Infos request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Create Intent Classifier request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Delete Intent Model request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Intent Info request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Rename Intent Model request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Intent Patterns request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Intents Suggestion Examples":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Available Prebuilt Entity Extractors request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Application Version Model Infos request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Examples Per Model Request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Create Regex Entity Model request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Delete Pattern.Any Entity request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Pattern.Any Entity request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Update Pattern.Any Entity request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Explicit List request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Delete Pattern.Any Explicit List Item request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Pattern.Any Explicit List Item request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Update Pattern.Any Entity Explicit List Item request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Pattern.Any Entity Roles request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Create Pattern.Any Entity Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Delete Pattern.Any Entity Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Pattern.Any Entity Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Update Pattern.Any Entity Extractor Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Add Pattern request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Batch Delete Patterns request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Application Version Patterns request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Batch Add Patterns request":{"value":"2370fb9d-7dbc-4898-a361-a742cf290766"},"Successful Batch Update Patterns request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Delete Pattern request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Update Pattern request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Application Version Phraselist Features request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Create Phraselist Feature request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Delete Phraselist Feature Info request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Phraselist Feature Info request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Update Phraselist Feature Info request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Application Version Prebuilt Infos request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Add Application Version Prebuilt Infos request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Prebuilt Entity Roles request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Create Prebuilt Entity Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Prebuilt Entity Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Update Prebuilt Entity Extractor Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Prebuilt Info request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Regex Entity Models request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Regex Entity Roles request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Create Regex Entity Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Delete Regex Entity Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Regex Entity Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Update Regex Entity Extractor Role request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Delete Regex Entity request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Regex Entity request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Update Regex Entity request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get Application Version settings request":{"value":"363187f1-c573-46b3-bc4c-ae01d686e68e"},"Successful Update Application Version settings request":{"value":"363187f1-c573-46b3-bc4c-ae01d686e68e"},"Successful Delete Unlabelled Utterance":{"value":"363187f1-c573-46b3-bc4c-ae01d686e68e"},"Successful Get Application Version Training Status request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Train Application Version request":{"value":"86226c53-b7a6-416f-876b-226b2b5ab07b"},"Successful Get published application package request":{"value":"363187f1-c573-46b3-bc4c-ae01d686e68e"}}},"BearerAuthPath":{"description":"The bearer authorization header to use; containing the user's ARM token used to validate Azure accounts information.","in":"header","name":"Authorization","required":true,"x-ms-parameter-location":"method","schema":{"type":"string"},"examples":{"Successful delete assigned azure account request":{"value":"Bearer {ARM Token}"},"Successful Get assigned azure accounts request":{"value":"Bearer {ARM Token}"},"Successful Assign azure account request":{"value":"Bearer {ARM Token}"},"Successful Get azure accounts request":{"value":"Bearer {ARM Token}"}}},"CEntityIdInPath":{"description":"The composite entity extractor ID.","in":"path","name":"cEntityId","required":true,"x-ms-parameter-location":"method","schema":{"type":"string","format":"uuid"},"examples":{"Successful Delete Entity Info request":{"value":"{cEntityId}"},"Successful Get Composite Entity Info request":{"value":"{cEntityId}"},"Successful Update Composite Entity Extractor request":{"value":"{cEntityId}"},"Successful Create Composite Entity Child Model request":{"value":"fe559c31-9778-42ea-ba45-94e0bd7cf767"},"Successful Delete Composite Entity Child Model request":{"value":"fe559c31-9778-42ea-ba45-94e0bd7cf767"},"Successful Get Composite Entity Roles request":{"value":"2d3173b0-983c-43ae-92f8-6f5b5d09a11a"},"Successful Create Composite Entity Role request":{"value":"fc821c4e-a2f8-4074-9410-7271b38a692d"},"Successful Delete Composite Entity Role request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"},"Successful Get Composite Entity Role request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"},"Successful Update Composite Entity Extractor Role request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}},"Endpoint":{"description":"Supported Cognitive Services endpoints (protocol and hostname, for example: https://westus.api.cognitive.microsoft.com).","in":"path","name":"Endpoint","required":true,"x-ms-parameter-location":"client","x-ms-skip-url-encoding":true,"schema":{"type":"string"}},"EntityIdInPath":{"description":"The entity extractor ID.","in":"path","name":"entityId","required":true,"x-ms-parameter-location":"method","schema":{"type":"string","format":"uuid"},"examples":{"Successful Delete feature relation request":{"value":"d7a08f1a-d276-4364-b2d5-b0235c61e37f"},"Successful Get Features information request":{"value":"d7a08f1a-d276-4364-b2d5-b0235c61e37f"},"Successful Add Feature Relation request":{"value":"d7a08f1a-d276-4364-b2d5-b0235c61e37f"},"Successful Replace Features request":{"value":"d7a08f1a-d276-4364-b2d5-b0235c61e37f"}}},"ForcePath":{"description":"A flag to indicate whether to force an operation.","in":"query","name":"force","x-ms-parameter-location":"method","schema":{"type":"boolean","default":false}},"HEntityIdInPath":{"description":"The hierarchical entity extractor ID.","in":"path","name":"hEntityId","required":true,"x-ms-parameter-location":"method","schema":{"type":"string","format":"uuid"},"examples":{"Successful Delete Hierarchical Entity Model request":{"value":"{hEntityId}"},"Successful Get Hierarchical Entity Info request":{"value":"fe559c31-9778-42ea-ba45-94e0bd7cf767"},"Successful Delete Hierarchical Entity Child Model request":{"value":"fe559c31-9778-42ea-ba45-94e0bd7cf767"},"Successful Get Hierarchical Entity Child Info request":{"value":"{hEntityId}"},"Successful Update Hierarchical Entity Child Model request":{"value":"fe559c31-9778-42ea-ba45-94e0bd7cf767"},"Successful Get Hierarchical Entity Roles request":{"value":"2d3173b0-983c-43ae-92f8-6f5b5d09a11a"},"Successful Create Hierarchical Entity Role request":{"value":"fc821c4e-a2f8-4074-9410-7271b38a692d"},"Successful Delete Hierarchical Entity Role request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"},"Successful Get Hierarchical Entity Role request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"},"Successful Update Hierarchical Entity Extractor Role request":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}},"IntentIdInPath":{"description":"The intent classifier ID.","in":"path","name":"intentId","required":true,"x-ms-parameter-location":"method","schema":{"type":"string","format":"uuid"},"examples":{"Successful Delete Intent Model request":{"value":"d7a08f1a-d276-4364-b2d5-b0235c61e37f"},"Successful Get Intent Info request":{"value":"d7a08f1a-d276-4364-b2d5-b0235c61e37f"},"Successful Rename Intent Model request":{"value":"d7a08f1a-d276-4364-b2d5-b0235c61e37f"},"Successful Delete feature relation request":{"value":"d7a08f1a-d276-4364-b2d5-b0235c61e37f"},"Successful Get Features information request":{"value":"d7a08f1a-d276-4364-b2d5-b0235c61e37f"},"Successful Add Feature Relation request":{"value":"d7a08f1a-d276-4364-b2d5-b0235c61e37f"},"Successful Replace Features request":{"value":"d7a08f1a-d276-4364-b2d5-b0235c61e37f"},"Successful Get Intent Patterns request":{"value":"6dbed7e2-7df6-4cd6-a225-97e6fbe4493d"},"Successful Get Intents Suggestion Examples":{"value":"3d73462d-98f0-4dcd-8d30-fab9e65f2e73"}}},"SkipInPath":{"description":"The number of entries to skip. Default value is 0.","in":"query","name":"skip","x-ms-parameter-location":"method","schema":{"type":"integer","minimum":0,"default":0},"examples":{"Successful Get Applications List request":{"value":0},"Successful Get Application Versions info request":{"value":0},"Successful Get Application Version Closed List Infos request":{"value":0},"Successful Get Application Version Composite Entity Infos request":{"value":0},"Successful Get Application Version Entity Infos request":{"value":0},"Successful Get Application Version Hierarchical Entity Infos request":{"value":0},"Successful Get Application Version Intent Infos request":{"value":0},"Successful Get Intent Patterns request":{"value":0},"Successful Get Application Version Model Infos request":{"value":0},"Successful Create Regex Entity Model request":{"value":0},"Successful Get Application Version Patterns request":{"value":0},"Successful Get Application Version Prebuilt Infos request":{"value":0},"Successful Get Regex Entity Models request":{"value":0}}},"SlotNameInPath":{"description":"The publishing slot name.","in":"path","name":"slotName","required":true,"x-ms-parameter-location":"method","schema":{"type":"string"},"examples":{"Successful Get published application package request":{"value":"PRODUCTION"}}},"TakeInPath":{"description":"The number of entries to return. Maximum page size is 500. Default is 100.","in":"query","name":"take","x-ms-parameter-location":"method","schema":{"type":"integer","minimum":0,"maximum":500,"default":100},"examples":{"Successful Get Applications List request":{"value":100},"Successful Get Application Versions info request":{"value":100},"Successful Get Application Version Closed List Infos request":{"value":100},"Successful Get Application Version Composite Entity Infos request":{"value":100},"Successful Get Application Version Entity Infos request":{"value":100},"Successful Get Application Version Hierarchical Entity Infos request":{"value":100},"Successful Get Application Version Intent Infos request":{"value":100},"Successful Get Intent Patterns request":{"value":100},"Successful Get Application Version Model Infos request":{"value":100},"Successful Create Regex Entity Model request":{"value":100},"Successful Get Application Version Patterns request":{"value":100},"Successful Get Application Version Prebuilt Infos request":{"value":100},"Successful Get Regex Entity Models request":{"value":100}}},"VersionIdInPath":{"description":"The version ID.","in":"path","name":"versionId","required":true,"x-ms-parameter-location":"method","schema":{"type":"string"},"examples":{"Successful Delete Application Version request":{"value":"0.1"},"Successful Get Application Version info request":{"value":"0.1"},"Successful Rename Application Version request":{"value":"0.1"},"Successful Clone Application Version request":{"value":"0.1"},"Successful Get Application Version Closed List Infos request":{"value":"0.1"},"Successful Create Closed List Entity Model request":{"value":"0.1"},"Successful Delete Closed List Entity Info request":{"value":"0.1"},"Successful Get Closed List Entity Info request":{"value":"0.1"},"Successful Add SubLists to Closed List Entity request":{"value":"0.1"},"Successful Update Closed List Entity Info request":{"value":"0.1"},"Successful Add Sublist request":{"value":"0.1"},"Successful Delete Sublist request":{"value":"0.1"},"Successful Update Sublist request":{"value":"0.1"},"Successful Get Closed List Entity Roles request":{"value":"0.1"},"Successful Create Closed List Entity Role request":{"value":"0.1"},"Successful Delete Prebuilt Entity Role request":{"value":"0.1"},"Successful Get Closed List Entity Role request":{"value":"0.1"},"Successful Update Closed List Entity Extractor Role request":{"value":"0.1"},"Successful Get Application Version Composite Entity Infos request":{"value":"{versionId}"},"Successful Delete Entity Info request":{"value":"0.1"},"Successful Get Composite Entity Info request":{"value":"{versionId}"},"Successful Update Composite Entity Extractor request":{"value":"{versionId}"},"Successful Create Composite Entity Child Model request":{"value":"0.1"},"Successful Delete Composite Entity Child Model request":{"value":"0.1"},"Successful Get Composite Entity Roles request":{"value":"0.1"},"Successful Create Composite Entity Role request":{"value":"0.1"},"Successful Delete Composite Entity Role request":{"value":"0.1"},"Successful Get Composite Entity Role request":{"value":"0.1"},"Successful Update Composite Entity Extractor Role request":{"value":"0.1"},"Successful Add Custom Prebuilt Domain to Application request":{"value":"0.1"},"Successful Delete Prebuilt Domain from Application request":{"value":"0.1"},"Successful Get Custom Prebuilt Domain Entities request":{"value":"1.0"},"Successful Add Custom Prebuilt Entity request":{"value":"1.0"},"Successful Get Custom Prebuilt Entity Roles request":{"value":"0.1"},"Successful Create Custom Prebuilt Entity Role request":{"value":"0.1"},"Successful Delete Custom Prebuilt Entity Role request":{"value":"0.1"},"Successful Get Custom Prebuilt Domain Entity Role request":{"value":"0.1"},"Successful Update Custom Prebuilt Entity Extractor Role request":{"value":"0.1"},"Successful Get Custom Prebuilt Intent request":{"value":"1.0"},"Successful Add Custom Prebuilt Intent request":{"value":"1.0"},"Successful Get Custom Prebuilt Domain Models request":{"value":"1.0"},"Successful Get Application Version Entity Infos request":{"value":"0.1"},"Successful Create Entity Extractor request":{"value":"0.1"},"Successful Get Entity Info request":{"value":"0.1"},"Successful Update Entity Extractor request":{"value":"0.1"},"Successful Create Entity Child Model request":{"value":"0.1"},"Successful Delete feature relation request":{"value":"0.1"},"Successful Get Features information request":{"value":"0.1"},"Successful Add Feature Relation request":{"value":"0.1"},"Successful Replace Features request":{"value":"0.1"},"Successful Get Entity Roles request":{"value":"0.1"},"Successful Create Entity Role request":{"value":"0.1"},"Successful Delete Entity Extractor Role request":{"value":"0.1"},"Successful Get Entity Extractor Role request":{"value":"0.1"},"Successful Update Entity Extractor Role request":{"value":"0.1"},"Successful Get Entity Suggestion Examples":{"value":"0.1"},"Successful Add Label request":{"value":"0.1"},"Successful Review Labeled Examples request":{"value":"0.1"},"Successful Batch Add Labels request":{"value":"0.1"},"Successful Delete Example Label request":{"value":"0.1"},"Successful Export Application Version":{"value":"0.2"},"Successful Get Application Version Features request":{"value":"0.1"},"Successful Get Application Version Hierarchical Entity Infos request":{"value":"{versionId}"},"Successful Delete Hierarchical Entity Model request":{"value":"{versionId}"},"Successful Get Hierarchical Entity Info request":{"value":"0.1"},"Successful Delete Hierarchical Entity Child Model request":{"value":"0.1"},"Successful Get Hierarchical Entity Child Info request":{"value":"{versionId}"},"Successful Update Hierarchical Entity Child Model request":{"value":"0.1"},"Successful Get Hierarchical Entity Roles request":{"value":"0.1"},"Successful Create Hierarchical Entity Role request":{"value":"0.1"},"Successful Delete Hierarchical Entity Role request":{"value":"0.1"},"Successful Get Hierarchical Entity Role request":{"value":"0.1"},"Successful Update Hierarchical Entity Extractor Role request":{"value":"0.1"},"Successful Get Application Version Intent Infos request":{"value":"0.1"},"Successful Create Intent Classifier request":{"value":"0.1"},"Successful Delete Intent Model request":{"value":"0.1"},"Successful Get Intent Info request":{"value":"0.1"},"Successful Rename Intent Model request":{"value":"0.1"},"Successful Get Intent Patterns request":{"value":"0.1"},"Successful Get Intents Suggestion Examples":{"value":"0.1"},"Successful Get Available Prebuilt Entity Extractors request":{"value":"0.1"},"Successful Get Application Version Model Infos request":{"value":"0.1"},"Successful Get Examples Per Model Request":{"value":"0.1"},"Successful Create Regex Entity Model request":{"value":"0.1"},"Successful Delete Pattern.Any Entity request":{"value":"0.1"},"Successful Get Pattern.Any Entity request":{"value":"0.1"},"Successful Update Pattern.Any Entity request":{"value":"0.1"},"Successful Get Explicit List request":{"value":"0.1"},"Successful Delete Pattern.Any Explicit List Item request":{"value":"0.1"},"Successful Get Pattern.Any Explicit List Item request":{"value":"0.1"},"Successful Update Pattern.Any Entity Explicit List Item request":{"value":"0.1"},"Successful Get Pattern.Any Entity Roles request":{"value":"0.1"},"Successful Create Pattern.Any Entity Role request":{"value":"0.1"},"Successful Delete Pattern.Any Entity Role request":{"value":"0.1"},"Successful Get Pattern.Any Entity Role request":{"value":"0.1"},"Successful Update Pattern.Any Entity Extractor Role request":{"value":"0.1"},"Successful Add Pattern request":{"value":"0.1"},"Successful Batch Delete Patterns request":{"value":"0.1"},"Successful Get Application Version Patterns request":{"value":"0.1"},"Successful Batch Add Patterns request":{"value":"0.1"},"Successful Batch Update Patterns request":{"value":"0.1"},"Successful Delete Pattern request":{"value":"0.1"},"Successful Update Pattern request":{"value":"0.1"},"Successful Get Application Version Phraselist Features request":{"value":"0.1"},"Successful Create Phraselist Feature request":{"value":"0.1"},"Successful Delete Phraselist Feature Info request":{"value":"0.1"},"Successful Get Phraselist Feature Info request":{"value":"0.1"},"Successful Update Phraselist Feature Info request":{"value":"0.1"},"Successful Get Application Version Prebuilt Infos request":{"value":"0.1"},"Successful Add Application Version Prebuilt Infos request":{"value":"0.1"},"Successful Get Prebuilt Entity Roles request":{"value":"0.1"},"Successful Create Prebuilt Entity Role request":{"value":"0.1"},"Successful Get Prebuilt Entity Role request":{"value":"0.1"},"Successful Update Prebuilt Entity Extractor Role request":{"value":"0.1"},"Successful Get Prebuilt Info request":{"value":"0.1"},"Successful Get Regex Entity Models request":{"value":"0.1"},"Successful Get Regex Entity Roles request":{"value":"0.1"},"Successful Create Regex Entity Role request":{"value":"0.1"},"Successful Delete Regex Entity Role request":{"value":"0.1"},"Successful Get Regex Entity Role request":{"value":"0.1"},"Successful Update Regex Entity Extractor Role request":{"value":"0.1"},"Successful Delete Regex Entity request":{"value":"0.1"},"Successful Get Regex Entity request":{"value":"0.1"},"Successful Update Regex Entity request":{"value":"0.1"},"Successful Get Application Version settings request":{"value":"0.1"},"Successful Update Application Version settings request":{"value":"0.1"},"Successful Delete Unlabelled Utterance":{"value":"0.1"},"Successful Get Application Version Training Status request":{"value":"0.1"},"Successful Train Application Version request":{"value":"0.1"},"Successful Get published application package request":{"value":"0.1"}}}},"requestBodies":{"EntityRoleCreateObject":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EntityRoleCreateObject"}}},"description":"An entity role object containing the name of role.","required":true},"ModelFeatureInformation":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ModelFeatureInformation"}}},"description":"A feature information object containing the feature relation to delete.","required":true},"AzureAccountInfoObject":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AzureAccountInfoObject"}}},"description":"The Azure account information object."},"LuisApp":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LuisApp"}}},"description":"A LUIS application structure.","required":true},"UserCollaborator":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserCollaborator"}}},"description":"A model containing the user's email address.","required":true},"EntityRoleUpdateObject":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EntityRoleUpdateObject"}}},"description":"The new entity role.","required":true},"ModelFeatureInformation2":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ModelFeatureInformation"}}},"description":"A Feature relation information object.","required":true},"FeaturesPerModelResponseObject":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/FeaturesPerModelResponseObject"}}},"description":"A list of feature information objects containing the new feature relations.","required":true}},"securitySchemes":{"apiKeyHeader":{"in":"header","name":"Ocp-Apim-Subscription-Key","type":"apiKey"}},"schemas":{"AppVersionSettingObject":{"description":"Object model of an application version setting.","properties":{"name":{"description":"The application version setting name.","type":"string"},"value":{"description":"The application version setting value.","type":"string"}},"type":"object"},"ApplicationCreateObject":{"description":"Properties for creating a new LUIS Application","properties":{"culture":{"description":"The culture for the new application. It is the language that your app understands and speaks. E.g.: \"en-us\". Note: the culture cannot be changed after the app is created.","type":"string"},"description":{"description":"Description of the new application. Optional.","type":"string"},"domain":{"description":"The domain for the new application. Optional. E.g.: Comics.","type":"string"},"initialVersionId":{"description":"The initial version ID. Optional. Default value is: \"0.1\"","type":"string"},"name":{"description":"The name for the new application.","type":"string"},"usageScenario":{"description":"Defines the scenario for the new application. Optional. E.g.: IoT.","type":"string"}},"required":["culture","name"],"type":"object"},"ApplicationInfoResponse":{"description":"Response containing the Application Info.","properties":{"activeVersion":{"description":"The version ID currently marked as active.","type":"string"},"createdDateTime":{"description":"The version's creation timestamp.","type":"string"},"culture":{"description":"The culture of the application. For example, \"en-us\".","type":"string"},"description":{"description":"The description of the application.","type":"string"},"domain":{"description":"The domain for the new application. Optional. For example, Comics.","type":"string"},"endpointHitsCount":{"description":"Number of calls made to this endpoint.","type":"integer"},"endpoints":{"description":"The Runtime endpoint URL for this model version.","type":"object"},"id":{"description":"The ID (GUID) of the application.","format":"uuid","type":"string"},"name":{"description":"The name of the application.","type":"string"},"usageScenario":{"description":"Defines the scenario for the new application. Optional. For example, IoT.","type":"string"},"versionsCount":{"description":"Amount of model versions within the application.","type":"integer"}},"type":"object"},"ApplicationPublishObject":{"description":"Object model for publishing a specific application version.","properties":{"isStaging":{"default":false,"description":"Indicates if the staging slot should be used, instead of the Production one.","type":"boolean"},"versionId":{"description":"The version ID to publish.","type":"string"}},"type":"object"},"ApplicationSettingUpdateObject":{"description":"Object model for updating an application's settings.","properties":{"public":{"description":"Setting your application as public allows other people to use your application's endpoint using their own keys.","type":"boolean","x-ms-client-name":"isPublic","nullable":false}},"type":"object"},"ApplicationSettings":{"description":"The application settings.","properties":{"id":{"description":"The application ID.","format":"uuid","type":"string"},"public":{"description":"Setting your application as public allows other people to use your application's endpoint using their own keys for billing purposes.","type":"boolean","x-ms-client-name":"isPublic","nullable":false}},"required":["id","public"],"type":"object"},"ApplicationUpdateObject":{"description":"Object model for updating the name or description of an application.","properties":{"description":{"description":"The application's new description.","type":"string"},"name":{"description":"The application's new name.","type":"string"}},"type":"object"},"ApplicationUsageScenarios":{"description":"A list of possible application usage scenarios.","items":{"type":"string"},"type":"array"},"ApplicationsInfoList":{"description":"List of Application Infos.","items":{"$ref":"#/components/schemas/ApplicationInfoResponse"},"type":"array"},"AvailableCulture":{"description":"Available culture for using in a new application.","properties":{"code":{"description":"The ISO value for the language.","type":"string"},"name":{"description":"The language name.","type":"string"}},"type":"object"},"AvailableCultures":{"description":"A list of available application cultures.","items":{"$ref":"#/components/schemas/AvailableCulture"},"type":"array"},"AvailableDomains":{"description":"A list of available application domains.","items":{"type":"string"},"type":"array"},"AvailableEndpoints":{"additionalProperties":{"type":"string"},"description":"Collection of endpoint URLs where the selected application is deployed to.","type":"object"},"AvailablePrebuiltEntityModel":{"description":"Available Prebuilt entity model for using in an application.","properties":{"description":{"description":"The entity description and usage information.","type":"string"},"examples":{"description":"Usage examples.","type":"string"},"name":{"description":"The entity name.","type":"string"}},"type":"object"},"AvailablePrebuiltEntityModels":{"description":"List of Available Prebuilt entity models.","items":{"$ref":"#/components/schemas/AvailablePrebuiltEntityModel"},"type":"array"},"AzureAccountInfoList":{"description":"List of Azure account info objects.","items":{"$ref":"#/components/schemas/AzureAccountInfoObject"},"type":"array"},"AzureAccountInfoObject":{"description":"Defines the Azure account information object.","properties":{"accountName":{"description":"The Azure account name.","type":"string"},"azureSubscriptionId":{"description":"The id for the Azure subscription.","type":"string"},"resourceGroup":{"description":"The Azure resource group name.","type":"string"}},"required":["azureSubscriptionId","resourceGroup","accountName"],"type":"object"},"BatchLabelExample":{"description":"Response when adding a batch of labeled example utterances.","properties":{"error":{"$ref":"#/components/schemas/OperationStatus"},"hasError":{"type":"boolean"},"value":{"$ref":"#/components/schemas/LabelExampleResponse"}},"type":"object"},"BatchLabelExampleResponse":{"description":"Response when adding a batch of labeled example utterances.","items":{"$ref":"#/components/schemas/BatchLabelExample"},"type":"array"},"ChildEntity":{"description":"The base child entity type.","properties":{"children":{"description":"List of children","items":{"$ref":"#/components/schemas/ChildEntity"},"type":"array"},"id":{"description":"The ID (GUID) belonging to a child entity.","format":"uuid","type":"string"},"instanceOf":{"description":"Instance of Model.","type":"string"},"name":{"description":"The name of a child entity.","type":"string"},"readableType":{"$ref":"#/components/schemas/ReadableType"},"typeId":{"description":"The type ID of the Entity Model.","type":"integer"}},"required":["id"],"type":"object"},"ChildEntityModelCreateObject":{"description":"A child entity extractor create object.","properties":{"children":{"description":"Child entities.","items":{"$ref":"#/components/schemas/ChildEntityModelCreateObject"},"type":"array"},"instanceOf":{"description":"The instance of model name","type":"string"},"name":{"description":"Entity name.","type":"string"}},"type":"object"},"ClosedList":{"description":"Exported Model - A list entity.","properties":{"name":{"description":"Name of the list entity.","type":"string"},"roles":{"items":{"type":"string"},"type":"array"},"subLists":{"description":"Sublists for the list entity.","items":{"$ref":"#/components/schemas/SubClosedList"},"type":"array"}},"type":"object"},"ClosedListEntityExtractor":{"allOf":[{"$ref":"#/components/schemas/ModelInfo"},{"$ref":"#/components/schemas/EntityModelInfo"}],"description":"List Entity Extractor.","properties":{"subLists":{"description":"List of sublists.","items":{"$ref":"#/components/schemas/SubClosedListResponse"},"type":"array"}},"type":"object","x-ms-discriminator-value":"List Entity Extractor"},"ClosedListEntityExtractorsList":{"description":"List of List Entity Extractors.","items":{"$ref":"#/components/schemas/ClosedListEntityExtractor"},"type":"array"},"ClosedListModelCreateObject":{"description":"Object model for creating a list entity.","properties":{"name":{"description":"Name of the list entity.","type":"string"},"subLists":{"description":"Sublists for the feature.","items":{"$ref":"#/components/schemas/WordListObject"},"type":"array"}},"type":"object"},"ClosedListModelPatchObject":{"description":"Object model for adding a batch of sublists to an existing list entity.","properties":{"subLists":{"description":"Sublists to add.","items":{"$ref":"#/components/schemas/WordListObject"},"type":"array"}},"type":"object"},"ClosedListModelUpdateObject":{"description":"Object model for updating a list entity.","properties":{"name":{"description":"The new name of the list entity.","type":"string"},"subLists":{"description":"The new sublists for the feature.","items":{"$ref":"#/components/schemas/WordListObject"},"type":"array"}},"type":"object"},"CollaboratorsArray":{"properties":{"emails":{"description":"The email address of the users.","items":{"type":"string"},"type":"array"}},"type":"object"},"CompositeEntityExtractor":{"allOf":[{"$ref":"#/components/schemas/ModelInfo"},{"$ref":"#/components/schemas/EntityModelInfo"}],"description":"A Composite Entity Extractor.","properties":{"children":{"description":"List of child entities.","items":{"$ref":"#/components/schemas/ChildEntity"},"type":"array"}},"type":"object","x-ms-discriminator-value":"Composite Entity Extractor"},"CompositeEntityExtractorsList":{"description":"List of Composite Entity Extractors.","items":{"$ref":"#/components/schemas/CompositeEntityExtractor"},"type":"array"},"CompositeEntityModel":{"description":"A composite entity extractor.","properties":{"children":{"description":"Child entities.","items":{"type":"string"},"type":"array"},"name":{"description":"Entity name.","type":"string"}},"type":"object"},"CustomPrebuiltModel":{"allOf":[{"$ref":"#/components/schemas/ModelInfo"},{"$ref":"#/components/schemas/IntentClassifier"},{"$ref":"#/components/schemas/EntityExtractor"}],"description":"A Custom Prebuilt model."},"CustomPrebuiltModelList":{"description":"A List of Custom Prebuilt models.","items":{"$ref":"#/components/schemas/CustomPrebuiltModel"},"type":"array"},"EndpointInfo":{"description":"The base class \"ProductionOrStagingEndpointInfo\" inherits from.","properties":{"assignedEndpointKey":{"description":"The endpoint key.","type":"string"},"endpointRegion":{"description":"The endpoint's region.","type":"string"},"endpointUrl":{"description":"The Runtime endpoint URL for this model version.","type":"string"},"failedRegions":{"description":"Regions where publishing failed.","type":"string"},"isStaging":{"description":"Indicates if the staging slot should be used, instead of the Production one.","type":"boolean"},"publishedDateTime":{"description":"Timestamp when was last published.","type":"string"},"region":{"description":"The target region that the application is published to.","type":"string"},"versionId":{"description":"The version ID to publish.","type":"string"}},"type":"object"},"EndpointKeys":{"description":"An a array of GUIDs, comprised of Azure Endpoint Keys and the Authoring API key.","items":{"format":"uuid","type":"string"},"type":"array"},"EnqueueTrainingResponse":{"description":"Response model when requesting to train the model.","properties":{"status":{"$ref":"#/components/schemas/TrainingStatus"},"statusId":{"description":"The train request status ID.","type":"integer"}},"type":"object"},"EntitiesSuggestionExample":{"description":"Predicted/suggested entity.","properties":{"entityPredictions":{"description":"Predicted/suggested entities.","items":{"$ref":"#/components/schemas/EntityPrediction"},"type":"array"},"intentPredictions":{"description":"Predicted/suggested intents.","items":{"$ref":"#/components/schemas/IntentPrediction"},"type":"array"},"text":{"description":"The utterance. For example, \"What's the weather like in seattle?\"","type":"string"},"tokenizedText":{"description":"The utterance tokenized.","items":{"type":"string"},"type":"array"}},"type":"object"},"EntitiesSuggestionExamples":{"description":"List of predicted/suggested entities.","items":{"$ref":"#/components/schemas/EntitiesSuggestionExample"},"type":"array"},"EntityExtractor":{"allOf":[{"$ref":"#/components/schemas/ModelInfo"},{"$ref":"#/components/schemas/EntityModelInfo"}],"description":"Entity Extractor.","properties":{"customPrebuiltDomainName":{"description":"The domain name.","type":"string"},"customPrebuiltModelName":{"description":"The intent name or entity name.","type":"string"}},"type":"object","x-ms-discriminator-value":"Entity Extractor"},"EntityExtractorsList":{"description":"List of Entity Extractors.","items":{"$ref":"#/components/schemas/EntityExtractor"},"type":"array"},"EntityLabel":{"description":"Defines the entity type and position of the extracted entity within the example.","properties":{"endTokenIndex":{"description":"The index within the utterance where the extracted entity ends.","type":"integer"},"entityName":{"description":"The entity type.","type":"string"},"role":{"description":"The role of the predicted entity.","type":"string"},"roleId":{"description":"The role id for the predicted entity.","format":"uuid","type":"string"},"startTokenIndex":{"description":"The index within the utterance where the extracted entity starts.","type":"integer"}},"required":["entityName","startTokenIndex","endTokenIndex"],"type":"object"},"EntityLabelObject":{"description":"Defines the entity type and position of the extracted entity within the example.","properties":{"endCharIndex":{"description":"The index within the utterance where the extracted entity ends.","type":"integer"},"entityName":{"description":"The entity type.","type":"string"},"role":{"description":"The role the entity plays in the utterance.","type":"string"},"startCharIndex":{"description":"The index within the utterance where the extracted entity starts.","type":"integer"}},"required":["entityName","startCharIndex","endCharIndex"],"type":"object"},"EntityModelCreateObject":{"description":"An entity extractor create object.","properties":{"children":{"description":"Child entities.","items":{"$ref":"#/components/schemas/ChildEntityModelCreateObject"},"type":"array"},"name":{"description":"Entity name.","type":"string"}},"type":"object"},"EntityModelInfo":{"allOf":[{"$ref":"#/components/schemas/ModelInfo"}],"description":"An Entity Extractor model info.","properties":{"roles":{"$ref":"#/components/schemas/EntityRoleList"}},"type":"object"},"EntityModelUpdateObject":{"description":"An entity extractor update object.","properties":{"instanceOf":{"description":"The instance of model name","type":"string"},"name":{"description":"Entity name.","type":"string"}},"type":"object"},"EntityPrediction":{"description":"A suggested entity.","properties":{"endTokenIndex":{"description":"The index within the utterance where the extracted entity ends.","type":"integer"},"entityName":{"description":"The entity's name","type":"string"},"phrase":{"description":"The actual token(s) that comprise the entity.","type":"string"},"startTokenIndex":{"description":"The index within the utterance where the extracted entity starts.","type":"integer"}},"required":["entityName","startTokenIndex","endTokenIndex","phrase"],"type":"object"},"EntityRole":{"description":"Entity extractor role","properties":{"id":{"description":"The entity role ID.","format":"uuid","type":"string"},"name":{"description":"The entity role name.","type":"string"}},"type":"object"},"EntityRoleCreateObject":{"description":"Object model for creating an entity role.","properties":{"name":{"description":"The entity role name.","type":"string"}},"type":"object"},"EntityRoleList":{"description":"List of Pattern.Any Entity Extractors.","items":{"$ref":"#/components/schemas/EntityRole"},"type":"array"},"EntityRoleUpdateObject":{"description":"Object model for updating an entity role.","properties":{"name":{"description":"The entity role name.","type":"string"}},"type":"object"},"ErrorResponse":{"additionalProperties":{"type":"object"},"description":"Error response when invoking an operation on the API.","properties":{"errorType":{"type":"string"}},"type":"object"},"ExampleLabelObject":{"description":"A labeled example utterance.","properties":{"entityLabels":{"description":"The identified entities within the example utterance.","items":{"$ref":"#/components/schemas/EntityLabelObject"},"type":"array"},"intentName":{"description":"The identified intent representing the example utterance.","type":"string"},"text":{"description":"The example utterance.","type":"string"}},"type":"object"},"ExampleLabelObjectArray":{"description":"Object model for adding a batch of labeled examples.","items":{"$ref":"#/components/schemas/ExampleLabelObject"},"type":"array"},"ExamplesPerModelResponseObject":{"description":"A list of example utterances per model.","items":{"$ref":"#/components/schemas/LabelTextObject"},"type":"array"},"ExplicitListItem":{"description":"Explicit (exception) list item","properties":{"explicitListItem":{"description":"The explicit list item value.","type":"string"},"id":{"description":"The explicit list item ID.","format":"int64","type":"integer"}},"type":"object"},"ExplicitListItemCreateObject":{"description":"Object model for creating an explicit (exception) list item.","properties":{"explicitListItem":{"description":"The explicit list item.","type":"string"}},"type":"object"},"ExplicitListItemIDResponse":{"description":"The ID of the created explicit list item.","type":"integer","nullable":false},"ExplicitListItemList":{"description":"List of explicit (exception) list items","items":{"$ref":"#/components/schemas/ExplicitListItem"},"type":"array"},"ExplicitListItemUpdateObject":{"description":"Model object for updating an explicit (exception) list item.","properties":{"explicitListItem":{"description":"The explicit list item.","type":"string"}},"type":"object"},"FeatureIDResponse":{"description":"The ID of the created feature.","type":"integer","nullable":false},"FeatureInfoObject":{"description":"The base class Features-related response objects inherit from.","properties":{"enabledForAllModels":{"description":"Indicates if the feature is enabled for all models in the application.","type":"boolean"},"id":{"description":"A six-digit ID used for Features.","type":"integer"},"isActive":{"description":"Indicates if the feature is enabled.","type":"boolean"},"name":{"description":"The name of the Feature.","type":"string"}},"type":"object"},"FeaturesPerModelResponseObject":{"description":"A list of feature information objects per model.","items":{"$ref":"#/components/schemas/ModelFeatureInformation"},"type":"array"},"FeaturesResponseObject":{"description":"Model Features, including Patterns and Phraselists.","properties":{"patternFeatures":{"$ref":"#/components/schemas/PatternFeatureInfoList"},"phraselistFeatures":{"$ref":"#/components/schemas/PhraseListFeatureInfoList"}},"type":"object"},"GuidList":{"description":"List of IDs (GUID)","items":{"$ref":"#/components/schemas/GuidResponse"},"type":"array"},"GuidResponse":{"description":"The ID (GUID) returned by an operation.","format":"uuid","type":"string"},"HierarchicalChildEntity":{"allOf":[{"$ref":"#/components/schemas/ChildEntity"}],"description":"A Hierarchical Child Entity.","properties":{"readableType":{"$ref":"#/components/schemas/ReadableType"},"typeId":{"description":"The type ID of the Entity Model.","type":"integer"}},"type":"object"},"HierarchicalEntityExtractor":{"allOf":[{"$ref":"#/components/schemas/ModelInfo"},{"$ref":"#/components/schemas/EntityModelInfo"}],"description":"Hierarchical Entity Extractor.","properties":{"children":{"description":"List of child entities.","items":{"$ref":"#/components/schemas/ChildEntity"},"type":"array"}},"type":"object","x-ms-discriminator-value":"Hierarchical Entity Extractor"},"HierarchicalEntityExtractorsList":{"description":"List of Hierarchical Entity Extractors.","items":{"$ref":"#/components/schemas/HierarchicalEntityExtractor"},"type":"array"},"HierarchicalModel":{"properties":{"children":{"items":{"$ref":"#/components/schemas/JsonChild"},"type":"array"},"features":{"items":{"$ref":"#/components/schemas/JsonModelFeatureInformation"},"type":"array"},"inherits":{"$ref":"#/components/schemas/PrebuiltDomainObject"},"name":{"type":"string"},"roles":{"items":{"type":"string"},"type":"array"}},"type":"object"},"IntentClassifier":{"allOf":[{"$ref":"#/components/schemas/ModelInfo"}],"description":"Intent Classifier.","properties":{"customPrebuiltDomainName":{"description":"The domain name.","type":"string"},"customPrebuiltModelName":{"description":"The intent name or entity name.","type":"string"}},"type":"object","x-ms-discriminator-value":"Intent Classifier"},"IntentClassifiersList":{"description":"List of Intent Classifiers.","items":{"$ref":"#/components/schemas/IntentClassifier"},"type":"array"},"IntentPrediction":{"description":"A suggested intent.","properties":{"name":{"description":"The intent's name","type":"string"},"score":{"description":"The intent's score, based on the prediction model.","type":"number"}},"type":"object"},"IntentsSuggestionExample":{"description":"Predicted/suggested intent.","properties":{"entityPredictions":{"description":"Predicted/suggested entities.","items":{"$ref":"#/components/schemas/EntityPrediction"},"type":"array"},"intentPredictions":{"description":"Predicted/suggested intents.","items":{"$ref":"#/components/schemas/IntentPrediction"},"type":"array"},"text":{"description":"The utterance. For example, \"What's the weather like in seattle?\"","type":"string"},"tokenizedText":{"description":"The tokenized utterance.","items":{"type":"string"},"type":"array"}},"type":"object"},"IntentsSuggestionExamples":{"description":"List of predicted/suggested intents.","items":{"$ref":"#/components/schemas/IntentsSuggestionExample"},"type":"array"},"JSONEntity":{"description":"Exported Model - Extracted Entity from utterance.","properties":{"endPos":{"description":"The index within the utterance where the extracted entity ends.","type":"integer"},"entity":{"description":"The entity name.","type":"string"},"role":{"description":"The role the entity plays in the utterance.","type":"string"},"startPos":{"description":"The index within the utterance where the extracted entity starts.","type":"integer"}},"required":["startPos","endPos","entity"],"type":"object"},"JSONModelFeature":{"description":"Exported Model - Phraselist Model Feature.","properties":{"activated":{"description":"Indicates if the feature is enabled.","type":"boolean"},"enabledForAllModels":{"default":true,"description":"Indicates if the Phraselist is enabled for all models in the application.","type":"boolean"},"mode":{"description":"An interchangeable phrase list feature serves as a list of synonyms for training. A non-exchangeable phrase list serves as separate features for training. So, if your non-interchangeable phrase list contains 5 phrases, they will be mapped to 5 separate features. You can think of the non-interchangeable phrase list as an additional bag of words to add to LUIS existing vocabulary features. It is used as a lexicon lookup feature where its value is 1 if the lexicon contains a given word or 0 if it doesn’t.  Default value is true.","type":"boolean"},"name":{"description":"The Phraselist name.","type":"string"},"words":{"description":"List of comma-separated phrases that represent the Phraselist.","type":"string"}},"type":"object"},"JSONRegexFeature":{"description":"Exported Model - A Pattern feature.","properties":{"activated":{"description":"Indicates if the Pattern feature is enabled.","type":"boolean"},"name":{"description":"Name of the feature.","type":"string"},"pattern":{"description":"The Regular Expression to match.","type":"string"}},"type":"object"},"JSONUtterance":{"description":"Exported Model - Utterance that was used to train the model.","properties":{"entities":{"description":"The matched entities.","items":{"$ref":"#/components/schemas/JSONEntity"},"type":"array"},"intent":{"description":"The matched intent.","type":"string"},"text":{"description":"The utterance.","type":"string"}},"type":"object"},"JsonChild":{"properties":{"children":{"items":{"$ref":"#/components/schemas/JsonChild"},"type":"array"},"features":{"items":{"$ref":"#/components/schemas/JsonModelFeatureInformation"},"type":"array"},"instanceOf":{"type":"string"},"name":{"type":"string"}},"type":"object"},"JsonModelFeatureInformation":{"description":"An object containing the model feature information either the model name or feature name.","properties":{"featureName":{"description":"The name of the feature used.","type":"string"},"modelName":{"description":"The name of the model used.","type":"string"}},"type":"object"},"LabelExampleResponse":{"description":"Response when adding a labeled example utterance.","properties":{"ExampleId":{"description":"The newly created sample ID.","type":"integer"},"UtteranceText":{"description":"The example utterance.","type":"string"}},"type":"object"},"LabelTextObject":{"description":"An object containing the example utterance's text.","properties":{"id":{"description":"The ID of the Label.","type":"integer"},"text":{"description":"The text of the label.","type":"string"}},"type":"object"},"LabeledUtterance":{"description":"A prediction and label pair of an example.","properties":{"entityLabels":{"description":"The entities matching the example.","items":{"$ref":"#/components/schemas/EntityLabel"},"type":"array"},"entityPredictions":{"description":"List of suggested entities.","items":{"$ref":"#/components/schemas/EntityPrediction"},"type":"array"},"id":{"description":"ID of Labeled Utterance.","type":"integer"},"intentLabel":{"description":"The intent matching the example.","type":"string"},"intentPredictions":{"description":"List of suggested intents.","items":{"$ref":"#/components/schemas/IntentPrediction"},"type":"array"},"text":{"description":"The utterance. For example, \"What's the weather like in seattle?\"","type":"string"},"tokenizedText":{"description":"The utterance tokenized.","items":{"type":"string"},"type":"array"}},"type":"object"},"LabeledUtterances":{"description":"A list of predictions and label pairs for every example in the application.","items":{"$ref":"#/components/schemas/LabeledUtterance"},"type":"array"},"LuisApp":{"additionalProperties":true,"description":"Exported Model - An exported LUIS Application.","properties":{"closedLists":{"description":"List of list entities.","items":{"$ref":"#/components/schemas/ClosedList"},"type":"array"},"composites":{"description":"List of composite entities.","items":{"$ref":"#/components/schemas/HierarchicalModel"},"type":"array"},"culture":{"description":"The culture of the application. E.g.: en-us.","type":"string"},"desc":{"description":"The description of the application.","type":"string"},"entities":{"description":"List of entities.","items":{"$ref":"#/components/schemas/HierarchicalModel"},"type":"array"},"hierarchicals":{"description":"List of hierarchical entities.","items":{"$ref":"#/components/schemas/HierarchicalModel"},"type":"array"},"intents":{"description":"List of intents.","items":{"$ref":"#/components/schemas/HierarchicalModel"},"type":"array"},"name":{"description":"The name of the application.","type":"string"},"patternAnyEntities":{"description":"List of Pattern.Any entities.","items":{"$ref":"#/components/schemas/PatternAny"},"type":"array"},"patterns":{"description":"List of patterns.","items":{"$ref":"#/components/schemas/PatternRule"},"type":"array"},"phraselists":{"description":"List of model features.","items":{"$ref":"#/components/schemas/JSONModelFeature"},"type":"array"},"prebuiltEntities":{"description":"List of prebuilt entities.","items":{"$ref":"#/components/schemas/PrebuiltEntity"},"type":"array"},"regex_entities":{"description":"List of regular expression entities.","items":{"$ref":"#/components/schemas/RegexEntity"},"type":"array"},"regex_features":{"description":"List of pattern features.","items":{"$ref":"#/components/schemas/JSONRegexFeature"},"type":"array"},"utterances":{"description":"List of example utterances.","items":{"$ref":"#/components/schemas/JSONUtterance"},"type":"array"},"versionId":{"description":"The version ID of the application that was exported.","type":"string"}},"type":"object"},"ModelCreateObject":{"description":"Object model for creating a new entity extractor.","properties":{"name":{"description":"Name of the new entity extractor.","type":"string"}},"type":"object"},"ModelFeatureInformation":{"description":"An object containing the model feature information either the model name or feature name.","properties":{"featureName":{"description":"The name of the feature used.","type":"string"},"modelName":{"description":"The name of the model used.","type":"string"}},"type":"object"},"ModelInfo":{"description":"Base type used in entity types.","properties":{"id":{"description":"The ID of the Entity Model.","format":"uuid","type":"string"},"name":{"description":"Name of the Entity Model.","type":"string"},"readableType":{"$ref":"#/components/schemas/ReadableType"},"typeId":{"description":"The type ID of the Entity Model.","type":"integer"}},"required":["id","readableType"],"type":"object"},"ModelInfoResponse":{"allOf":[{"$ref":"#/components/schemas/HierarchicalEntityExtractor"},{"$ref":"#/components/schemas/CompositeEntityExtractor"},{"$ref":"#/components/schemas/ClosedListEntityExtractor"},{"$ref":"#/components/schemas/IntentClassifier"},{"$ref":"#/components/schemas/EntityExtractor"},{"$ref":"#/components/schemas/RegexEntityExtractor"},{"$ref":"#/components/schemas/PatternAnyEntityExtractor"},{"$ref":"#/components/schemas/NDepthEntityExtractor"}],"description":"An application model info.","properties":{"id":{"description":"The ID of the Entity Model.","format":"uuid","type":"string"},"name":{"description":"Name of the Entity Model.","type":"string"},"readableType":{"$ref":"#/components/schemas/ReadableType"},"typeId":{"description":"The type ID of the Entity Model.","type":"integer"}},"required":["id","readableType"],"type":"object"},"ModelTrainingDetails":{"description":"Model Training Details.","properties":{"exampleCount":{"description":"The count of examples used to train the model.","type":"integer"},"failureReason":{"description":"Reason for the training failure.","type":"string"},"status":{"$ref":"#/components/schemas/TrainingStatus"},"statusId":{"description":"The train request status ID.","type":"integer"},"trainingDateTime":{"description":"When the model was trained.","format":"date-time","type":"string"}},"type":"object"},"ModelTrainingInfo":{"description":"Model Training Info.","properties":{"details":{"$ref":"#/components/schemas/ModelTrainingDetails"},"modelId":{"description":"The ID (GUID) of the model.","format":"uuid","type":"string"}},"type":"object"},"ModelTrainingInfoList":{"description":"List of Model Training Infos.","items":{"$ref":"#/components/schemas/ModelTrainingInfo"},"type":"array"},"ModelUpdateObject":{"description":"Object model for updating an intent classifier.","properties":{"name":{"description":"The entity's new name.","type":"string"}},"type":"object"},"ModelsInfoResponseObject":{"description":"A list of application model infos.","items":{"$ref":"#/components/schemas/ModelInfoResponse"},"type":"array"},"NDepthEntityExtractor":{"allOf":[{"$ref":"#/components/schemas/ModelInfo"},{"$ref":"#/components/schemas/EntityModelInfo"}],"description":"N-Depth Entity Extractor.","properties":{"children":{"items":{"$ref":"#/components/schemas/ChildEntity"},"type":"array"},"customPrebuiltDomainName":{"description":"The domain name.","type":"string"},"customPrebuiltModelName":{"description":"The intent name or entity name.","type":"string"}},"type":"object","x-ms-discriminator-value":"N-Depth Entity Extractor"},"NDepthEntityExtractorsList":{"description":"List of N-Depth Entity Extractors.","items":{"$ref":"#/components/schemas/NDepthEntityExtractor"},"type":"array"},"OperationError":{"description":"Operation error details when invoking an operation on the API.","properties":{"code":{"type":"string"},"message":{"type":"string"}},"type":"object"},"OperationStatus":{"description":"Response of an Operation status.","properties":{"code":{"description":"Status Code.","enum":["Failed","FAILED","Success"],"type":"string","x-ms-enum":{"modelAsString":true,"name":"OperationStatusType"}},"message":{"description":"Status details.","type":"string"}},"type":"object"},"PatternAny":{"description":"Pattern.Any Entity Extractor.","properties":{"explicitList":{"items":{"type":"string"},"type":"array"},"name":{"type":"string"},"roles":{"items":{"type":"string"},"type":"array"}},"type":"object"},"PatternAnyEntityExtractor":{"allOf":[{"$ref":"#/components/schemas/ModelInfo"},{"$ref":"#/components/schemas/EntityModelInfo"}],"description":"Pattern.Any Entity Extractor.","properties":{"explicitList":{"$ref":"#/components/schemas/ExplicitListItemList"}},"type":"object","x-ms-discriminator-value":"Pattern.Any Entity Extractor"},"PatternAnyEntityExtractorList":{"description":"List of Pattern.Any Entity Extractors.","items":{"$ref":"#/components/schemas/PatternAnyEntityExtractor"},"type":"array"},"PatternAnyModelCreateObject":{"description":"Model object for creating a Pattern.Any entity model.","properties":{"explicitList":{"description":"The Pattern.Any explicit list.","items":{"type":"string"},"type":"array"},"name":{"description":"The model name.","type":"string"}},"type":"object"},"PatternAnyModelUpdateObject":{"description":"Model object for updating a Pattern.Any entity model.","properties":{"explicitList":{"description":"The Pattern.Any explicit list.","items":{"type":"string"},"type":"array"},"name":{"description":"The model name.","type":"string"}},"type":"object"},"PatternFeatureInfo":{"allOf":[{"$ref":"#/components/schemas/FeatureInfoObject"}],"description":"Pattern feature.","properties":{"pattern":{"description":"The Regular Expression to match.","type":"string"}},"type":"object"},"PatternFeatureInfoList":{"description":"List of Pattern features.","items":{"$ref":"#/components/schemas/PatternFeatureInfo"},"type":"array"},"PatternRule":{"description":"Pattern","properties":{"intent":{"description":"The intent's name where the pattern belongs to.","type":"string"},"pattern":{"description":"The pattern text.","type":"string"}},"type":"object"},"PatternRuleCreateObject":{"description":"Object model for creating a pattern","properties":{"intent":{"description":"The intent's name which the pattern belongs to.","type":"string"},"pattern":{"description":"The pattern text.","type":"string"}},"type":"object"},"PatternRuleInfo":{"description":"Pattern rule","properties":{"id":{"description":"The pattern ID.","format":"uuid","type":"string"},"intent":{"description":"The intent's name where the pattern belongs to.","type":"string"},"pattern":{"description":"The pattern text.","type":"string"}},"type":"object"},"PatternRuleList":{"description":"List of patterns","items":{"$ref":"#/components/schemas/PatternRuleInfo"},"type":"array"},"PatternRuleUpdateObject":{"description":"Object model for updating a pattern.","properties":{"id":{"description":"The pattern ID.","format":"uuid","type":"string"},"intent":{"description":"The intent's name which the pattern belongs to.","type":"string"},"pattern":{"description":"The pattern text.","type":"string"}},"type":"object"},"PersonalAssistantUrls":{"additionalProperties":{"type":"string"},"description":"Endpoint URLs for prebuilt Cortana applications.","type":"object"},"PersonalAssistantsResponse":{"description":"Response containing user's endpoint keys and the endpoint URLs of the prebuilt Cortana applications.","properties":{"endpointKeys":{"$ref":"#/components/schemas/EndpointKeys"},"endpointUrls":{"$ref":"#/components/schemas/PersonalAssistantUrls"}},"type":"object"},"PhraseListFeatureInfo":{"allOf":[{"$ref":"#/components/schemas/FeatureInfoObject"}],"description":"Phraselist Feature.","properties":{"isExchangeable":{"description":"An exchangeable phrase list feature are serves as single feature to the LUIS underlying training algorithm. It is used as a lexicon lookup feature where its value is 1 if the lexicon contains a given word or 0 if it doesn’t. Think of an exchangeable as a synonyms list. A non-exchangeable phrase list feature has all the phrases in the list serve as separate features to the underlying training algorithm. So, if you your phrase list feature contains 5 phrases, they will be mapped to 5 separate features. You can think of the non-exchangeable phrase list feature as an additional bag of words that you are willing to add to LUIS existing vocabulary features. Think of a non-exchangeable as set of different words. Default value is true.","type":"boolean"},"phrases":{"description":"A list of comma-separated values.","type":"string"}},"type":"object"},"PhraseListFeatureInfoList":{"description":"List of Phraselist Features.","items":{"$ref":"#/components/schemas/PhraseListFeatureInfo"},"type":"array"},"PhraselistCreateObject":{"description":"Object model for creating a phraselist model.","properties":{"enabledForAllModels":{"default":true,"description":"Indicates if the Phraselist is enabled for all models in the application.","type":"boolean"},"isExchangeable":{"default":true,"description":"An interchangeable phrase list feature serves as a list of synonyms for training. A non-exchangeable phrase list serves as separate features for training. So, if your non-interchangeable phrase list contains 5 phrases, they will be mapped to 5 separate features. You can think of the non-interchangeable phrase list as an additional bag of words to add to LUIS existing vocabulary features. It is used as a lexicon lookup feature where its value is 1 if the lexicon contains a given word or 0 if it doesn’t.  Default value is true.","type":"boolean"},"name":{"description":"The Phraselist name.","type":"string"},"phrases":{"description":"List of comma-separated phrases that represent the Phraselist.","type":"string"}},"type":"object"},"PhraselistUpdateObject":{"description":"Object model for updating a Phraselist.","properties":{"enabledForAllModels":{"default":true,"description":"Indicates if the Phraselist is enabled for all models in the application.","type":"boolean"},"isActive":{"default":true,"description":"Indicates if the Phraselist is enabled.","type":"boolean"},"isExchangeable":{"default":true,"description":"An exchangeable phrase list feature are serves as single feature to the LUIS underlying training algorithm. It is used as a lexicon lookup feature where its value is 1 if the lexicon contains a given word or 0 if it doesn’t. Think of an exchangeable as a synonyms list. A non-exchangeable phrase list feature has all the phrases in the list serve as separate features to the underlying training algorithm. So, if you your phrase list feature contains 5 phrases, they will be mapped to 5 separate features. You can think of the non-exchangeable phrase list feature as an additional bag of words that you are willing to add to LUIS existing vocabulary features. Think of a non-exchangeable as set of different words. Default value is true.","type":"boolean"},"name":{"description":"The Phraselist name.","type":"string"},"phrases":{"description":"List of comma-separated phrases that represent the Phraselist.","type":"string"}},"type":"object"},"PrebuiltDomain":{"description":"Prebuilt Domain.","properties":{"culture":{"type":"string"},"description":{"type":"string"},"entities":{"items":{"$ref":"#/components/schemas/PrebuiltDomainItem"},"type":"array"},"examples":{"type":"string"},"intents":{"items":{"$ref":"#/components/schemas/PrebuiltDomainItem"},"type":"array"},"name":{"type":"string"}},"type":"object"},"PrebuiltDomainCreateBaseObject":{"description":"A model object containing the name of the custom prebuilt entity and the name of the domain to which this model belongs.","properties":{"domainName":{"description":"The domain name.","type":"string"}},"type":"object"},"PrebuiltDomainCreateObject":{"description":"A prebuilt domain create object containing the name and culture of the domain.","properties":{"culture":{"description":"The culture of the new domain.","type":"string"},"domainName":{"description":"The domain name.","type":"string"}},"type":"object"},"PrebuiltDomainItem":{"properties":{"description":{"type":"string"},"examples":{"type":"string"},"name":{"type":"string"}},"type":"object"},"PrebuiltDomainModelCreateObject":{"description":"A model object containing the name of the custom prebuilt intent or entity and the name of the domain to which this model belongs.","properties":{"domainName":{"description":"The domain name.","type":"string"},"modelName":{"description":"The intent name or entity name.","type":"string"}},"type":"object"},"PrebuiltDomainObject":{"properties":{"domain_name":{"type":"string"},"model_name":{"type":"string"}},"type":"object"},"PrebuiltDomainsList":{"description":"List of Prebuilt Domains.","items":{"$ref":"#/components/schemas/PrebuiltDomain"},"type":"array"},"PrebuiltEntity":{"description":"Prebuilt Entity Extractor.","properties":{"name":{"type":"string"},"roles":{"items":{"type":"string"},"type":"array"}},"type":"object"},"PrebuiltEntityExtractor":{"allOf":[{"$ref":"#/components/schemas/ModelInfo"},{"$ref":"#/components/schemas/EntityModelInfo"}],"description":"Prebuilt Entity Extractor.","type":"object","x-ms-discriminator-value":"Prebuilt Entity Extractor"},"PrebuiltEntityExtractorsList":{"description":"List of Prebuilt Entity Extractors.","items":{"$ref":"#/components/schemas/PrebuiltEntityExtractor"},"type":"array"},"PrebuiltExtractorNames":{"description":"Object model for adding a prebuilt entity to the application.","items":{"type":"string"},"type":"array"},"ProductionOrStagingEndpointInfo":{"allOf":[{"$ref":"#/components/schemas/EndpointInfo"}],"type":"object"},"PublishSettingUpdateObject":{"description":"Object model for updating an application's publish settings.","properties":{"sentimentAnalysis":{"description":"Setting sentiment analysis as true returns the Sentiment of the input utterance along with the response","type":"boolean","nullable":false},"speech":{"description":"Setting speech as public enables speech priming in your app","type":"boolean","nullable":false},"spellChecker":{"description":"Setting spell checker as public enables spell checking the input utterance.","type":"boolean","nullable":false}},"type":"object"},"PublishSettings":{"description":"The application publish settings.","properties":{"id":{"description":"The application ID.","format":"uuid","type":"string"},"sentimentAnalysis":{"description":"Setting sentiment analysis as true returns the sentiment of the input utterance along with the response","type":"boolean","x-ms-client-name":"IsSentimentAnalysisEnabled","nullable":false},"speech":{"description":"Enables speech priming in your app","type":"boolean","x-ms-client-name":"IsSpeechEnabled","nullable":false},"spellChecker":{"description":"Enables spell checking of the utterance.","type":"boolean","x-ms-client-name":"IsSpellCheckerEnabled","nullable":false}},"required":["id","sentimentAnalysis","speech","spellChecker"],"type":"object"},"ReadableType":{"description":"Full name of the entity type.","enum":["Entity Extractor","Child Entity Extractor","Hierarchical Entity Extractor","Hierarchical Child Entity Extractor","Composite Entity Extractor","List Entity Extractor","Prebuilt Entity Extractor","Intent Classifier","Pattern.Any Entity Extractor","Closed List Entity Extractor","Regex Entity Extractor"],"type":"string"},"RegexEntity":{"description":"Regular Expression Entity Extractor.","properties":{"name":{"type":"string"},"regexPattern":{"type":"string"},"roles":{"items":{"type":"string"},"type":"array"}},"type":"object"},"RegexEntityExtractor":{"allOf":[{"$ref":"#/components/schemas/ModelInfo"},{"$ref":"#/components/schemas/EntityModelInfo"}],"description":"Regular Expression Entity Extractor.","properties":{"regexPattern":{"description":"The Regular Expression entity pattern.","type":"string"}},"type":"object","x-ms-discriminator-value":"Regex Entity Extractor"},"RegexEntityExtractorList":{"description":"List of Regular Expression Entity Extractors.","items":{"$ref":"#/components/schemas/RegexEntityExtractor"},"type":"array"},"RegexModelCreateObject":{"description":"Model object for creating a regular expression entity model.","properties":{"name":{"description":"The model name.","type":"string"},"regexPattern":{"description":"The regular expression entity pattern.","type":"string"}},"type":"object"},"RegexModelUpdateObject":{"description":"Model object for updating a regular expression entity model.","properties":{"name":{"description":"The model name.","type":"string"},"regexPattern":{"description":"The regular expression entity pattern.","type":"string"}},"type":"object"},"SubClosedList":{"description":"Sublist of items for a list entity.","properties":{"canonicalForm":{"description":"The standard form that the list represents.","type":"string"},"list":{"description":"List of synonym words.","items":{"type":"string"},"type":"array"}},"type":"object"},"SubClosedListResponse":{"allOf":[{"$ref":"#/components/schemas/SubClosedList"}],"description":"Sublist of items for a list entity.","properties":{"id":{"description":"The sublist ID","type":"integer","nullable":false}},"type":"object"},"TaskUpdateObject":{"description":"Object model for cloning an application's version.","properties":{"version":{"description":"The new version for the cloned model.","type":"string"}},"type":"object"},"TrainingStatus":{"description":"The Training status.","enum":["Queued","InProgress","UpToDate","Fail","Success"],"type":"string"},"UserAccessList":{"description":"List of user permissions.","properties":{"emails":{"items":{"type":"string"},"type":"array"},"owner":{"description":"The email address of owner of the application.","type":"string"}},"type":"object"},"UserCollaborator":{"properties":{"email":{"description":"The email address of the user.","type":"string"}},"type":"object"},"VersionInfo":{"description":"Object model of an application version.","properties":{"assignedEndpointKey":{"additionalProperties":{"type":"string"},"description":"The endpoint key.","type":"object"},"createdDateTime":{"description":"The version's creation timestamp.","format":"date-time","type":"string"},"endpointHitsCount":{"description":"Number of calls made to this endpoint.","type":"integer"},"endpointUrl":{"description":"The Runtime endpoint URL for this model version.","type":"string"},"entitiesCount":{"description":"Number of entities in this model.","type":"integer"},"externalApiKeys":{"description":"External keys.","type":"object"},"intentsCount":{"description":"Number of intents in this model.","type":"integer"},"lastModifiedDateTime":{"description":"Timestamp of the last update.","format":"date-time","type":"string"},"lastPublishedDateTime":{"description":"Timestamp when was last published.","format":"date-time","type":"string"},"lastTrainedDateTime":{"description":"Timestamp of the last time the model was trained.","format":"date-time","type":"string"},"trainingStatus":{"description":"The current training status.","enum":["NeedsTraining","InProgress","Trained"],"type":"string","x-ms-enum":{"name":"TrainingStatus"}},"version":{"description":"The version ID. E.g.: \"0.1\"","type":"string"}},"required":["version","trainingStatus"],"type":"object"},"VersionResponse":{"description":"The new version ID returned by when importing a model version.","type":"string"},"WordListBaseUpdateObject":{"description":"Object model for updating one of the list entity's sublists.","properties":{"canonicalForm":{"description":"The standard form that the list represents.","type":"string"},"list":{"description":"List of synonym words.","items":{"type":"string"},"type":"array"}},"type":"object"},"WordListObject":{"description":"Sublist of items for a list entity.","properties":{"canonicalForm":{"description":"The standard form that the list represents.","type":"string"},"list":{"description":"List of synonym words.","items":{"type":"string"},"type":"array"}},"type":"object"}}}}