Refer to the exhibit. You have this skillset definition for an Azure AI Search enrichment pipeline. You notice that the entity recognition skill is not executing on any document. What is the most likely cause?
The absolute path '/document/pages/*' conflicts with the context; relative path should be used.
Why this answer
The entity recognition skill has its context set to '/document/pages/*', which means it iterates over each page in the split output. However, its input source is '/document/pages/*' (absolute path), which points to the entire page array element rather than the text content within each page. The input source should be relative to the context, e.g., 'text' if the page had a property, or simply the context itself if the page is a string.
Using an absolute path that matches the context can cause the skill to fail because it expects a scalar input, but the context iteration provides the array element. Therefore, the correct fix is to make the input source relative, such as using 'text' or '/document/pages/*/text' appropriately. Option D correctly identifies this issue.
Exam trap
In Azure AI Search skillsets, input source paths must be relative to the skill's context when the context iterates over an array, unless the absolute path points to a property of the array element. Using an absolute path that equals the context path can cause the skill to not execute.