Identify the missing word(s) in the following sentence within the context of Microsoft Azure. As a lead developer at Stark Industries, you're responsible for building and maintaining a line-of-business app that lets your frontline distributors scan and upload images of the store shelves they are restocking. You want to validate that any images posted by users respect the content rules set by your company. The company doesn't want inappropriate content posted to company sites. You need to decide whether to build or buy a solution. Building a sophisticated image processing and analysis engine is costly. One alternative is to use the Computer Vision API from Microsoft. Frontline distributors of your products scan and upload images of store shelves they're restocking. As a lead developer at your company, you are responsible for creating thumbnails of the images. The thumbnails are used in the online reports you create for the sales team. Recently, the sales manager said that the images in the report are blurry and often don't have the product front and centre, making it difficult to scan the large report. It's up to you to improve the situation. You decide to try the thumbnail generation feature of the Computer Vision API. Perhaps it can do a better job than the resizing function you wrote. The following code is prepared to be entered into Azure CLI: Azure CLI curl "https://.api.cognitive.microsoft.com/vision/v2.0/[?]" - H "Ocp-Apim-Subscription-Key: $key" - H "Content-Type: application/json" - d "{'url' : 'https://raw.githubusercontent.com/MicrosoftDocs/mslearn-process-images-with-the-computer-vision-service/master/images/ebook.png'}" | jq '.' Which should be replace [ ? ] in the first line of code?