diff --git a/arm-web/2015-08-01/swagger/service.json b/arm-web/2015-08-01/swagger/service.json index de91df5b2080..531e2ffba483 100644 --- a/arm-web/2015-08-01/swagger/service.json +++ b/arm-web/2015-08-01/swagger/service.json @@ -17652,9 +17652,9 @@ }, "properties": { "description": "Properties", - "type": "object", - "additionalProperties": { - "type": "string" + "type": "array", + "items": { + "$ref": "#/definitions/KeyValuePair[String,String]" } } } @@ -17705,13 +17705,19 @@ "format": "float", "description": "Value count", "type": "number" + } + } + }, + "KeyValuePair[String,String]": { + "type": "object", + "properties": { + "key": { + "type": "string", + "readOnly": true }, - "properties": { - "description": "Value properties", - "type": "object", - "additionalProperties": { - "type": "string" - } + "value": { + "type": "string", + "readOnly": true } } },