Question 53:
You have a set of documents. You want to enrich the information in these documents before using this information in your searchable index. You use enrichment pipelines in Azure for this purpose. You review the built-in skills in Azure, like sentiment analysis and key-phrase extraction. However, you realize that your specific needs cannot be addressed using the built-in skills in Azure. Hence, you decide to call your own code through a web API, as part of the enrichment process in Azure cognitive search. Review the JSON code given below and complete it by choosing the parameters and values from the answer choices given below. [select three choices] <pre>{ "@odata.type": "............................................................", "description": "Call a custom code to identify all image files in the data source", "uri": "https://indexer-e2e-webskill.azurewebsites.net/api/InvokeTextAnalyticsV3?code=tstskill", "httpHeaders": { "Ocp-Apim-Subscription-Key": "key1" }, "context": "/document/store/*", "............................................................": [ { "name": "query", "source": "/document/store/*" } ], "............................................................": [ { "name": "filetype", "targetName": "filextension" } ] } </pre>
Answer options:
A.#Microsoft.Skills.Custom.WebApiSkill B.inputs C.#Microsoft.Skills.Text.EntityRecognitionSkill D.datastore E.outputs