Skip to content

Commit 45cfe4c

Browse files
committed
Fixed HopLink properties: context should be a dictionary, uint32 fromat instead of int32
1 parent 189fe8e commit 45cfe4c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

specification/network/resource-manager/Microsoft.Network/stable/2020-05-01/networkWatcher.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3397,10 +3397,10 @@
33973397
},
33983398
"context": {
33993399
"readOnly": true,
3400-
"type": "array",
3401-
"description": "Provides additional context on the issue.",
3402-
"items": {
3403-
"$ref": "#/definitions/IssueContext"
3400+
"type": "object",
3401+
"description": "Provides additional context on links.",
3402+
"additionalProperties": {
3403+
"type": "string"
34043404
}
34053405
},
34063406
"resourceId": {
@@ -3416,19 +3416,19 @@
34163416
"roundTripTimeMin": {
34173417
"description": "Minimum roundtrip time in milliseconds.",
34183418
"readOnly": true,
3419-
"format": "int32",
3419+
"format": "uint32",
34203420
"type": "integer"
34213421
},
34223422
"roundTripTimeAvg": {
34233423
"description": "Average roundtrip time in milliseconds.",
34243424
"readOnly": true,
3425-
"format": "int32",
3425+
"format": "uint32",
34263426
"type": "integer"
34273427
},
34283428
"roundTripTimeMax": {
34293429
"description": "Maximum roundtrip time in milliseconds.",
34303430
"readOnly": true,
3431-
"format": "int32",
3431+
"format": "uint32",
34323432
"type": "integer"
34333433
}
34343434
}

0 commit comments

Comments
 (0)