{ "$schema": "http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "nameTraining": { "type": "string", "defaultValue": "myCustomVisionService" }, "location": { "type": "string", "defaultValue": "southcentralus", "allowedValues": [ "southcentralus" ] }, "skuTraining": { "type": "string", "defaultValue": "F0", "allowedValues": [ "F0", "S0" ], "metadata": { "description": "Describes the pricing tier for Training" } }, "skuPrediction": { "type": "string", "defaultValue": "F0", "allowedValues": [ "F0", "S0" ], "metadata": { "description": "Describes the pricing tier for Prediction" } } } ... }