diff --git a/.ci/validate-examples-regression.yml b/.ci/validate-examples-regression.yml index 7e8329c7..f2e6a271 100644 --- a/.ci/validate-examples-regression.yml +++ b/.ci/validate-examples-regression.yml @@ -3,6 +3,7 @@ pool: trigger: - master + - develop pr: branches: diff --git a/ChangeLog.md b/ChangeLog.md index f54c0c4e..e60fa23e 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,10 @@ # Change Log - oav +## 02/08/2021 2.2.7 + +- Add new rules of 'LRO_RESPONSE_HEADER' and 'LRO_RESPONSE_CODE'. +- Add option of 'isArmCall' to differentiate rulesets for Arm and RpaaS in validation apis. + ## 03/12/2021 2.2.6 - Fixed the mock value of 'location' header and 'azure_AsyncOperation' header. diff --git a/lib/liveValidation/liveValidator.ts b/lib/liveValidation/liveValidator.ts index 85a8a3b4..6ddb1236 100644 --- a/lib/liveValidation/liveValidator.ts +++ b/lib/liveValidation/liveValidator.ts @@ -85,6 +85,7 @@ interface Meta { export interface ValidateOptions { readonly includeErrors?: ExtendedErrorCode[]; readonly includeOperationMatch?: boolean; + isArmCall?: boolean; } export enum LiveValidatorLoggingLevels { @@ -383,7 +384,8 @@ export class LiveValidator { liveResponse, info, this.loader, - options.includeErrors + options.includeErrors, + options.isArmCall ); } catch (resValidationError) { const msg = diff --git a/lib/liveValidation/operationValidator.ts b/lib/liveValidation/operationValidator.ts index 08ddf06d..c1d06ac8 100644 --- a/lib/liveValidation/operationValidator.ts +++ b/lib/liveValidation/operationValidator.ts @@ -98,7 +98,8 @@ export const validateSwaggerLiveResponse = async ( response: LiveResponse, info: OperationContext, loader?: LiveValidatorLoader, - includeErrors?: ExtendedErrorCode[] + includeErrors?: ExtendedErrorCode[], + isArmCall?: boolean ) => { const { operation } = info.operationMatch!; const { statusCode, body } = response; @@ -126,6 +127,9 @@ export const validateSwaggerLiveResponse = async ( const headers = transformLiveHeader(response.headers ?? {}, rsp); if (rsp.schema !== undefined) { validateContentType(operation.produces!, headers, false, result); + if (isArmCall && realCode >= 200 && realCode < 300) { + validateLroOperation(operation, statusCode, headers, result); + } } const ctx = { @@ -256,6 +260,58 @@ const schemaValidateIssueToLiveValidationIssue = ( } }; +const validateLroOperation = ( + operation: Operation, + statusCode: string, + headers: StringMap, + result: LiveValidationIssue[] +) => { + if (operation["x-ms-long-running-operation"] === true) { + if (operation._method === "patch" || operation._method === "post") { + if (statusCode !== "202" && statusCode !== "201") { + result.push(issueFromErrorCode("LRO_RESPONSE_CODE", { statusCode }, operation.responses)); + } else { + validateLroHeader(operation, headers, result); + } + } else if (operation._method === "delete") { + if (statusCode !== "202" && statusCode !== "204") { + result.push(issueFromErrorCode("LRO_RESPONSE_CODE", { statusCode }, operation.responses)); + } + if (statusCode === "202") { + validateLroHeader(operation, headers, result); + } + } else if (operation._method === "put") { + if (statusCode === "202" || statusCode === "201") { + validateLroHeader(operation, headers, result); + } else if (statusCode !== "200") { + result.push(issueFromErrorCode("LRO_RESPONSE_CODE", { statusCode }, operation.responses)); + } + } + } +}; + +const validateLroHeader = ( + operation: Operation, + headers: StringMap, + result: LiveValidationIssue[] +) => { + if ( + (headers.location === undefined || headers.location === "") && + (headers["azure-AsyncOperation"] === undefined || headers["azure-AsyncOperation"] === "") && + (headers["azure-asyncoperation"] === undefined || headers["azure-asyncoperation"] === "") + ) { + result.push( + issueFromErrorCode( + "LRO_RESPONSE_HEADER", + { + header: "location or azure-AsyncOperation", + }, + operation.responses + ) + ); + } +}; + export const issueFromErrorCode = ( code: ExtendedErrorCode, param: any, diff --git a/lib/swagger/swaggerTypes.ts b/lib/swagger/swaggerTypes.ts index 121d55c9..3d37becd 100644 --- a/lib/swagger/swaggerTypes.ts +++ b/lib/swagger/swaggerTypes.ts @@ -14,6 +14,8 @@ import { xmsSkipUrlEncoding, xNullable, xmsAzureResource, + xmsLongRunningOperationOptions, + xmsLongRunningOperationOptionsField, } from "../util/constants"; import { $id } from "./jsonLoader"; @@ -143,6 +145,7 @@ export interface Operation { security?: Security[]; tags?: string[]; [xmsLongRunningOperation]?: boolean; + [xmsLongRunningOperationOptions]?: { [xmsLongRunningOperationOptionsField]: string }; [xmsExamples]?: { [description: string]: SwaggerExample }; // TODO check why do we need provider diff --git a/lib/swaggerValidator/schemaValidator.ts b/lib/swaggerValidator/schemaValidator.ts index 4439bbc3..cdec09ee 100644 --- a/lib/swaggerValidator/schemaValidator.ts +++ b/lib/swaggerValidator/schemaValidator.ts @@ -52,6 +52,8 @@ export const validateErrorMessages: { [key in ExtendedErrorCode]?: (params: any) INVALID_RESPONSE_BODY: strTemplate`Body is required in response but not provided`, INVALID_RESPONSE_HEADER: strTemplate`Header ${"missingProperty"} is required in response but not provided`, MISSING_RESOURCE_ID: strTemplate`id is required to return in response of GET/PUT resource calls but not provided`, + LRO_RESPONSE_CODE: strTemplate`Patch/Post long running operation must return 201 or 202, Delete long running operation must return 202 or 204, Put long running operation must return 202 or 201 or 200, but ${"statusCode"} returned`, + LRO_RESPONSE_HEADER: strTemplate`Long running operation should return ${"header"} in header but not provided`, DISCRIMINATOR_VALUE_NOT_FOUND: strTemplate`Discriminator value "${"data"}" not found`, ANY_OF_MISSING: strTemplate`Data does not match any schemas from 'anyOf'`, diff --git a/lib/util/constants.ts b/lib/util/constants.ts index d72729f0..2755203f 100644 --- a/lib/util/constants.ts +++ b/lib/util/constants.ts @@ -13,6 +13,10 @@ export const xmsSkipUrlEncoding = "x-ms-skip-url-encoding"; export const xmsLongRunningOperation = "x-ms-long-running-operation"; +export const xmsLongRunningOperationOptions = "x-ms-long-running-operation-options"; + +export const xmsLongRunningOperationOptionsField = "final-state-via"; + export const xmsDiscriminatorValue = "x-ms-discriminator-value"; export const xmsEnum = "x-ms-enum"; diff --git a/lib/util/validationError.ts b/lib/util/validationError.ts index 945ccd48..e90b5ba8 100644 --- a/lib/util/validationError.ts +++ b/lib/util/validationError.ts @@ -82,6 +82,8 @@ const errorConstants = { INVALID_RESPONSE_HEADER: { severity: Severity.Error, docUrl: "" }, INVALID_RESPONSE_BODY: { severity: Severity.Critical, docUrl: "" }, MISSING_RESOURCE_ID: { severity: Severity.Critical, docUrl: "" }, + LRO_RESPONSE_CODE: { severity: Severity.Critical, docUrl: "" }, + LRO_RESPONSE_HEADER: { severity: Severity.Critical, docUrl: "" }, }; const wrapperErrorConstants = { diff --git a/package-lock.json b/package-lock.json index 8ea391c5..1ba05edf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "oav", - "version": "2.2.6", + "version": "2.2.7", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 0e30eb4d..6ea238d8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "oav", - "version": "2.2.6", + "version": "2.2.7", "author": { "name": "Microsoft Corporation", "email": "azsdkteam@microsoft.com", diff --git a/regression/__snapshots__/validateExamplesRegression_nonLatest.test.ts.snap b/regression/__snapshots__/validateExamplesRegression_nonLatest.test.ts.snap index bee80316..9385fad1 100644 --- a/regression/__snapshots__/validateExamplesRegression_nonLatest.test.ts.snap +++ b/regression/__snapshots__/validateExamplesRegression_nonLatest.test.ts.snap @@ -105,13 +105,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Advisor/suppressions\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Advisor/suppressions", ], - "path": "type", + "path": "$/type", "position": Object { "column": 13, "line": 491, @@ -131,13 +131,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the resource.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"suppressionName1\\"\`, cannot be sent in the request.", "params": Array [ "name", "suppressionName1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 13, "line": 486, @@ -157,13 +157,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The resource ID.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/resourceUri/providers/Microsoft.Advisor/recommendations/recommendationId/suppressions/suppressionName1\\"\`, cannot be sent in the request.", "params": Array [ "id", "/resourceUri/providers/Microsoft.Advisor/recommendations/recommendationId/suppressions/suppressionName1", ], - "path": "id", + "path": "$/id", "position": Object { "column": 11, "line": 481, @@ -190,13 +190,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Advisor/suppressions\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Advisor/suppressions", ], - "path": "type", + "path": "$/type", "position": Object { "column": 13, "line": 527, @@ -216,13 +216,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the resource.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"suppressionName1\\"\`, cannot be sent in the request.", "params": Array [ "name", "suppressionName1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 13, "line": 522, @@ -242,13 +242,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The resource ID.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/resourceUri/providers/Microsoft.Advisor/recommendations/recommendationId/suppressions/suppressionName1\\"\`, cannot be sent in the request.", "params": Array [ "id", "/resourceUri/providers/Microsoft.Advisor/recommendations/recommendationId/suppressions/suppressionName1", ], - "path": "id", + "path": "$/id", "position": Object { "column": 11, "line": 517, @@ -291,13 +291,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The current deployment state of Analysis Services resource. The provisioningState is to indicate states for resource provisioning.", "directives": Object {}, - "jsonPath": "$.properties.provisioningState", + "jsonPath": "$['properties']['provisioningState']", "message": "ReadOnly property \`\\"provisioningState\\": \\"Preparing\\"\`, cannot be sent in the request.", "params": Array [ "provisioningState", "Preparing", ], - "path": "properties/provisioningState", + "path": "$/properties/provisioningState", "position": Object { "column": 30, "line": 906, @@ -317,13 +317,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The full name of the Analysis Services resource.", "directives": Object {}, - "jsonPath": "$.properties.serverFullName", + "jsonPath": "$['properties']['serverFullName']", "message": "ReadOnly property \`\\"serverFullName\\": \\"asazure://nightly1.asazure-int.windows.net/azsdktest\\"\`, cannot be sent in the request.", "params": Array [ "serverFullName", "asazure://nightly1.asazure-int.windows.net/azsdktest", ], - "path": "properties/serverFullName", + "path": "$/properties/serverFullName", "position": Object { "column": 27, "line": 929, @@ -343,13 +343,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The current state of Analysis Services resource. The state is to indicate more states outside of resource provisioning.", "directives": Object {}, - "jsonPath": "$.properties.state", + "jsonPath": "$['properties']['state']", "message": "ReadOnly property \`\\"state\\": \\"Preparing\\"\`, cannot be sent in the request.", "params": Array [ "state", "Preparing", ], - "path": "properties/state", + "path": "$/properties/state", "position": Object { "column": 18, "line": 883, @@ -513,13 +513,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.isCurrent", + "jsonPath": "$['properties']['isCurrent']", "message": "ReadOnly property \`\\"isCurrent\\": false\`, cannot be sent in the request.", "params": Array [ "isCurrent", false, ], - "path": "properties/isCurrent", + "path": "$/properties/isCurrent", "position": Object { "column": 22, "line": 322, @@ -541,13 +541,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"newoperation\\"\`, cannot be sent in the request.", "params": Array [ "name", "newoperation", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 133, @@ -569,7 +569,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.count", + "jsonPath": "$['count']", "jsonPosition": Object { "column": 15, "line": 11, @@ -579,7 +579,7 @@ Array [ "params": Array [ "count", ], - "path": "count", + "path": "$/count", "position": Object { "column": 30, "line": 4557, @@ -608,7 +608,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.count", + "jsonPath": "$['count']", "jsonPosition": Object { "column": 15, "line": 10, @@ -618,7 +618,7 @@ Array [ "params": Array [ "count", ], - "path": "count", + "path": "$/count", "position": Object { "column": 30, "line": 4557, @@ -790,7 +790,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.count", + "jsonPath": "$['count']", "jsonPosition": Object { "column": 15, "line": 10, @@ -800,7 +800,7 @@ Array [ "params": Array [ "count", ], - "path": "count", + "path": "$/count", "position": Object { "column": 30, "line": 4557, @@ -887,7 +887,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.count", + "jsonPath": "$['count']", "jsonPosition": Object { "column": 15, "line": 10, @@ -897,7 +897,7 @@ Array [ "params": Array [ "count", ], - "path": "count", + "path": "$/count", "position": Object { "column": 30, "line": 4557, @@ -935,7 +935,32 @@ exports[`validateExamples should not regress for file '/home/vsts/work/1/s/regre exports[`validateExamples should not regress for file '/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-07-07/apimanagement.json': returned results 1`] = ` Array [ Object { - "inner": [TypeError: Cannot read property 'generate' of null], + "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", + "details": Object { + "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", + "description": "Uniquely identifies the authorization server within the current API Management service instance. The value is a valid relative URL in the format of /authorizationServers/{authsid} where {authsid} is an authorization server identifier.", + "directives": Object { + "R3016": ".*", + }, + "jsonPath": "$['id']", + "message": "ReadOnly property \`\\"id\\": \\"/authorizationServers/554be23d0fce600674232c33\\"\`, cannot be sent in the request.", + "params": Array [ + "id", + "/authorizationServers/554be23d0fce600674232c33", + ], + "path": "$/id", + "position": Object { + "column": 15, + "line": 6093, + }, + "title": "#/definitions/OAuth2AuthorizationServerContract/properties/id", + "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2016-07-07/apimanagement.json", + }, + "operationId": "AuthorizationServers_CreateOrUpdate", + "responseCode": "ALL", + "scenario": "example-in-spec", + "severity": 0, + "source": "request", }, ] `; @@ -1032,13 +1057,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.isCurrent", + "jsonPath": "$['properties']['isCurrent']", "message": "ReadOnly property \`\\"isCurrent\\": false\`, cannot be sent in the request.", "params": Array [ "isCurrent", false, ], - "path": "properties/isCurrent", + "path": "$/properties/isCurrent", "position": Object { "column": 22, "line": 3789, @@ -1060,13 +1085,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"newoperation\\"\`, cannot be sent in the request.", "params": Array [ "name", "newoperation", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 517, @@ -1315,13 +1340,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.isCurrent", + "jsonPath": "$['properties']['isCurrent']", "message": "ReadOnly property \`\\"isCurrent\\": false\`, cannot be sent in the request.", "params": Array [ "isCurrent", false, ], - "path": "properties/isCurrent", + "path": "$/properties/isCurrent", "position": Object { "column": 22, "line": 3958, @@ -1343,13 +1368,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"newoperation\\"\`, cannot be sent in the request.", "params": Array [ "name", "newoperation", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 595, @@ -1600,13 +1625,13 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.properties.maxHistoryCap", + "jsonPath": "$['properties']['maxHistoryCap']", "message": "ReadOnly property \`\\"maxHistoryCap\\": 500\`, cannot be sent in the request.", "params": Array [ "maxHistoryCap", 500, ], - "path": "properties/maxHistoryCap", + "path": "$/properties/maxHistoryCap", "position": Object { "column": 26, "line": 218, @@ -1637,13 +1662,13 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.properties.resetHour", + "jsonPath": "$['properties']['resetHour']", "message": "ReadOnly property \`\\"resetHour\\": 16\`, cannot be sent in the request.", "params": Array [ "resetHour", 16, ], - "path": "properties/resetHour", + "path": "$/properties/resetHour", "position": Object { "column": 22, "line": 201, @@ -1674,13 +1699,13 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"microsoft.insights/components/pricingPlans\\"\`, cannot be sent in the request.", "params": Array [ "type", "microsoft.insights/components/pricingPlans", ], - "path": "type", + "path": "$/type", "position": Object { "column": 13, "line": 21, @@ -1711,13 +1736,13 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"current\\"\`, cannot be sent in the request.", "params": Array [ "name", "current", ], - "path": "name", + "path": "$/name", "position": Object { "column": 13, "line": 16, @@ -1748,13 +1773,13 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/subid/resourceGroups/my-resource-group/providers/microsoft.insights/components/my-component/pricingPlans/current\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/subid/resourceGroups/my-resource-group/providers/microsoft.insights/components/my-component/pricingPlans/current", ], - "path": "id", + "path": "$/id", "position": Object { "column": 11, "line": 11, @@ -1785,13 +1810,13 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"microsoft.insights/components/pricingPlans\\"\`, cannot be sent in the request.", "params": Array [ "type", "microsoft.insights/components/pricingPlans", ], - "path": "type", + "path": "$/type", "position": Object { "column": 13, "line": 21, @@ -1822,13 +1847,13 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"current\\"\`, cannot be sent in the request.", "params": Array [ "name", "current", ], - "path": "name", + "path": "$/name", "position": Object { "column": 13, "line": 16, @@ -1859,13 +1884,13 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/subid/resourceGroups/my-resource-group/providers/microsoft.insights/components/my-component/pricingPlans/current\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/subid/resourceGroups/my-resource-group/providers/microsoft.insights/components/my-component/pricingPlans/current", ], - "path": "id", + "path": "$/id", "position": Object { "column": 11, "line": 11, @@ -1907,13 +1932,13 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.properties.Name", + "jsonPath": "$['properties']['Name']", "message": "ReadOnly property \`\\"Name\\": \\"slowpageloadtime\\"\`, cannot be sent in the request.", "params": Array [ "Name", "slowpageloadtime", ], - "path": "properties/Name", + "path": "$/properties/Name", "position": Object { "column": 17, "line": 192, @@ -1955,7 +1980,7 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.kind", + "jsonPath": "$['kind']", "jsonPosition": Object { "column": 15, "line": 10, @@ -1965,7 +1990,7 @@ Array [ "params": Array [ "kind", ], - "path": "kind", + "path": "$/kind", "position": Object { "column": 17, "line": 333, @@ -1996,7 +2021,7 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.location", + "jsonPath": "$['location']", "jsonPosition": Object { "column": 15, "line": 10, @@ -2006,7 +2031,7 @@ Array [ "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 17, "line": 333, @@ -2037,7 +2062,7 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "jsonPosition": Object { "column": 15, "line": 10, @@ -2047,7 +2072,7 @@ Array [ "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 17, "line": 333, @@ -2078,12 +2103,12 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.location", + "jsonPath": "$['location']", "message": "Additional properties not allowed: location", "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 17, "line": 333, @@ -2114,12 +2139,12 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.kind", + "jsonPath": "$['kind']", "message": "Additional properties not allowed: kind", "params": Array [ "kind", ], - "path": "kind", + "path": "$/kind", "position": Object { "column": 17, "line": 333, @@ -2150,12 +2175,12 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "message": "Additional properties not allowed: tags", "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 17, "line": 333, @@ -2186,13 +2211,13 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"deadb33f-8bee-4d3b-a059-9be8dac93960\\"\`, cannot be sent in the request.", "params": Array [ "name", "deadb33f-8bee-4d3b-a059-9be8dac93960", ], - "path": "name", + "path": "$/name", "position": Object { "column": 13, "line": 16, @@ -2223,13 +2248,13 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"c0deea5e-3344-40f2-96f8-6f8e1c3b5722\\"\`, cannot be sent in the request.", "params": Array [ "id", "c0deea5e-3344-40f2-96f8-6f8e1c3b5722", ], - "path": "id", + "path": "$/id", "position": Object { "column": 11, "line": 11, @@ -2260,7 +2285,7 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.kind", + "jsonPath": "$['kind']", "jsonPosition": Object { "column": 15, "line": 26, @@ -2270,7 +2295,7 @@ Array [ "params": Array [ "kind", ], - "path": "kind", + "path": "$/kind", "position": Object { "column": 17, "line": 333, @@ -2301,7 +2326,7 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.location", + "jsonPath": "$['location']", "jsonPosition": Object { "column": 15, "line": 26, @@ -2311,7 +2336,7 @@ Array [ "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 17, "line": 333, @@ -2342,7 +2367,7 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "jsonPosition": Object { "column": 15, "line": 26, @@ -2352,7 +2377,7 @@ Array [ "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 17, "line": 333, @@ -2383,7 +2408,7 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.kind", + "jsonPath": "$['kind']", "jsonPosition": Object { "column": 15, "line": 44, @@ -2393,7 +2418,7 @@ Array [ "params": Array [ "kind", ], - "path": "kind", + "path": "$/kind", "position": Object { "column": 17, "line": 333, @@ -2424,7 +2449,7 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.location", + "jsonPath": "$['location']", "jsonPosition": Object { "column": 15, "line": 44, @@ -2434,7 +2459,7 @@ Array [ "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 17, "line": 333, @@ -2465,7 +2490,7 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "jsonPosition": Object { "column": 15, "line": 44, @@ -2475,7 +2500,7 @@ Array [ "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 17, "line": 333, @@ -2506,7 +2531,7 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.kind", + "jsonPath": "$['kind']", "jsonPosition": Object { "column": 15, "line": 25, @@ -2516,7 +2541,7 @@ Array [ "params": Array [ "kind", ], - "path": "kind", + "path": "$/kind", "position": Object { "column": 17, "line": 333, @@ -2547,7 +2572,7 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.location", + "jsonPath": "$['location']", "jsonPosition": Object { "column": 15, "line": 25, @@ -2557,7 +2582,7 @@ Array [ "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 17, "line": 333, @@ -2588,7 +2613,7 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "jsonPosition": Object { "column": 15, "line": 25, @@ -2598,7 +2623,7 @@ Array [ "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 17, "line": 333, @@ -2664,13 +2689,13 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.ValidateOnly", + "jsonPath": "$['ValidateOnly']", "message": "Expected type boolean but found type string", "params": Array [ "boolean", "string", ], - "path": "ValidateOnly", + "path": "$/ValidateOnly", "position": Object { "column": 25, "line": 239, @@ -2701,13 +2726,13 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.WorkItemProperties", + "jsonPath": "$['WorkItemProperties']", "message": "Expected type string but found type array", "params": Array [ "string", "array", ], - "path": "WorkItemProperties", + "path": "$/WorkItemProperties", "position": Object { "column": 31, "line": 243, @@ -2738,13 +2763,13 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.ConnectorDataConfiguration", + "jsonPath": "$['ConnectorDataConfiguration']", "message": "Expected type string but found type object", "params": Array [ "string", "object", ], - "path": "ConnectorDataConfiguration", + "path": "$/ConnectorDataConfiguration", "position": Object { "column": 39, "line": 235, @@ -2782,13 +2807,13 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.properties.ApplicationId", + "jsonPath": "$['properties']['ApplicationId']", "message": "ReadOnly property \`\\"ApplicationId\\": \\"my-component\\"\`, cannot be sent in the request.", "params": Array [ "ApplicationId", "my-component", ], - "path": "properties/ApplicationId", + "path": "$/properties/ApplicationId", "position": Object { "column": 26, "line": 395, @@ -2819,13 +2844,13 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"my-component\\"\`, cannot be sent in the request.", "params": Array [ "name", "my-component", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 328, @@ -2856,13 +2881,13 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"my-component\\"\`, cannot be sent in the request.", "params": Array [ "name", "my-component", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 328, @@ -2900,13 +2925,13 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.FavoriteId", + "jsonPath": "$['FavoriteId']", "message": "ReadOnly property \`\\"FavoriteId\\": \\"deadb33f-8bee-4d3b-a059-9be8dac93960\\"\`, cannot be sent in the request.", "params": Array [ "FavoriteId", "deadb33f-8bee-4d3b-a059-9be8dac93960", ], - "path": "FavoriteId", + "path": "$/FavoriteId", "position": Object { "column": 23, "line": 255, @@ -2937,13 +2962,13 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.TimeModified", + "jsonPath": "$['TimeModified']", "message": "ReadOnly property \`\\"TimeModified\\": \\"2018-02-02T18:39:11.6569686Z\\"\`, cannot be sent in the request.", "params": Array [ "TimeModified", "2018-02-02T18:39:11.6569686Z", ], - "path": "TimeModified", + "path": "$/TimeModified", "position": Object { "column": 25, "line": 276, @@ -2974,13 +2999,13 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.FavoriteId", + "jsonPath": "$['FavoriteId']", "message": "ReadOnly property \`\\"FavoriteId\\": \\"deadb33f-5e0d-4064-8ebb-1a4ed0313eb2\\"\`, cannot be sent in the request.", "params": Array [ "FavoriteId", "deadb33f-5e0d-4064-8ebb-1a4ed0313eb2", ], - "path": "FavoriteId", + "path": "$/FavoriteId", "position": Object { "column": 23, "line": 255, @@ -3026,13 +3051,13 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"deadb33f-8bee-4d3b-a059-9be8dac93960\\"\`, cannot be sent in the request.", "params": Array [ "name", "deadb33f-8bee-4d3b-a059-9be8dac93960", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 268, @@ -3063,13 +3088,13 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"c0deea5e-3344-40f2-96f8-6f8e1c3b5722\\"\`, cannot be sent in the request.", "params": Array [ "id", "c0deea5e-3344-40f2-96f8-6f8e1c3b5722", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 263, @@ -3100,13 +3125,13 @@ Array [ "TrackedResourceListByImmediateParent": ".*", "XmsResourceInPutResponse": ".*", }, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"deadb33f-8bee-4d3b-a059-9be8dac93960\\"\`, cannot be sent in the request.", "params": Array [ "name", "deadb33f-8bee-4d3b-a059-9be8dac93960", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 268, @@ -3175,13 +3200,13 @@ Array [ "code": "INVALID_TYPE", "details": Object { "code": "INVALID_TYPE", - "jsonPath": "", + "jsonPath": "$", "message": "Expected type file but found type string", "params": Array [ "file", "string", ], - "path": "", + "path": "$", }, "operationId": "Job_GetOutput", "responseCode": "200", @@ -3193,9 +3218,9 @@ Array [ "code": "INVALID_CONTENT_TYPE", "details": Object { "code": "INVALID_CONTENT_TYPE", - "jsonPath": "", + "jsonPath": "$", "message": "Invalid Content-Type (text/powershell). These are supported: application/json", - "path": "", + "path": "$", }, "operationId": "Job_GetRunbookContent", "responseCode": "200", @@ -3207,13 +3232,13 @@ Array [ "code": "INVALID_TYPE", "details": Object { "code": "INVALID_TYPE", - "jsonPath": "", + "jsonPath": "$", "message": "Expected type file but found type string", "params": Array [ "file", "string", ], - "path": "", + "path": "$", }, "operationId": "Job_GetRunbookContent", "responseCode": "200", @@ -3234,13 +3259,13 @@ Array [ "code": "INVALID_TYPE", "description": "Dictionary of tags with its list of values.", "directives": Object {}, - "jsonPath": "$.properties.updateConfiguration.targets.azureQueries[0].tagSettings.tags", + "jsonPath": "$['properties']['updateConfiguration']['targets']['azureQueries'][0]['tagSettings']['tags']", "message": "Expected type object but found type array", "params": Array [ "object", "array", ], - "path": "properties/updateConfiguration/targets/azureQueries/0/tagSettings/tags", + "path": "$/properties/updateConfiguration/targets/azureQueries/0/tagSettings/tags", "position": Object { "column": 17, "line": 861, @@ -3260,21 +3285,21 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Non Azure query for the update configuration.", "directives": Object {}, - "jsonPath": "$.properties.updateConfiguration.targets.nonAzureQueries[0].WorkspaceId", + "jsonPath": "$['properties']['updateConfiguration']['targets']['nonAzureQueries'][0]['WorkspaceId']", "message": "Additional properties not allowed: WorkspaceId", "params": Array [ "WorkspaceId", ], - "path": "properties/updateConfiguration/targets/nonAzureQueries/0/WorkspaceId", + "path": "$/properties/updateConfiguration/targets/nonAzureQueries/0/WorkspaceId", "position": Object { "column": 31, "line": 815, }, "similarJsonPaths": Array [ - "$.properties.updateConfiguration.targets.nonAzureQueries[1].WorkspaceId", + "$['properties']['updateConfiguration']['targets']['nonAzureQueries'][1]['WorkspaceId']", ], "similarPaths": Array [ - "properties/updateConfiguration/targets/nonAzureQueries/1/WorkspaceId", + "$/properties/updateConfiguration/targets/nonAzureQueries/1/WorkspaceId", ], "title": "#/definitions/NonAzureQueryProperties", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/automation/resource-manager/Microsoft.Automation/preview/2017-05-15-preview/softwareUpdateConfiguration.json", @@ -3291,21 +3316,21 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Non Azure query for the update configuration.", "directives": Object {}, - "jsonPath": "$.properties.updateConfiguration.targets.nonAzureQueries[0].FunctionAlias", + "jsonPath": "$['properties']['updateConfiguration']['targets']['nonAzureQueries'][0]['FunctionAlias']", "message": "Additional properties not allowed: FunctionAlias", "params": Array [ "FunctionAlias", ], - "path": "properties/updateConfiguration/targets/nonAzureQueries/0/FunctionAlias", + "path": "$/properties/updateConfiguration/targets/nonAzureQueries/0/FunctionAlias", "position": Object { "column": 31, "line": 815, }, "similarJsonPaths": Array [ - "$.properties.updateConfiguration.targets.nonAzureQueries[1].FunctionAlias", + "$['properties']['updateConfiguration']['targets']['nonAzureQueries'][1]['FunctionAlias']", ], "similarPaths": Array [ - "properties/updateConfiguration/targets/nonAzureQueries/1/FunctionAlias", + "$/properties/updateConfiguration/targets/nonAzureQueries/1/FunctionAlias", ], "title": "#/definitions/NonAzureQueryProperties", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/automation/resource-manager/Microsoft.Automation/preview/2017-05-15-preview/softwareUpdateConfiguration.json", @@ -3476,13 +3501,13 @@ Array [ "code": "INVALID_TYPE", "details": Object { "code": "INVALID_TYPE", - "jsonPath": "", + "jsonPath": "$", "message": "Expected type file but found type string", "params": Array [ "file", "string", ], - "path": "", + "path": "$", }, "operationId": "DscConfiguration_GetContent", "responseCode": "200", @@ -3532,9 +3557,9 @@ Array [ "code": "INVALID_TYPE", "details": Object { "code": "INVALID_TYPE", - "jsonPath": "", + "jsonPath": "$", "message": "Expected type file but found type object", - "path": "", + "path": "$", }, "operationId": "Job_GetOutput", "responseCode": "200", @@ -3565,13 +3590,13 @@ Array [ "code": "INVALID_TYPE", "details": Object { "code": "INVALID_TYPE", - "jsonPath": "", + "jsonPath": "$", "message": "Expected type file but found type string", "params": Array [ "file", "string", ], - "path": "", + "path": "$", }, "operationId": "RunbookDraft_GetContent", "responseCode": "200", @@ -3615,13 +3640,13 @@ Array [ "code": "INVALID_TYPE", "details": Object { "code": "INVALID_TYPE", - "jsonPath": "", + "jsonPath": "$", "message": "Expected type file but found type string", "params": Array [ "file", "string", ], - "path": "", + "path": "$", }, "operationId": "Runbook_GetContent", "responseCode": "200", @@ -3717,13 +3742,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets or sets the creation time.", "directives": Object {}, - "jsonPath": "$.properties.creationTime", + "jsonPath": "$['properties']['creationTime']", "message": "ReadOnly property \`\\"creationTime\\": \\"2016-11-01T04:22:47.7333333-07:00\\"\`, cannot be sent in the request.", "params": Array [ "creationTime", "2016-11-01T04:22:47.7333333-07:00", ], - "path": "properties/creationTime", + "path": "$/properties/creationTime", "position": Object { "column": 25, "line": 464, @@ -3743,13 +3768,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets or sets the last modified time.", "directives": Object {}, - "jsonPath": "$.properties.lastModifiedTime", + "jsonPath": "$['properties']['lastModifiedTime']", "message": "ReadOnly property \`\\"lastModifiedTime\\": \\"2016-11-01T04:22:47.7333333-07:00\\"\`, cannot be sent in the request.", "params": Array [ "lastModifiedTime", "2016-11-01T04:22:47.7333333-07:00", ], - "path": "properties/lastModifiedTime", + "path": "$/properties/lastModifiedTime", "position": Object { "column": 29, "line": 471, @@ -3769,13 +3794,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the resource", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"MyTestWatcher\\"\`, cannot be sent in the request.", "params": Array [ "name", "MyTestWatcher", ], - "path": "name", + "path": "$/name", "position": Object { "column": 25, "line": 50, @@ -3841,13 +3866,13 @@ Array [ "code": "INVALID_TYPE", "description": "Holds properties related to activation.", "directives": Object {}, - "jsonPath": "", + "jsonPath": "$", "message": "Expected type object but found type string", "params": Array [ "object", "string", ], - "path": "", + "path": "$", "position": Object { "column": 23, "line": 201, @@ -3872,9 +3897,9 @@ Array [ "code": "INVALID_CONTENT_TYPE", "details": Object { "code": "INVALID_CONTENT_TYPE", - "jsonPath": "", + "jsonPath": "$", "message": "Invalid Content-Type (application/octet-stream). These are supported: ", - "path": "", + "path": "$", }, "operationId": "Operations_List", "responseCode": "200", @@ -3991,7 +4016,160 @@ exports[`validateExamples should not regress for file '/home/vsts/work/1/s/regre exports[`validateExamples should not regress for file '/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/azsadmin/resource-manager/compute/Microsoft.Compute.Admin/preview/2018-07-30-preview/DiskMigrationJobs.json': returned results 1`] = ` Array [ Object { - "inner": [Error: couldn't understand path 1,id], + "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", + "details": Object { + "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", + "description": "ID of the resource.", + "directives": Object {}, + "jsonPath": "$[1]['id']", + "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/04666444-56f0-4d4f-afc5-dbd6b134b084/providers/Microsoft.Compute.Admin/locations/redmond/disks/48dc9b56-5883-4011-9dc3-0e527f33e6ab\\"\`, cannot be sent in the request.", + "params": Array [ + "id", + "/subscriptions/04666444-56f0-4d4f-afc5-dbd6b134b084/providers/Microsoft.Compute.Admin/locations/redmond/disks/48dc9b56-5883-4011-9dc3-0e527f33e6ab", + ], + "path": "$/1/id", + "position": Object { + "column": 23, + "line": 54, + }, + "title": "#/definitions/Resource/properties/id", + "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/azsadmin/resource-manager/compute/Microsoft.Compute.Admin/preview/2015-12-01-preview/Compute.json", + }, + "operationId": "DiskMigrationJobs_Create", + "responseCode": "ALL", + "scenario": "Create a disk migration job.", + "severity": 0, + "source": "request", + }, + Object { + "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", + "details": Object { + "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", + "description": "Name of the resource.", + "directives": Object {}, + "jsonPath": "$[1]['name']", + "message": "ReadOnly property \`\\"name\\": \\"redmond/48dc9b56-5883-4011-9dc3-0e527f33e6ab\\"\`, cannot be sent in the request.", + "params": Array [ + "name", + "redmond/48dc9b56-5883-4011-9dc3-0e527f33e6ab", + ], + "path": "$/1/name", + "position": Object { + "column": 25, + "line": 59, + }, + "title": "#/definitions/Resource/properties/name", + "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/azsadmin/resource-manager/compute/Microsoft.Compute.Admin/preview/2015-12-01-preview/Compute.json", + }, + "operationId": "DiskMigrationJobs_Create", + "responseCode": "ALL", + "scenario": "Create a disk migration job.", + "severity": 0, + "source": "request", + }, + Object { + "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", + "details": Object { + "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", + "description": "Type of Resource.", + "directives": Object {}, + "jsonPath": "$[1]['type']", + "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Compute.Admin/locations/disks\\"\`, cannot be sent in the request.", + "params": Array [ + "type", + "Microsoft.Compute.Admin/locations/disks", + ], + "path": "$/1/type", + "position": Object { + "column": 25, + "line": 64, + }, + "title": "#/definitions/Resource/properties/type", + "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/azsadmin/resource-manager/compute/Microsoft.Compute.Admin/preview/2015-12-01-preview/Compute.json", + }, + "operationId": "DiskMigrationJobs_Create", + "responseCode": "ALL", + "scenario": "Create a disk migration job.", + "severity": 0, + "source": "request", + }, + Object { + "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", + "details": Object { + "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", + "description": "ID of the resource.", + "directives": Object {}, + "jsonPath": "$[0]['id']", + "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/04666444-56f0-4d4f-afc5-dbd6b134b084/providers/Microsoft.Compute.Admin/locations/redmond/disks/423e4eb4-f791-4d13-ad5b-4d415733b0d6\\"\`, cannot be sent in the request.", + "params": Array [ + "id", + "/subscriptions/04666444-56f0-4d4f-afc5-dbd6b134b084/providers/Microsoft.Compute.Admin/locations/redmond/disks/423e4eb4-f791-4d13-ad5b-4d415733b0d6", + ], + "path": "$/0/id", + "position": Object { + "column": 23, + "line": 54, + }, + "title": "#/definitions/Resource/properties/id", + "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/azsadmin/resource-manager/compute/Microsoft.Compute.Admin/preview/2015-12-01-preview/Compute.json", + }, + "operationId": "DiskMigrationJobs_Create", + "responseCode": "ALL", + "scenario": "Create a disk migration job.", + "severity": 0, + "source": "request", + }, + Object { + "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", + "details": Object { + "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", + "description": "Name of the resource.", + "directives": Object {}, + "jsonPath": "$[0]['name']", + "message": "ReadOnly property \`\\"name\\": \\"redmond/423e4eb4-f791-4d13-ad5b-4d415733b0d6\\"\`, cannot be sent in the request.", + "params": Array [ + "name", + "redmond/423e4eb4-f791-4d13-ad5b-4d415733b0d6", + ], + "path": "$/0/name", + "position": Object { + "column": 25, + "line": 59, + }, + "title": "#/definitions/Resource/properties/name", + "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/azsadmin/resource-manager/compute/Microsoft.Compute.Admin/preview/2015-12-01-preview/Compute.json", + }, + "operationId": "DiskMigrationJobs_Create", + "responseCode": "ALL", + "scenario": "Create a disk migration job.", + "severity": 0, + "source": "request", + }, + Object { + "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", + "details": Object { + "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", + "description": "Type of Resource.", + "directives": Object {}, + "jsonPath": "$[0]['type']", + "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Compute.Admin/locations/disks\\"\`, cannot be sent in the request.", + "params": Array [ + "type", + "Microsoft.Compute.Admin/locations/disks", + ], + "path": "$/0/type", + "position": Object { + "column": 25, + "line": 64, + }, + "title": "#/definitions/Resource/properties/type", + "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/azsadmin/resource-manager/compute/Microsoft.Compute.Admin/preview/2015-12-01-preview/Compute.json", + }, + "operationId": "DiskMigrationJobs_Create", + "responseCode": "ALL", + "scenario": "Create a disk migration job.", + "severity": 0, + "source": "request", }, ] `; @@ -4010,13 +4188,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Application operation result description.", "directives": Object {}, - "jsonPath": "$.value[1].error", + "jsonPath": "$['value'][1]['error']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/ApplicationOperationResult/List.json", "message": "Additional properties not allowed: error", "params": Array [ "error", ], - "path": "value/1/error", + "path": "$/value/1/error", "position": Object { "column": 39, "line": 109, @@ -4043,13 +4221,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Compute operation result description.", "directives": Object {}, - "jsonPath": "$.value[1].error", + "jsonPath": "$['value'][1]['error']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/ComputeOperationResult/List.json", "message": "Additional properties not allowed: error", "params": Array [ "error", ], - "path": "value/1/error", + "path": "$/value/1/error", "position": Object { "column": 35, "line": 109, @@ -4123,7 +4301,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of an IpPool.", "directives": Object {}, - "jsonPath": "$.properties.provisioningState", + "jsonPath": "$['properties']['provisioningState']", "jsonPosition": Object { "column": 31, "line": 18, @@ -4133,7 +4311,7 @@ Array [ "params": Array [ "provisioningState", ], - "path": "properties/provisioningState", + "path": "$/properties/provisioningState", "position": Object { "column": 24, "line": 172, @@ -4188,13 +4366,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Network operation result description.", "directives": Object {}, - "jsonPath": "$.value[1].error", + "jsonPath": "$['value'][1]['error']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/NetworkOperationResult/List.json", "message": "Additional properties not allowed: error", "params": Array [ "error", ], - "path": "value/1/error", + "path": "$/value/1/error", "position": Object { "column": 35, "line": 109, @@ -4221,12 +4399,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A list of input data that allows for adding a set of scale unit nodes.", "directives": Object {}, - "jsonPath": "$.scaleUnitNode", + "jsonPath": "$['scaleUnitNode']", "message": "Additional properties not allowed: scaleUnitNode", "params": Array [ "scaleUnitNode", ], - "path": "scaleUnitNode", + "path": "$/scaleUnitNode", "position": Object { "column": 40, "line": 275, @@ -4246,12 +4424,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A list of input data that allows for adding a set of scale unit nodes.", "directives": Object {}, - "jsonPath": "$.bmcIPv4Address", + "jsonPath": "$['bmcIPv4Address']", "message": "Additional properties not allowed: bmcIPv4Address", "params": Array [ "bmcIPv4Address", ], - "path": "bmcIPv4Address", + "path": "$/bmcIPv4Address", "position": Object { "column": 40, "line": 275, @@ -4286,13 +4464,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Storage operation result description.", "directives": Object {}, - "jsonPath": "$.value[1].error", + "jsonPath": "$['value'][1]['error']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/StorageOperationResult/List.json", "message": "Additional properties not allowed: error", "params": Array [ "error", ], - "path": "value/1/error", + "path": "$/value/1/error", "position": Object { "column": 35, "line": 109, @@ -4347,13 +4525,13 @@ Array [ "code": "INVALID_TYPE", "description": "Location of gallery item payload.", "directives": Object {}, - "jsonPath": "", + "jsonPath": "$", "message": "Expected type object but found type string", "params": Array [ "object", "string", ], - "path": "", + "path": "$", "position": Object { "column": 34, "line": 176, @@ -4380,13 +4558,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.InfrastructureInsights.Admin/regionHealths/alerts\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.InfrastructureInsights.Admin/regionHealths/alerts", ], - "path": "type", + "path": "$/type", "position": Object { "column": 25, "line": 96, @@ -4406,13 +4584,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the resource", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"ca55be03-9be9-4deb-8467-e890ab1d116b\\"\`, cannot be sent in the request.", "params": Array [ "name", "ca55be03-9be9-4deb-8467-e890ab1d116b", ], - "path": "name", + "path": "$/name", "position": Object { "column": 25, "line": 91, @@ -4432,13 +4610,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Fully qualified resource Id for the resource", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/System.local/providers/Microsoft.InfrastructureInsights.Admin/regionHealths/local/alerts/ca55be03-9be9-4deb-8467-e890ab1d116b\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/System.local/providers/Microsoft.InfrastructureInsights.Admin/regionHealths/local/alerts/ca55be03-9be9-4deb-8467-e890ab1d116b", ], - "path": "id", + "path": "$/id", "position": Object { "column": 23, "line": 86, @@ -4521,13 +4699,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Farm identifier.", "directives": Object {}, - "jsonPath": "$.properties.farmId", + "jsonPath": "$['properties']['farmId']", "message": "ReadOnly property \`\\"farmId\\": \\"3cf03497-c44a-4e51-a56f-3987d88c70af\\"\`, cannot be sent in the request.", "params": Array [ "farmId", "3cf03497-c44a-4e51-a56f-3987d88c70af", ], - "path": "properties/farmId", + "path": "$/properties/farmId", "position": Object { "column": 27, "line": 649, @@ -4547,13 +4725,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource version.", "directives": Object {}, - "jsonPath": "$.properties.version", + "jsonPath": "$['properties']['version']", "message": "ReadOnly property \`\\"version\\": \\"2015-12-01-preview\\"\`, cannot be sent in the request.", "params": Array [ "version", "2015-12-01-preview", ], - "path": "properties/version", + "path": "$/properties/version", "position": Object { "column": 28, "line": 654, @@ -4573,13 +4751,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The settings of storage farm.", "directives": Object {}, - "jsonPath": "$.properties.settingsStore", + "jsonPath": "$['properties']['settingsStore']", "message": "ReadOnly property \`\\"settingsStore\\": \\"AzS-ACS01.azurestack.local:19000\\"\`, cannot be sent in the request.", "params": Array [ "settingsStore", "AzS-ACS01.azurestack.local:19000", ], - "path": "properties/settingsStore", + "path": "$/properties/settingsStore", "position": Object { "column": 34, "line": 659, @@ -4599,13 +4777,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The polling interval (in second).", "directives": Object {}, - "jsonPath": "$.properties.settings.settingsPollingIntervalInSecond", + "jsonPath": "$['properties']['settings']['settingsPollingIntervalInSecond']", "message": "ReadOnly property \`\\"settingsPollingIntervalInSecond\\": 60\`, cannot be sent in the request.", "params": Array [ "settingsPollingIntervalInSecond", 60, ], - "path": "properties/settings/settingsPollingIntervalInSecond", + "path": "$/properties/settings/settingsPollingIntervalInSecond", "position": Object { "column": 52, "line": 400, @@ -4625,13 +4803,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The retention period (in days) for deleted storage account.", "directives": Object {}, - "jsonPath": "$.properties.settings.retentionPeriodForDeletedStorageAccountsInDays", + "jsonPath": "$['properties']['settings']['retentionPeriodForDeletedStorageAccountsInDays']", "message": "ReadOnly property \`\\"retentionPeriodForDeletedStorageAccountsInDays\\": 0\`, cannot be sent in the request.", "params": Array [ "retentionPeriodForDeletedStorageAccountsInDays", 0, ], - "path": "properties/settings/retentionPeriodForDeletedStorageAccountsInDays", + "path": "$/properties/settings/retentionPeriodForDeletedStorageAccountsInDays", "position": Object { "column": 67, "line": 406, @@ -4651,13 +4829,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Host style HTTP port.", "directives": Object {}, - "jsonPath": "$.properties.settings.hostStyleHttpPort", + "jsonPath": "$['properties']['settings']['hostStyleHttpPort']", "message": "ReadOnly property \`\\"hostStyleHttpPort\\": 0\`, cannot be sent in the request.", "params": Array [ "hostStyleHttpPort", 0, ], - "path": "properties/settings/hostStyleHttpPort", + "path": "$/properties/settings/hostStyleHttpPort", "position": Object { "column": 38, "line": 412, @@ -4677,13 +4855,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Host style HTTPs port.", "directives": Object {}, - "jsonPath": "$.properties.settings.hostStyleHttpsPort", + "jsonPath": "$['properties']['settings']['hostStyleHttpsPort']", "message": "ReadOnly property \`\\"hostStyleHttpsPort\\": 0\`, cannot be sent in the request.", "params": Array [ "hostStyleHttpsPort", 0, ], - "path": "properties/settings/hostStyleHttpsPort", + "path": "$/properties/settings/hostStyleHttpsPort", "position": Object { "column": 39, "line": 418, @@ -4703,13 +4881,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The list of allowed origins.", "directives": Object {}, - "jsonPath": "$.properties.settings.corsAllowedOriginsList", + "jsonPath": "$['properties']['settings']['corsAllowedOriginsList']", "message": "ReadOnly property \`\\"corsAllowedOriginsList\\": \\"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\\"\`, cannot be sent in the request.", "params": Array [ "corsAllowedOriginsList", "https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/", ], - "path": "properties/settings/corsAllowedOriginsList", + "path": "$/properties/settings/corsAllowedOriginsList", "position": Object { "column": 43, "line": 424, @@ -4729,13 +4907,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The suffixes of URI of hosts in data center.", "directives": Object {}, - "jsonPath": "$.properties.settings.dataCenterUriHostSuffixes", + "jsonPath": "$['properties']['settings']['dataCenterUriHostSuffixes']", "message": "ReadOnly property \`\\"dataCenterUriHostSuffixes\\": \\"local.azurestack.external\\"\`, cannot be sent in the request.", "params": Array [ "dataCenterUriHostSuffixes", "local.azurestack.external", ], - "path": "properties/settings/dataCenterUriHostSuffixes", + "path": "$/properties/settings/dataCenterUriHostSuffixes", "position": Object { "column": 46, "line": 429, @@ -4755,13 +4933,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Switch of bandwidth throttle enablement.", "directives": Object {}, - "jsonPath": "$.properties.settings.bandwidthThrottleIsEnabled", + "jsonPath": "$['properties']['settings']['bandwidthThrottleIsEnabled']", "message": "ReadOnly property \`\\"bandwidthThrottleIsEnabled\\": false\`, cannot be sent in the request.", "params": Array [ "bandwidthThrottleIsEnabled", false, ], - "path": "properties/settings/bandwidthThrottleIsEnabled", + "path": "$/properties/settings/bandwidthThrottleIsEnabled", "position": Object { "column": 47, "line": 434, @@ -4781,13 +4959,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Interval (in seconds) of storage usage collection.", "directives": Object {}, - "jsonPath": "$.properties.settings.usageCollectionIntervalInSeconds", + "jsonPath": "$['properties']['settings']['usageCollectionIntervalInSeconds']", "message": "ReadOnly property \`\\"usageCollectionIntervalInSeconds\\": 10\`, cannot be sent in the request.", "params": Array [ "usageCollectionIntervalInSeconds", 10, ], - "path": "properties/settings/usageCollectionIntervalInSeconds", + "path": "$/properties/settings/usageCollectionIntervalInSeconds", "position": Object { "column": 53, "line": 439, @@ -4807,13 +4985,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Interval (in seconds) of feedback refresh.", "directives": Object {}, - "jsonPath": "$.properties.settings.feedbackRefreshIntervalInSeconds", + "jsonPath": "$['properties']['settings']['feedbackRefreshIntervalInSeconds']", "message": "ReadOnly property \`\\"feedbackRefreshIntervalInSeconds\\": 10\`, cannot be sent in the request.", "params": Array [ "feedbackRefreshIntervalInSeconds", 10, ], - "path": "properties/settings/feedbackRefreshIntervalInSeconds", + "path": "$/properties/settings/feedbackRefreshIntervalInSeconds", "position": Object { "column": 53, "line": 445, @@ -4833,13 +5011,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Number of accounts to sync.", "directives": Object {}, - "jsonPath": "$.properties.settings.numberOfAccountsToSync", + "jsonPath": "$['properties']['settings']['numberOfAccountsToSync']", "message": "ReadOnly property \`\\"numberOfAccountsToSync\\": 20\`, cannot be sent in the request.", "params": Array [ "numberOfAccountsToSync", 20, ], - "path": "properties/settings/numberOfAccountsToSync", + "path": "$/properties/settings/numberOfAccountsToSync", "position": Object { "column": 43, "line": 451, @@ -4859,13 +5037,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Interval (in seconds) of default throttle probability decay.", "directives": Object {}, - "jsonPath": "$.properties.settings.defaultThrottleProbabilityDecayIntervalInSeconds", + "jsonPath": "$['properties']['settings']['defaultThrottleProbabilityDecayIntervalInSeconds']", "message": "ReadOnly property \`\\"defaultThrottleProbabilityDecayIntervalInSeconds\\": 240\`, cannot be sent in the request.", "params": Array [ "defaultThrottleProbabilityDecayIntervalInSeconds", 240, ], - "path": "properties/settings/defaultThrottleProbabilityDecayIntervalInSeconds", + "path": "$/properties/settings/defaultThrottleProbabilityDecayIntervalInSeconds", "position": Object { "column": 69, "line": 457, @@ -4885,13 +5063,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Grace period for full throttling in refresh intervals.", "directives": Object {}, - "jsonPath": "$.properties.settings.gracePeriodForFullThrottlingInRefreshIntervals", + "jsonPath": "$['properties']['settings']['gracePeriodForFullThrottlingInRefreshIntervals']", "message": "ReadOnly property \`\\"gracePeriodForFullThrottlingInRefreshIntervals\\": 3\`, cannot be sent in the request.", "params": Array [ "gracePeriodForFullThrottlingInRefreshIntervals", 3, ], - "path": "properties/settings/gracePeriodForFullThrottlingInRefreshIntervals", + "path": "$/properties/settings/gracePeriodForFullThrottlingInRefreshIntervals", "position": Object { "column": 67, "line": 463, @@ -4911,13 +5089,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Maximum probability of throttle in grace period.", "directives": Object {}, - "jsonPath": "$.properties.settings.gracePeriodMaxThrottleProbability", + "jsonPath": "$['properties']['settings']['gracePeriodMaxThrottleProbability']", "message": "ReadOnly property \`\\"gracePeriodMaxThrottleProbability\\": 0.9\`, cannot be sent in the request.", "params": Array [ "gracePeriodMaxThrottleProbability", 0.9, ], - "path": "properties/settings/gracePeriodMaxThrottleProbability", + "path": "$/properties/settings/gracePeriodMaxThrottleProbability", "position": Object { "column": 54, "line": 469, @@ -4937,13 +5115,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Overall request threshold (in TPS).", "directives": Object {}, - "jsonPath": "$.properties.settings.overallRequestThresholdInTps", + "jsonPath": "$['properties']['settings']['overallRequestThresholdInTps']", "message": "ReadOnly property \`\\"overallRequestThresholdInTps\\": 10000\`, cannot be sent in the request.", "params": Array [ "overallRequestThresholdInTps", 10000, ], - "path": "properties/settings/overallRequestThresholdInTps", + "path": "$/properties/settings/overallRequestThresholdInTps", "position": Object { "column": 49, "line": 475, @@ -4963,13 +5141,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Default request threshold (in TPS).", "directives": Object {}, - "jsonPath": "$.properties.settings.defaultRequestThresholdInTps", + "jsonPath": "$['properties']['settings']['defaultRequestThresholdInTps']", "message": "ReadOnly property \`\\"defaultRequestThresholdInTps\\": 200\`, cannot be sent in the request.", "params": Array [ "defaultRequestThresholdInTps", 200, ], - "path": "properties/settings/defaultRequestThresholdInTps", + "path": "$/properties/settings/defaultRequestThresholdInTps", "position": Object { "column": 49, "line": 481, @@ -4989,13 +5167,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Minimum request threshold (in TPS).", "directives": Object {}, - "jsonPath": "$.properties.settings.minimumRequestThresholdInTps", + "jsonPath": "$['properties']['settings']['minimumRequestThresholdInTps']", "message": "ReadOnly property \`\\"minimumRequestThresholdInTps\\": 1\`, cannot be sent in the request.", "params": Array [ "minimumRequestThresholdInTps", 1, ], - "path": "properties/settings/minimumRequestThresholdInTps", + "path": "$/properties/settings/minimumRequestThresholdInTps", "position": Object { "column": 49, "line": 487, @@ -5015,13 +5193,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Tolerance factor for TPS.", "directives": Object {}, - "jsonPath": "$.properties.settings.toleranceFactorForTps", + "jsonPath": "$['properties']['settings']['toleranceFactorForTps']", "message": "ReadOnly property \`\\"toleranceFactorForTps\\": 2\`, cannot be sent in the request.", "params": Array [ "toleranceFactorForTps", 2, ], - "path": "properties/settings/toleranceFactorForTps", + "path": "$/properties/settings/toleranceFactorForTps", "position": Object { "column": 42, "line": 493, @@ -5041,13 +5219,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Overall ingress threshold (in Gbps)", "directives": Object {}, - "jsonPath": "$.properties.settings.overallIngressThresholdInGbps", + "jsonPath": "$['properties']['settings']['overallIngressThresholdInGbps']", "message": "ReadOnly property \`\\"overallIngressThresholdInGbps\\": 25\`, cannot be sent in the request.", "params": Array [ "overallIngressThresholdInGbps", 25, ], - "path": "properties/settings/overallIngressThresholdInGbps", + "path": "$/properties/settings/overallIngressThresholdInGbps", "position": Object { "column": 50, "line": 499, @@ -5067,13 +5245,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Default ingress threshold (in Gbps).", "directives": Object {}, - "jsonPath": "$.properties.settings.defaultIngressThresholdInGbps", + "jsonPath": "$['properties']['settings']['defaultIngressThresholdInGbps']", "message": "ReadOnly property \`\\"defaultIngressThresholdInGbps\\": 2\`, cannot be sent in the request.", "params": Array [ "defaultIngressThresholdInGbps", 2, ], - "path": "properties/settings/defaultIngressThresholdInGbps", + "path": "$/properties/settings/defaultIngressThresholdInGbps", "position": Object { "column": 50, "line": 505, @@ -5093,13 +5271,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Minimum ingress threshold (in Gbps).", "directives": Object {}, - "jsonPath": "$.properties.settings.minimumIngressThresholdInGbps", + "jsonPath": "$['properties']['settings']['minimumIngressThresholdInGbps']", "message": "ReadOnly property \`\\"minimumIngressThresholdInGbps\\": 0.0008\`, cannot be sent in the request.", "params": Array [ "minimumIngressThresholdInGbps", 0.0008, ], - "path": "properties/settings/minimumIngressThresholdInGbps", + "path": "$/properties/settings/minimumIngressThresholdInGbps", "position": Object { "column": 50, "line": 511, @@ -5119,13 +5297,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Tolerance factor for ingress.", "directives": Object {}, - "jsonPath": "$.properties.settings.toleranceFactorForIngress", + "jsonPath": "$['properties']['settings']['toleranceFactorForIngress']", "message": "ReadOnly property \`\\"toleranceFactorForIngress\\": 2\`, cannot be sent in the request.", "params": Array [ "toleranceFactorForIngress", 2, ], - "path": "properties/settings/toleranceFactorForIngress", + "path": "$/properties/settings/toleranceFactorForIngress", "position": Object { "column": 46, "line": 517, @@ -5145,13 +5323,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Overall Intranet ingress threshold (in Gbps).", "directives": Object {}, - "jsonPath": "$.properties.settings.overallIntranetIngressThresholdInGbps", + "jsonPath": "$['properties']['settings']['overallIntranetIngressThresholdInGbps']", "message": "ReadOnly property \`\\"overallIntranetIngressThresholdInGbps\\": 25\`, cannot be sent in the request.", "params": Array [ "overallIntranetIngressThresholdInGbps", 25, ], - "path": "properties/settings/overallIntranetIngressThresholdInGbps", + "path": "$/properties/settings/overallIntranetIngressThresholdInGbps", "position": Object { "column": 58, "line": 523, @@ -5171,13 +5349,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Default Intranet ingress threshold (in Gbps).", "directives": Object {}, - "jsonPath": "$.properties.settings.defaultIntranetIngressThresholdInGbps", + "jsonPath": "$['properties']['settings']['defaultIntranetIngressThresholdInGbps']", "message": "ReadOnly property \`\\"defaultIntranetIngressThresholdInGbps\\": 2\`, cannot be sent in the request.", "params": Array [ "defaultIntranetIngressThresholdInGbps", 2, ], - "path": "properties/settings/defaultIntranetIngressThresholdInGbps", + "path": "$/properties/settings/defaultIntranetIngressThresholdInGbps", "position": Object { "column": 58, "line": 529, @@ -5197,13 +5375,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Minimum Intranet ingress threshold (in Gbps).", "directives": Object {}, - "jsonPath": "$.properties.settings.minimumIntranetIngressThresholdInGbps", + "jsonPath": "$['properties']['settings']['minimumIntranetIngressThresholdInGbps']", "message": "ReadOnly property \`\\"minimumIntranetIngressThresholdInGbps\\": 0.0008\`, cannot be sent in the request.", "params": Array [ "minimumIntranetIngressThresholdInGbps", 0.0008, ], - "path": "properties/settings/minimumIntranetIngressThresholdInGbps", + "path": "$/properties/settings/minimumIntranetIngressThresholdInGbps", "position": Object { "column": 58, "line": 535, @@ -5223,13 +5401,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Tolerance factor for Intranet ingress.", "directives": Object {}, - "jsonPath": "$.properties.settings.toleranceFactorForIntranetIngress", + "jsonPath": "$['properties']['settings']['toleranceFactorForIntranetIngress']", "message": "ReadOnly property \`\\"toleranceFactorForIntranetIngress\\": 2\`, cannot be sent in the request.", "params": Array [ "toleranceFactorForIntranetIngress", 2, ], - "path": "properties/settings/toleranceFactorForIntranetIngress", + "path": "$/properties/settings/toleranceFactorForIntranetIngress", "position": Object { "column": 54, "line": 541, @@ -5249,13 +5427,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Overall egress threshold (in Gbps).", "directives": Object {}, - "jsonPath": "$.properties.settings.overallEgressThresholdInGbps", + "jsonPath": "$['properties']['settings']['overallEgressThresholdInGbps']", "message": "ReadOnly property \`\\"overallEgressThresholdInGbps\\": 30\`, cannot be sent in the request.", "params": Array [ "overallEgressThresholdInGbps", 30, ], - "path": "properties/settings/overallEgressThresholdInGbps", + "path": "$/properties/settings/overallEgressThresholdInGbps", "position": Object { "column": 49, "line": 547, @@ -5275,13 +5453,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Default egress threshold (in Gbps).", "directives": Object {}, - "jsonPath": "$.properties.settings.defaultEgressThresholdInGbps", + "jsonPath": "$['properties']['settings']['defaultEgressThresholdInGbps']", "message": "ReadOnly property \`\\"defaultEgressThresholdInGbps\\": 3\`, cannot be sent in the request.", "params": Array [ "defaultEgressThresholdInGbps", 3, ], - "path": "properties/settings/defaultEgressThresholdInGbps", + "path": "$/properties/settings/defaultEgressThresholdInGbps", "position": Object { "column": 49, "line": 553, @@ -5301,13 +5479,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Minimum egress threshold (in Gbps).", "directives": Object {}, - "jsonPath": "$.properties.settings.minimumEgressThresholdInGbps", + "jsonPath": "$['properties']['settings']['minimumEgressThresholdInGbps']", "message": "ReadOnly property \`\\"minimumEgressThresholdInGbps\\": 0.0008\`, cannot be sent in the request.", "params": Array [ "minimumEgressThresholdInGbps", 0.0008, ], - "path": "properties/settings/minimumEgressThresholdInGbps", + "path": "$/properties/settings/minimumEgressThresholdInGbps", "position": Object { "column": 49, "line": 559, @@ -5327,13 +5505,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Tolerance factor for egress.", "directives": Object {}, - "jsonPath": "$.properties.settings.toleranceFactorForEgress", + "jsonPath": "$['properties']['settings']['toleranceFactorForEgress']", "message": "ReadOnly property \`\\"toleranceFactorForEgress\\": 2\`, cannot be sent in the request.", "params": Array [ "toleranceFactorForEgress", 2, ], - "path": "properties/settings/toleranceFactorForEgress", + "path": "$/properties/settings/toleranceFactorForEgress", "position": Object { "column": 45, "line": 565, @@ -5353,13 +5531,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Overall Intranet egress threshold (in Gbps).", "directives": Object {}, - "jsonPath": "$.properties.settings.overallIntranetEgressThresholdInGbps", + "jsonPath": "$['properties']['settings']['overallIntranetEgressThresholdInGbps']", "message": "ReadOnly property \`\\"overallIntranetEgressThresholdInGbps\\": 30\`, cannot be sent in the request.", "params": Array [ "overallIntranetEgressThresholdInGbps", 30, ], - "path": "properties/settings/overallIntranetEgressThresholdInGbps", + "path": "$/properties/settings/overallIntranetEgressThresholdInGbps", "position": Object { "column": 57, "line": 571, @@ -5379,13 +5557,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Default Intranet egress threshold (in Gbps).", "directives": Object {}, - "jsonPath": "$.properties.settings.defaultIntranetEgressThresholdInGbps", + "jsonPath": "$['properties']['settings']['defaultIntranetEgressThresholdInGbps']", "message": "ReadOnly property \`\\"defaultIntranetEgressThresholdInGbps\\": 3\`, cannot be sent in the request.", "params": Array [ "defaultIntranetEgressThresholdInGbps", 3, ], - "path": "properties/settings/defaultIntranetEgressThresholdInGbps", + "path": "$/properties/settings/defaultIntranetEgressThresholdInGbps", "position": Object { "column": 57, "line": 577, @@ -5405,13 +5583,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Minimum Intranet egress threshold (in Gbps).", "directives": Object {}, - "jsonPath": "$.properties.settings.minimumIntranetEgressThresholdInGbps", + "jsonPath": "$['properties']['settings']['minimumIntranetEgressThresholdInGbps']", "message": "ReadOnly property \`\\"minimumIntranetEgressThresholdInGbps\\": 0.0008\`, cannot be sent in the request.", "params": Array [ "minimumIntranetEgressThresholdInGbps", 0.0008, ], - "path": "properties/settings/minimumIntranetEgressThresholdInGbps", + "path": "$/properties/settings/minimumIntranetEgressThresholdInGbps", "position": Object { "column": 57, "line": 583, @@ -5431,13 +5609,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Tolerance factor for Intranet egress.", "directives": Object {}, - "jsonPath": "$.properties.settings.toleranceFactorForIntranetEgress", + "jsonPath": "$['properties']['settings']['toleranceFactorForIntranetEgress']", "message": "ReadOnly property \`\\"toleranceFactorForIntranetEgress\\": 2\`, cannot be sent in the request.", "params": Array [ "toleranceFactorForIntranetEgress", 2, ], - "path": "properties/settings/toleranceFactorForIntranetEgress", + "path": "$/properties/settings/toleranceFactorForIntranetEgress", "position": Object { "column": 53, "line": 589, @@ -5457,13 +5635,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Overall total ingress threshold (in Gbps).", "directives": Object {}, - "jsonPath": "$.properties.settings.overallTotalIngressThresholdInGbps", + "jsonPath": "$['properties']['settings']['overallTotalIngressThresholdInGbps']", "message": "ReadOnly property \`\\"overallTotalIngressThresholdInGbps\\": 50\`, cannot be sent in the request.", "params": Array [ "overallTotalIngressThresholdInGbps", 50, ], - "path": "properties/settings/overallTotalIngressThresholdInGbps", + "path": "$/properties/settings/overallTotalIngressThresholdInGbps", "position": Object { "column": 55, "line": 595, @@ -5483,13 +5661,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Default total ingress threshold (in Gbps).", "directives": Object {}, - "jsonPath": "$.properties.settings.defaultTotalIngressThresholdInGbps", + "jsonPath": "$['properties']['settings']['defaultTotalIngressThresholdInGbps']", "message": "ReadOnly property \`\\"defaultTotalIngressThresholdInGbps\\": 5\`, cannot be sent in the request.", "params": Array [ "defaultTotalIngressThresholdInGbps", 5, ], - "path": "properties/settings/defaultTotalIngressThresholdInGbps", + "path": "$/properties/settings/defaultTotalIngressThresholdInGbps", "position": Object { "column": 55, "line": 601, @@ -5509,13 +5687,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Minimum total ingress threshold (in Gbps).", "directives": Object {}, - "jsonPath": "$.properties.settings.minimumTotalIngressThresholdInGbps", + "jsonPath": "$['properties']['settings']['minimumTotalIngressThresholdInGbps']", "message": "ReadOnly property \`\\"minimumTotalIngressThresholdInGbps\\": 0.0008\`, cannot be sent in the request.", "params": Array [ "minimumTotalIngressThresholdInGbps", 0.0008, ], - "path": "properties/settings/minimumTotalIngressThresholdInGbps", + "path": "$/properties/settings/minimumTotalIngressThresholdInGbps", "position": Object { "column": 55, "line": 607, @@ -5535,13 +5713,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Tolerance factor for total ingress.", "directives": Object {}, - "jsonPath": "$.properties.settings.toleranceFactorForTotalIngress", + "jsonPath": "$['properties']['settings']['toleranceFactorForTotalIngress']", "message": "ReadOnly property \`\\"toleranceFactorForTotalIngress\\": 2\`, cannot be sent in the request.", "params": Array [ "toleranceFactorForTotalIngress", 2, ], - "path": "properties/settings/toleranceFactorForTotalIngress", + "path": "$/properties/settings/toleranceFactorForTotalIngress", "position": Object { "column": 51, "line": 613, @@ -5561,13 +5739,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Overall total egress threshold (in Gbps).", "directives": Object {}, - "jsonPath": "$.properties.settings.overallTotalEgressThresholdInGbps", + "jsonPath": "$['properties']['settings']['overallTotalEgressThresholdInGbps']", "message": "ReadOnly property \`\\"overallTotalEgressThresholdInGbps\\": 50\`, cannot be sent in the request.", "params": Array [ "overallTotalEgressThresholdInGbps", 50, ], - "path": "properties/settings/overallTotalEgressThresholdInGbps", + "path": "$/properties/settings/overallTotalEgressThresholdInGbps", "position": Object { "column": 54, "line": 619, @@ -5587,13 +5765,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Default total egress threshold (in Gbps).", "directives": Object {}, - "jsonPath": "$.properties.settings.defaultTotalEgressThresholdInGbps", + "jsonPath": "$['properties']['settings']['defaultTotalEgressThresholdInGbps']", "message": "ReadOnly property \`\\"defaultTotalEgressThresholdInGbps\\": 5\`, cannot be sent in the request.", "params": Array [ "defaultTotalEgressThresholdInGbps", 5, ], - "path": "properties/settings/defaultTotalEgressThresholdInGbps", + "path": "$/properties/settings/defaultTotalEgressThresholdInGbps", "position": Object { "column": 54, "line": 625, @@ -5613,13 +5791,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Minimum total egress threshold (in Gbp", "directives": Object {}, - "jsonPath": "$.properties.settings.minimumTotalEgressThresholdInGbps", + "jsonPath": "$['properties']['settings']['minimumTotalEgressThresholdInGbps']", "message": "ReadOnly property \`\\"minimumTotalEgressThresholdInGbps\\": 0.0008\`, cannot be sent in the request.", "params": Array [ "minimumTotalEgressThresholdInGbps", 0.0008, ], - "path": "properties/settings/minimumTotalEgressThresholdInGbps", + "path": "$/properties/settings/minimumTotalEgressThresholdInGbps", "position": Object { "column": 54, "line": 631, @@ -5639,13 +5817,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Tolerance factor for total egress.", "directives": Object {}, - "jsonPath": "$.properties.settings.toleranceFactorForTotalEgress", + "jsonPath": "$['properties']['settings']['toleranceFactorForTotalEgress']", "message": "ReadOnly property \`\\"toleranceFactorForTotalEgress\\": 2\`, cannot be sent in the request.", "params": Array [ "toleranceFactorForTotalEgress", 2, ], - "path": "properties/settings/toleranceFactorForTotalEgress", + "path": "$/properties/settings/toleranceFactorForTotalEgress", "position": Object { "column": 50, "line": 637, @@ -5665,13 +5843,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource location.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "message": "ReadOnly property \`\\"location\\": \\"local\\"\`, cannot be sent in the request.", "params": Array [ "location", "local", ], - "path": "location", + "path": "$/location", "position": Object { "column": 29, "line": 392, @@ -5691,13 +5869,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Storage.Admin/farms\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Storage.Admin/farms", ], - "path": "type", + "path": "$/type", "position": Object { "column": 25, "line": 387, @@ -5717,13 +5895,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"3cf03497-c44a-4e51-a56f-3987d88c70af\\"\`, cannot be sent in the request.", "params": Array [ "name", "3cf03497-c44a-4e51-a56f-3987d88c70af", ], - "path": "name", + "path": "$/name", "position": Object { "column": 25, "line": 382, @@ -5743,13 +5921,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource ID.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af", ], - "path": "id", + "path": "$/id", "position": Object { "column": 23, "line": 377, @@ -5802,12 +5980,12 @@ Array [ "directives": Object { "RequiredPropertiesMissingInResourceModel": ".*", }, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "message": "Additional properties not allowed: properties", "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 28, "directives": Object { @@ -5845,13 +6023,13 @@ Array [ "code": "INVALID_TYPE", "description": "Directory tenant.", "directives": Object {}, - "jsonPath": "", + "jsonPath": "$", "message": "Expected type object but found type string", "params": Array [ "object", "string", ], - "path": "", + "path": "$", "position": Object { "column": 28, "line": 170, @@ -5886,12 +6064,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Definition for linking and unlinking plans to offers.", "directives": Object {}, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "message": "Additional properties not allowed: properties", "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 31, "line": 478, @@ -5911,12 +6089,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Definition for linking and unlinking plans to offers.", "directives": Object {}, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "message": "Additional properties not allowed: properties", "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 31, "line": 478, @@ -5943,13 +6121,13 @@ Array [ "code": "INVALID_TYPE", "description": "Offer delegation.", "directives": Object {}, - "jsonPath": "", + "jsonPath": "$", "message": "Expected type object but found type string", "params": Array [ "object", "string", ], - "path": "", + "path": "$", "position": Object { "column": 28, "line": 182, @@ -5984,12 +6162,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "The move subscriptions action definition", "directives": Object {}, - "jsonPath": "$.resources", + "jsonPath": "$['resources']", "message": "Missing required property: resources", "params": Array [ "resources", ], - "path": "resources", + "path": "$/resources", "position": Object { "column": 40, "line": 753, @@ -6009,12 +6187,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The move subscriptions action definition", "directives": Object {}, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "message": "Additional properties not allowed: properties", "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 40, "line": 753, @@ -6034,12 +6212,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "The move subscriptions action definition", "directives": Object {}, - "jsonPath": "$.resources", + "jsonPath": "$['resources']", "message": "Missing required property: resources", "params": Array [ "resources", ], - "path": "resources", + "path": "$/resources", "position": Object { "column": 40, "line": 753, @@ -6059,12 +6237,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The move subscriptions action definition", "directives": Object {}, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "message": "Additional properties not allowed: properties", "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 40, "line": 753, @@ -6084,12 +6262,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "The move subscriptions action definition", "directives": Object {}, - "jsonPath": "$.resources", + "jsonPath": "$['resources']", "message": "Missing required property: resources", "params": Array [ "resources", ], - "path": "resources", + "path": "$/resources", "position": Object { "column": 40, "line": 753, @@ -6109,12 +6287,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The move subscriptions action definition", "directives": Object {}, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "message": "Additional properties not allowed: properties", "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 40, "line": 753, @@ -6134,12 +6312,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "The move subscriptions action definition", "directives": Object {}, - "jsonPath": "$.resources", + "jsonPath": "$['resources']", "message": "Missing required property: resources", "params": Array [ "resources", ], - "path": "resources", + "path": "$/resources", "position": Object { "column": 40, "line": 753, @@ -6159,12 +6337,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The move subscriptions action definition", "directives": Object {}, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "message": "Additional properties not allowed: properties", "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 40, "line": 753, @@ -6184,12 +6362,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The check name availability action definition.", "directives": Object {}, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "message": "Additional properties not allowed: properties", "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 44, "line": 475, @@ -6211,12 +6389,12 @@ Array [ "directives": Object { "RequiredPropertiesMissingInResourceModel": ".*", }, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "message": "Additional properties not allowed: properties", "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 25, "directives": Object { @@ -6269,12 +6447,12 @@ Array [ "R3023": ".*", "RequiredPropertiesMissingInResourceModel": ".*", }, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "message": "Additional properties not allowed: properties", "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 29, "directives": Object { @@ -6336,12 +6514,12 @@ Array [ "code": "ENUM_CASE_MISMATCH", "description": "The type of resource, Microsoft.Kusto/clusters.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "Enum does not match case for: Microsoft.Kusto/Clusters", "params": Array [ "Microsoft.Kusto/Clusters", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1894, @@ -6361,12 +6539,12 @@ Array [ "code": "ENUM_CASE_MISMATCH", "description": "The type of resource, Microsoft.Kusto/clusters/databases.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "Enum does not match case for: Microsoft.Kusto/Clusters/Databases", "params": Array [ "Microsoft.Kusto/Clusters/Databases", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1918, @@ -6489,12 +6667,12 @@ Array [ "code": "ENUM_CASE_MISMATCH", "description": "The type of resource, Microsoft.Kusto/clusters.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "Enum does not match case for: Microsoft.Kusto/Clusters", "params": Array [ "Microsoft.Kusto/Clusters", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1894, @@ -6514,12 +6692,12 @@ Array [ "code": "ENUM_CASE_MISMATCH", "description": "The type of resource, Microsoft.Kusto/clusters/databases.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "Enum does not match case for: Microsoft.Kusto/Clusters/Databases", "params": Array [ "Microsoft.Kusto/Clusters/Databases", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1918, @@ -7508,12 +7686,12 @@ Array [ "details": Object { "code": "OBJECT_ADDITIONAL_PROPERTIES", "directives": Object {}, - "jsonPath": "$.jobSpecification.poolInfo.autoPoolSpecification.pool.targetDedicated", + "jsonPath": "$['jobSpecification']['poolInfo']['autoPoolSpecification']['pool']['targetDedicated']", "message": "Additional properties not allowed: targetDedicated", "params": Array [ "targetDedicated", ], - "path": "jobSpecification/poolInfo/autoPoolSpecification/pool/targetDedicated", + "path": "$/jobSpecification/poolInfo/autoPoolSpecification/pool/targetDedicated", "position": Object { "column": 26, "line": 11357, @@ -7644,12 +7822,12 @@ Array [ "details": Object { "code": "OBJECT_ADDITIONAL_PROPERTIES", "directives": Object {}, - "jsonPath": "$.poolInfo.autoPoolSpecification.pool.targetDedicated", + "jsonPath": "$['poolInfo']['autoPoolSpecification']['pool']['targetDedicated']", "message": "Additional properties not allowed: targetDedicated", "params": Array [ "targetDedicated", ], - "path": "poolInfo/autoPoolSpecification/pool/targetDedicated", + "path": "$/poolInfo/autoPoolSpecification/pool/targetDedicated", "position": Object { "column": 26, "line": 11357, @@ -7684,12 +7862,12 @@ Array [ "details": Object { "code": "OBJECT_ADDITIONAL_PROPERTIES", "directives": Object {}, - "jsonPath": "$.targetDedicated", + "jsonPath": "$['targetDedicated']", "message": "Additional properties not allowed: targetDedicated", "params": Array [ "targetDedicated", ], - "path": "targetDedicated", + "path": "$/targetDedicated", "position": Object { "column": 25, "line": 12681, @@ -7708,12 +7886,12 @@ Array [ "details": Object { "code": "OBJECT_ADDITIONAL_PROPERTIES", "directives": Object {}, - "jsonPath": "$.targetDedicated", + "jsonPath": "$['targetDedicated']", "message": "Additional properties not allowed: targetDedicated", "params": Array [ "targetDedicated", ], - "path": "targetDedicated", + "path": "$/targetDedicated", "position": Object { "column": 25, "line": 12681, @@ -7732,13 +7910,13 @@ Array [ "details": Object { "code": "OBJECT_ADDITIONAL_PROPERTIES", "directives": Object {}, - "jsonPath": "$.value[0].targetDedicated", + "jsonPath": "$['value'][0]['targetDedicated']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolList_Basic.json", "message": "Additional properties not allowed: targetDedicated", "params": Array [ "targetDedicated", ], - "path": "value/0/targetDedicated", + "path": "$/value/0/targetDedicated", "position": Object { "column": 18, "line": 12474, @@ -7757,13 +7935,13 @@ Array [ "details": Object { "code": "OBJECT_ADDITIONAL_PROPERTIES", "directives": Object {}, - "jsonPath": "$.value[0].currentDedicated", + "jsonPath": "$['value'][0]['currentDedicated']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/batch/data-plane/Microsoft.Batch/stable/2017-05-01.5.0/examples/PoolList_Basic.json", "message": "Additional properties not allowed: currentDedicated", "params": Array [ "currentDedicated", ], - "path": "value/0/currentDedicated", + "path": "$/value/0/currentDedicated", "position": Object { "column": 18, "line": 12474, @@ -7798,7 +7976,7 @@ Array [ "details": Object { "code": "OBJECT_ADDITIONAL_PROPERTIES", "directives": Object {}, - "jsonPath": "$.currentDedicated", + "jsonPath": "$['currentDedicated']", "jsonPosition": Object { "column": 15, "line": 10, @@ -7808,7 +7986,7 @@ Array [ "params": Array [ "currentDedicated", ], - "path": "currentDedicated", + "path": "$/currentDedicated", "position": Object { "column": 18, "line": 12474, @@ -7827,7 +8005,7 @@ Array [ "details": Object { "code": "OBJECT_ADDITIONAL_PROPERTIES", "directives": Object {}, - "jsonPath": "$.targetDedicated", + "jsonPath": "$['targetDedicated']", "jsonPosition": Object { "column": 15, "line": 10, @@ -7837,7 +8015,7 @@ Array [ "params": Array [ "targetDedicated", ], - "path": "targetDedicated", + "path": "$/targetDedicated", "position": Object { "column": 18, "line": 12474, @@ -7872,12 +8050,12 @@ Array [ "details": Object { "code": "OBJECT_ADDITIONAL_PROPERTIES", "directives": Object {}, - "jsonPath": "$.targetDedicated", + "jsonPath": "$['targetDedicated']", "message": "Additional properties not allowed: targetDedicated", "params": Array [ "targetDedicated", ], - "path": "targetDedicated", + "path": "$/targetDedicated", "position": Object { "column": 28, "line": 13901, @@ -9517,24 +9695,24 @@ Array [ "details": Object { "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "directives": Object {}, - "jsonPath": "$.value[0].dedicated.leavingPool", + "jsonPath": "$['value'][0]['dedicated']['leavingPool']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/AccountListPoolNodeCounts.json", "message": "Missing required property: leavingPool", "params": Array [ "leavingPool", ], - "path": "value/0/dedicated/leavingPool", + "path": "$/value/0/dedicated/leavingPool", "position": Object { "column": 19, "line": 15835, }, "similarJsonPaths": Array [ - "$.value[1].dedicated.leavingPool", - "$.value[2].dedicated.leavingPool", + "$['value'][1]['dedicated']['leavingPool']", + "$['value'][2]['dedicated']['leavingPool']", ], "similarPaths": Array [ - "value/1/dedicated/leavingPool", - "value/2/dedicated/leavingPool", + "$/value/1/dedicated/leavingPool", + "$/value/2/dedicated/leavingPool", ], "title": "#/definitions/NodeCounts", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/BatchService.json", @@ -9550,24 +9728,24 @@ Array [ "details": Object { "code": "OBJECT_ADDITIONAL_PROPERTIES", "directives": Object {}, - "jsonPath": "$.value[0].dedicated.leavingpool", + "jsonPath": "$['value'][0]['dedicated']['leavingpool']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/AccountListPoolNodeCounts.json", "message": "Additional properties not allowed: leavingpool", "params": Array [ "leavingpool", ], - "path": "value/0/dedicated/leavingpool", + "path": "$/value/0/dedicated/leavingpool", "position": Object { "column": 19, "line": 15835, }, "similarJsonPaths": Array [ - "$.value[1].dedicated.leavingpool", - "$.value[2].dedicated.leavingpool", + "$['value'][1]['dedicated']['leavingpool']", + "$['value'][2]['dedicated']['leavingpool']", ], "similarPaths": Array [ - "value/1/dedicated/leavingpool", - "value/2/dedicated/leavingpool", + "$/value/1/dedicated/leavingpool", + "$/value/2/dedicated/leavingpool", ], "title": "#/definitions/NodeCounts", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/BatchService.json", @@ -9583,24 +9761,24 @@ Array [ "details": Object { "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "directives": Object {}, - "jsonPath": "$.value[0].lowPriority.leavingPool", + "jsonPath": "$['value'][0]['lowPriority']['leavingPool']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/AccountListPoolNodeCounts.json", "message": "Missing required property: leavingPool", "params": Array [ "leavingPool", ], - "path": "value/0/lowPriority/leavingPool", + "path": "$/value/0/lowPriority/leavingPool", "position": Object { "column": 19, "line": 15835, }, "similarJsonPaths": Array [ - "$.value[1].lowPriority.leavingPool", - "$.value[2].lowPriority.leavingPool", + "$['value'][1]['lowPriority']['leavingPool']", + "$['value'][2]['lowPriority']['leavingPool']", ], "similarPaths": Array [ - "value/1/lowPriority/leavingPool", - "value/2/lowPriority/leavingPool", + "$/value/1/lowPriority/leavingPool", + "$/value/2/lowPriority/leavingPool", ], "title": "#/definitions/NodeCounts", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/BatchService.json", @@ -9616,24 +9794,24 @@ Array [ "details": Object { "code": "OBJECT_ADDITIONAL_PROPERTIES", "directives": Object {}, - "jsonPath": "$.value[0].lowPriority.leavingpool", + "jsonPath": "$['value'][0]['lowPriority']['leavingpool']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/examples/AccountListPoolNodeCounts.json", "message": "Additional properties not allowed: leavingpool", "params": Array [ "leavingpool", ], - "path": "value/0/lowPriority/leavingpool", + "path": "$/value/0/lowPriority/leavingpool", "position": Object { "column": 19, "line": 15835, }, "similarJsonPaths": Array [ - "$.value[1].lowPriority.leavingpool", - "$.value[2].lowPriority.leavingpool", + "$['value'][1]['lowPriority']['leavingpool']", + "$['value'][2]['lowPriority']['leavingpool']", ], "similarPaths": Array [ - "value/1/lowPriority/leavingpool", - "value/2/lowPriority/leavingpool", + "$/value/1/lowPriority/leavingpool", + "$/value/2/lowPriority/leavingpool", ], "title": "#/definitions/NodeCounts", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/batch/data-plane/Microsoft.Batch/stable/2018-03-01.6.1/BatchService.json", @@ -12267,13 +12445,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Is OMS bootstrapped billing profile.", "directives": Object {}, - "jsonPath": "$.properties.isClassic", + "jsonPath": "$['properties']['isClassic']", "message": "ReadOnly property \`\\"isClassic\\": false\`, cannot be sent in the request.", "params": Array [ "isClassic", false, ], - "path": "properties/isClassic", + "path": "$/properties/isClassic", "position": Object { "column": 22, "line": 4083, @@ -12293,13 +12471,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Id.", "directives": Object {}, - "jsonPath": "$.billingProfiles[0].id", + "jsonPath": "$['billingProfiles'][0]['id']", "message": "ReadOnly property \`\\"id\\": \\"/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billingProfiles/11000000-0000-0000-0000-000000000000\\"\`, cannot be sent in the request.", "params": Array [ "id", "/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billingProfiles/11000000-0000-0000-0000-000000000000", ], - "path": "billingProfiles/0/id", + "path": "$/billingProfiles/0/id", "position": Object { "column": 15, "line": 4291, @@ -12319,13 +12497,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name.", "directives": Object {}, - "jsonPath": "$.billingProfiles[0].name", + "jsonPath": "$['billingProfiles'][0]['name']", "message": "ReadOnly property \`\\"name\\": \\"11000000-0000-0000-0000-000000000000\\"\`, cannot be sent in the request.", "params": Array [ "name", "11000000-0000-0000-0000-000000000000", ], - "path": "billingProfiles/0/name", + "path": "$/billingProfiles/0/name", "position": Object { "column": 17, "line": 4296, @@ -12345,13 +12523,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type.", "directives": Object {}, - "jsonPath": "$.billingProfiles[0].type", + "jsonPath": "$['billingProfiles'][0]['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Billing/billingProfiles\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Billing/billingProfiles", ], - "path": "billingProfiles/0/type", + "path": "$/billingProfiles/0/type", "position": Object { "column": 17, "line": 4301, @@ -12371,13 +12549,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The currency associated with the billing profile.", "directives": Object {}, - "jsonPath": "$.billingProfiles[0].properties.currency", + "jsonPath": "$['billingProfiles'][0]['properties']['currency']", "message": "ReadOnly property \`\\"currency\\": \\"USD\\"\`, cannot be sent in the request.", "params": Array [ "currency", "USD", ], - "path": "billingProfiles/0/properties/currency", + "path": "$/billingProfiles/0/properties/currency", "position": Object { "column": 21, "line": 4093, @@ -12397,13 +12575,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The sku id.", "directives": Object {}, - "jsonPath": "$.billingProfiles[0].properties.enabledAzureSKUs.enabledAzureSKUs[0].skuId", + "jsonPath": "$['billingProfiles'][0]['properties']['enabledAzureSKUs']['enabledAzureSKUs'][0]['skuId']", "message": "ReadOnly property \`\\"skuId\\": \\"0001\\"\`, cannot be sent in the request.", "params": Array [ "skuId", "0001", ], - "path": "billingProfiles/0/properties/enabledAzureSKUs/enabledAzureSKUs/0/skuId", + "path": "$/billingProfiles/0/properties/enabledAzureSKUs/enabledAzureSKUs/0/skuId", "position": Object { "column": 18, "line": 4212, @@ -12423,13 +12601,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The sku description.", "directives": Object {}, - "jsonPath": "$.billingProfiles[0].properties.enabledAzureSKUs.enabledAzureSKUs[0].skuDescription", + "jsonPath": "$['billingProfiles'][0]['properties']['enabledAzureSKUs']['enabledAzureSKUs'][0]['skuDescription']", "message": "ReadOnly property \`\\"skuDescription\\": \\"Microsoft Azure Dev/Test\\"\`, cannot be sent in the request.", "params": Array [ "skuDescription", "Microsoft Azure Dev/Test", ], - "path": "billingProfiles/0/properties/enabledAzureSKUs/enabledAzureSKUs/0/skuDescription", + "path": "$/billingProfiles/0/properties/enabledAzureSKUs/enabledAzureSKUs/0/skuDescription", "position": Object { "column": 27, "line": 4217, @@ -12449,13 +12627,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The sku id.", "directives": Object {}, - "jsonPath": "$.billingProfiles[0].properties.enabledAzureSKUs[1].skuId", + "jsonPath": "$['billingProfiles'][0]['properties']['enabledAzureSKUs'][1]['skuId']", "message": "ReadOnly property \`\\"skuId\\": \\"0002\\"\`, cannot be sent in the request.", "params": Array [ "skuId", "0002", ], - "path": "billingProfiles/0/properties/enabledAzureSKUs/1/skuId", + "path": "$/billingProfiles/0/properties/enabledAzureSKUs/1/skuId", "position": Object { "column": 18, "line": 4212, @@ -12475,13 +12653,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The sku description.", "directives": Object {}, - "jsonPath": "$.billingProfiles[0].properties.enabledAzureSKUs[1].skuDescription", + "jsonPath": "$['billingProfiles'][0]['properties']['enabledAzureSKUs'][1]['skuDescription']", "message": "ReadOnly property \`\\"skuDescription\\": \\"Microsoft Azure Standard\\"\`, cannot be sent in the request.", "params": Array [ "skuDescription", "Microsoft Azure Standard", ], - "path": "billingProfiles/0/properties/enabledAzureSKUs/1/skuDescription", + "path": "$/billingProfiles/0/properties/enabledAzureSKUs/1/skuDescription", "position": Object { "column": 27, "line": 4217, @@ -12501,13 +12679,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Is OMS bootstrapped billing profile.", "directives": Object {}, - "jsonPath": "$.billingProfiles[0].properties.isClassic", + "jsonPath": "$['billingProfiles'][0]['properties']['isClassic']", "message": "ReadOnly property \`\\"isClassic\\": false\`, cannot be sent in the request.", "params": Array [ "isClassic", false, ], - "path": "billingProfiles/0/properties/isClassic", + "path": "$/billingProfiles/0/properties/isClassic", "position": Object { "column": 22, "line": 4083, @@ -12527,13 +12705,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Invoice day.", "directives": Object {}, - "jsonPath": "$.billingProfiles[0].properties.invoiceDay", + "jsonPath": "$['billingProfiles'][0]['properties']['invoiceDay']", "message": "ReadOnly property \`\\"invoiceDay\\": 5\`, cannot be sent in the request.", "params": Array [ "invoiceDay", 5, ], - "path": "billingProfiles/0/properties/invoiceDay", + "path": "$/billingProfiles/0/properties/invoiceDay", "position": Object { "column": 23, "line": 4088, @@ -12553,13 +12731,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "If the billing profile is opted in to receive invoices via email.", "directives": Object {}, - "jsonPath": "$.billingProfiles[0].properties.invoiceEmailOptIn", + "jsonPath": "$['billingProfiles'][0]['properties']['invoiceEmailOptIn']", "message": "ReadOnly property \`\\"invoiceEmailOptIn\\": true\`, cannot be sent in the request.", "params": Array [ "invoiceEmailOptIn", true, ], - "path": "billingProfiles/0/properties/invoiceEmailOptIn", + "path": "$/billingProfiles/0/properties/invoiceEmailOptIn", "position": Object { "column": 30, "line": 4078, @@ -12579,12 +12757,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Request parameters to initiate transfer.", "directives": Object {}, - "jsonPath": "$.properties.billingProfileName", + "jsonPath": "$['properties']['billingProfileName']", "message": "Additional properties not allowed: billingProfileName", "params": Array [ "billingProfileName", ], - "path": "properties/billingProfileName", + "path": "$/properties/billingProfileName", "position": Object { "column": 35, "line": 3236, @@ -12604,12 +12782,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Request parameters to accept transfer.", "directives": Object {}, - "jsonPath": "$.properties.value", + "jsonPath": "$['properties']['value']", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "properties/value", + "path": "$/properties/value", "position": Object { "column": 33, "line": 3261, @@ -12629,13 +12807,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The role definition id", "directives": Object {}, - "jsonPath": "$.billingRoleDefinitionName", + "jsonPath": "$['billingRoleDefinitionName']", "message": "ReadOnly property \`\\"billingRoleDefinitionName\\": \\"10000000-aaaa-bbbb-cccc-100000000000\\"\`, cannot be sent in the request.", "params": Array [ "billingRoleDefinitionName", "10000000-aaaa-bbbb-cccc-100000000000", ], - "path": "billingRoleDefinitionName", + "path": "$/billingRoleDefinitionName", "position": Object { "column": 38, "line": 5106, @@ -12655,13 +12833,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The user's principal id that the role gets assigned to", "directives": Object {}, - "jsonPath": "$.principalId", + "jsonPath": "$['principalId']", "message": "ReadOnly property \`\\"principalId\\": \\"00000000-0000-0000-0000-000000000000\\"\`, cannot be sent in the request.", "params": Array [ "principalId", "00000000-0000-0000-0000-000000000000", ], - "path": "principalId", + "path": "$/principalId", "position": Object { "column": 24, "line": 5101, @@ -12697,13 +12875,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The role definition id", "directives": Object {}, - "jsonPath": "$.billingRoleDefinitionName", + "jsonPath": "$['billingRoleDefinitionName']", "message": "ReadOnly property \`\\"billingRoleDefinitionName\\": \\"10000000-aaaa-bbbb-cccc-100000000000\\"\`, cannot be sent in the request.", "params": Array [ "billingRoleDefinitionName", "10000000-aaaa-bbbb-cccc-100000000000", ], - "path": "billingRoleDefinitionName", + "path": "$/billingRoleDefinitionName", "position": Object { "column": 38, "line": 5106, @@ -12723,13 +12901,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The user's principal id that the role gets assigned to", "directives": Object {}, - "jsonPath": "$.principalId", + "jsonPath": "$['principalId']", "message": "ReadOnly property \`\\"principalId\\": \\"00000000-0000-0000-0000-000000000000\\"\`, cannot be sent in the request.", "params": Array [ "principalId", "00000000-0000-0000-0000-000000000000", ], - "path": "principalId", + "path": "$/principalId", "position": Object { "column": 24, "line": 5101, @@ -12749,13 +12927,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The role definition id", "directives": Object {}, - "jsonPath": "$.billingRoleDefinitionName", + "jsonPath": "$['billingRoleDefinitionName']", "message": "ReadOnly property \`\\"billingRoleDefinitionName\\": \\"10000000-aaaa-bbbb-cccc-100000000000\\"\`, cannot be sent in the request.", "params": Array [ "billingRoleDefinitionName", "10000000-aaaa-bbbb-cccc-100000000000", ], - "path": "billingRoleDefinitionName", + "path": "$/billingRoleDefinitionName", "position": Object { "column": 38, "line": 5106, @@ -12775,13 +12953,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The user's principal id that the role gets assigned to", "directives": Object {}, - "jsonPath": "$.principalId", + "jsonPath": "$['principalId']", "message": "ReadOnly property \`\\"principalId\\": \\"00000000-0000-0000-0000-000000000000\\"\`, cannot be sent in the request.", "params": Array [ "principalId", "00000000-0000-0000-0000-000000000000", ], - "path": "principalId", + "path": "$/principalId", "position": Object { "column": 24, "line": 5101, @@ -12810,12 +12988,12 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.properties.parameters.owners.value", + "jsonPath": "$['properties']['parameters']['owners']['value']", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "properties/parameters/owners/value", + "path": "$/properties/parameters/owners/value", "position": Object { "column": 27, "line": 342, @@ -12837,12 +13015,12 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.properties.parameters.costCenter.value", + "jsonPath": "$['properties']['parameters']['costCenter']['value']", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "properties/parameters/costCenter/value", + "path": "$/properties/parameters/costCenter/value", "position": Object { "column": 27, "line": 342, @@ -12864,12 +13042,12 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.properties.parameters.storageAccountType.value", + "jsonPath": "$['properties']['parameters']['storageAccountType']['value']", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "properties/parameters/storageAccountType/value", + "path": "$/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 342, @@ -12891,7 +13069,7 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.properties.parameters.owners.value", + "jsonPath": "$['properties']['parameters']['owners']['value']", "jsonPosition": Object { "column": 35, "line": 57, @@ -12901,7 +13079,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/owners/value", + "path": "$/properties/parameters/owners/value", "position": Object { "column": 27, "line": 342, @@ -12923,7 +13101,7 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.properties.parameters.costCenter.value", + "jsonPath": "$['properties']['parameters']['costCenter']['value']", "jsonPosition": Object { "column": 39, "line": 54, @@ -12933,7 +13111,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/costCenter/value", + "path": "$/properties/parameters/costCenter/value", "position": Object { "column": 27, "line": 342, @@ -12955,7 +13133,7 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.properties.parameters.storageAccountType.value", + "jsonPath": "$['properties']['parameters']['storageAccountType']['value']", "jsonPosition": Object { "column": 47, "line": 51, @@ -12965,7 +13143,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/storageAccountType/value", + "path": "$/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 342, @@ -12987,7 +13165,7 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.properties.parameters.owners.value", + "jsonPath": "$['properties']['parameters']['owners']['value']", "jsonPosition": Object { "column": 35, "line": 27, @@ -12997,7 +13175,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/owners/value", + "path": "$/properties/parameters/owners/value", "position": Object { "column": 27, "line": 342, @@ -13019,7 +13197,7 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.properties.parameters.costCenter.value", + "jsonPath": "$['properties']['parameters']['costCenter']['value']", "jsonPosition": Object { "column": 39, "line": 24, @@ -13029,7 +13207,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/costCenter/value", + "path": "$/properties/parameters/costCenter/value", "position": Object { "column": 27, "line": 342, @@ -13051,7 +13229,7 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.properties.parameters.storageAccountType.value", + "jsonPath": "$['properties']['parameters']['storageAccountType']['value']", "jsonPosition": Object { "column": 47, "line": 21, @@ -13061,7 +13239,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/storageAccountType/value", + "path": "$/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 342, @@ -13083,7 +13261,7 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.properties.parameters.owners.value", + "jsonPath": "$['properties']['parameters']['owners']['value']", "jsonPosition": Object { "column": 35, "line": 27, @@ -13093,7 +13271,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/owners/value", + "path": "$/properties/parameters/owners/value", "position": Object { "column": 27, "line": 342, @@ -13115,7 +13293,7 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.properties.parameters.costCenter.value", + "jsonPath": "$['properties']['parameters']['costCenter']['value']", "jsonPosition": Object { "column": 39, "line": 24, @@ -13125,7 +13303,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/costCenter/value", + "path": "$/properties/parameters/costCenter/value", "position": Object { "column": 27, "line": 342, @@ -13147,7 +13325,7 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.properties.parameters.storageAccountType.value", + "jsonPath": "$['properties']['parameters']['storageAccountType']['value']", "jsonPosition": Object { "column": 47, "line": 21, @@ -13157,7 +13335,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/storageAccountType/value", + "path": "$/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 342, @@ -13179,13 +13357,13 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.value[0].properties.parameters.storageAccountType.properties.parameters.storageAccountType.value", + "jsonPath": "$['value'][0]['properties']['parameters']['storageAccountType']['properties']['parameters']['storageAccountType']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/blueprint/resource-manager/Microsoft.Blueprint/preview/2017-11-11-preview/examples/BlueprintAssignment_List.json", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "value/0/properties/parameters/storageAccountType/properties/parameters/storageAccountType/value", + "path": "$/value/0/properties/parameters/storageAccountType/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 342, @@ -13207,13 +13385,13 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.value[0].properties.parameters.costCenter.properties.parameters.costCenter.value", + "jsonPath": "$['value'][0]['properties']['parameters']['costCenter']['properties']['parameters']['costCenter']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/blueprint/resource-manager/Microsoft.Blueprint/preview/2017-11-11-preview/examples/BlueprintAssignment_List.json", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "value/0/properties/parameters/costCenter/properties/parameters/costCenter/value", + "path": "$/value/0/properties/parameters/costCenter/properties/parameters/costCenter/value", "position": Object { "column": 27, "line": 342, @@ -13235,13 +13413,13 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.value[0].properties.parameters.owners.properties.parameters.owners.value", + "jsonPath": "$['value'][0]['properties']['parameters']['owners']['properties']['parameters']['owners']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/blueprint/resource-manager/Microsoft.Blueprint/preview/2017-11-11-preview/examples/BlueprintAssignment_List.json", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "value/0/properties/parameters/owners/properties/parameters/owners/value", + "path": "$/value/0/properties/parameters/owners/properties/parameters/owners/value", "position": Object { "column": 27, "line": 342, @@ -13268,12 +13446,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.storageAccountType.value", + "jsonPath": "$['properties']['parameters']['storageAccountType']['value']", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "properties/parameters/storageAccountType/value", + "path": "$/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 1013, @@ -13293,7 +13471,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.storageAccountType.value", + "jsonPath": "$['properties']['parameters']['storageAccountType']['value']", "jsonPosition": Object { "column": 47, "line": 106, @@ -13303,7 +13481,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/storageAccountType/value", + "path": "$/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 1013, @@ -13323,12 +13501,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.tagValue.value", + "jsonPath": "$['properties']['parameters']['tagValue']['value']", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "properties/parameters/tagValue/value", + "path": "$/properties/parameters/tagValue/value", "position": Object { "column": 27, "line": 1013, @@ -13348,12 +13526,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.tagName.value", + "jsonPath": "$['properties']['parameters']['tagName']['value']", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "properties/parameters/tagName/value", + "path": "$/properties/parameters/tagName/value", "position": Object { "column": 27, "line": 1013, @@ -13373,7 +13551,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.tagValue.value", + "jsonPath": "$['properties']['parameters']['tagValue']['value']", "jsonPosition": Object { "column": 35, "line": 28, @@ -13383,7 +13561,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/tagValue/value", + "path": "$/properties/parameters/tagValue/value", "position": Object { "column": 27, "line": 1013, @@ -13403,7 +13581,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.tagName.value", + "jsonPath": "$['properties']['parameters']['tagName']['value']", "jsonPosition": Object { "column": 34, "line": 27, @@ -13413,7 +13591,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/tagName/value", + "path": "$/properties/parameters/tagName/value", "position": Object { "column": 27, "line": 1013, @@ -13433,7 +13611,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.storageAccountType.value", + "jsonPath": "$['properties']['parameters']['storageAccountType']['value']", "jsonPosition": Object { "column": 47, "line": 55, @@ -13443,7 +13621,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/storageAccountType/value", + "path": "$/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 1013, @@ -13463,7 +13641,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.tagValue.value", + "jsonPath": "$['properties']['parameters']['tagValue']['value']", "jsonPosition": Object { "column": 35, "line": 17, @@ -13473,7 +13651,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/tagValue/value", + "path": "$/properties/parameters/tagValue/value", "position": Object { "column": 27, "line": 1013, @@ -13493,7 +13671,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.tagName.value", + "jsonPath": "$['properties']['parameters']['tagName']['value']", "jsonPosition": Object { "column": 34, "line": 16, @@ -13503,7 +13681,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/tagName/value", + "path": "$/properties/parameters/tagName/value", "position": Object { "column": 27, "line": 1013, @@ -13523,7 +13701,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.storageAccountType.value", + "jsonPath": "$['properties']['parameters']['storageAccountType']['value']", "jsonPosition": Object { "column": 47, "line": 55, @@ -13533,7 +13711,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/storageAccountType/value", + "path": "$/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 1013, @@ -13553,7 +13731,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.tagValue.value", + "jsonPath": "$['properties']['parameters']['tagValue']['value']", "jsonPosition": Object { "column": 35, "line": 17, @@ -13563,7 +13741,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/tagValue/value", + "path": "$/properties/parameters/tagValue/value", "position": Object { "column": 27, "line": 1013, @@ -13583,7 +13761,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.tagName.value", + "jsonPath": "$['properties']['parameters']['tagName']['value']", "jsonPosition": Object { "column": 34, "line": 16, @@ -13593,7 +13771,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/tagName/value", + "path": "$/properties/parameters/tagName/value", "position": Object { "column": 27, "line": 1013, @@ -13613,13 +13791,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.value[1].properties.parameters.tagName[1].properties.parameters.tagName.value", + "jsonPath": "$['value'][1]['properties']['parameters']['tagName'][1]['properties']['parameters']['tagName']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/blueprint/resource-manager/Microsoft.Blueprint/preview/2017-11-11-preview/examples/Artifact_List.json", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "value/1/properties/parameters/tagName/1/properties/parameters/tagName/value", + "path": "$/value/1/properties/parameters/tagName/1/properties/parameters/tagName/value", "position": Object { "column": 27, "line": 1013, @@ -13639,13 +13817,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.value[1].properties.parameters.tagValue[1].properties.parameters.tagValue.value", + "jsonPath": "$['value'][1]['properties']['parameters']['tagValue'][1]['properties']['parameters']['tagValue']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/blueprint/resource-manager/Microsoft.Blueprint/preview/2017-11-11-preview/examples/Artifact_List.json", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "value/1/properties/parameters/tagValue/1/properties/parameters/tagValue/value", + "path": "$/value/1/properties/parameters/tagValue/1/properties/parameters/tagValue/value", "position": Object { "column": 27, "line": 1013, @@ -13665,13 +13843,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.value[2].properties.parameters.storageAccountType[2].properties.parameters.storageAccountType.value", + "jsonPath": "$['value'][2]['properties']['parameters']['storageAccountType'][2]['properties']['parameters']['storageAccountType']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/blueprint/resource-manager/Microsoft.Blueprint/preview/2017-11-11-preview/examples/Artifact_List.json", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "value/2/properties/parameters/storageAccountType/2/properties/parameters/storageAccountType/value", + "path": "$/value/2/properties/parameters/storageAccountType/2/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 1013, @@ -13691,7 +13869,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.storageAccountType.value", + "jsonPath": "$['properties']['parameters']['storageAccountType']['value']", "jsonPosition": Object { "column": 47, "line": 56, @@ -13701,7 +13879,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/storageAccountType/value", + "path": "$/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 1013, @@ -13721,7 +13899,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.tagValue.value", + "jsonPath": "$['properties']['parameters']['tagValue']['value']", "jsonPosition": Object { "column": 35, "line": 18, @@ -13731,7 +13909,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/tagValue/value", + "path": "$/properties/parameters/tagValue/value", "position": Object { "column": 27, "line": 1013, @@ -13751,7 +13929,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.tagName.value", + "jsonPath": "$['properties']['parameters']['tagName']['value']", "jsonPosition": Object { "column": 34, "line": 17, @@ -13761,7 +13939,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/tagName/value", + "path": "$/properties/parameters/tagName/value", "position": Object { "column": 27, "line": 1013, @@ -13781,13 +13959,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.value[1].properties.parameters.tagName[1].properties.parameters.tagName.value", + "jsonPath": "$['value'][1]['properties']['parameters']['tagName'][1]['properties']['parameters']['tagName']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/blueprint/resource-manager/Microsoft.Blueprint/preview/2017-11-11-preview/examples/SealedArtifact_List.json", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "value/1/properties/parameters/tagName/1/properties/parameters/tagName/value", + "path": "$/value/1/properties/parameters/tagName/1/properties/parameters/tagName/value", "position": Object { "column": 27, "line": 1013, @@ -13807,13 +13985,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.value[1].properties.parameters.tagValue[1].properties.parameters.tagValue.value", + "jsonPath": "$['value'][1]['properties']['parameters']['tagValue'][1]['properties']['parameters']['tagValue']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/blueprint/resource-manager/Microsoft.Blueprint/preview/2017-11-11-preview/examples/SealedArtifact_List.json", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "value/1/properties/parameters/tagValue/1/properties/parameters/tagValue/value", + "path": "$/value/1/properties/parameters/tagValue/1/properties/parameters/tagValue/value", "position": Object { "column": 27, "line": 1013, @@ -13833,13 +14011,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.value[2].properties.parameters.storageAccountType[2].properties.parameters.storageAccountType.value", + "jsonPath": "$['value'][2]['properties']['parameters']['storageAccountType'][2]['properties']['parameters']['storageAccountType']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/blueprint/resource-manager/Microsoft.Blueprint/preview/2017-11-11-preview/examples/SealedArtifact_List.json", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "value/2/properties/parameters/storageAccountType/2/properties/parameters/storageAccountType/value", + "path": "$/value/2/properties/parameters/storageAccountType/2/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 1013, @@ -13872,12 +14050,12 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.properties.parameters.owners.value", + "jsonPath": "$['properties']['parameters']['owners']['value']", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "properties/parameters/owners/value", + "path": "$/properties/parameters/owners/value", "position": Object { "column": 27, "line": 402, @@ -13899,12 +14077,12 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.properties.parameters.costCenter.value", + "jsonPath": "$['properties']['parameters']['costCenter']['value']", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "properties/parameters/costCenter/value", + "path": "$/properties/parameters/costCenter/value", "position": Object { "column": 27, "line": 402, @@ -13926,12 +14104,12 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.properties.parameters.storageAccountType.value", + "jsonPath": "$['properties']['parameters']['storageAccountType']['value']", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "properties/parameters/storageAccountType/value", + "path": "$/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 402, @@ -13953,7 +14131,7 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.properties.parameters.owners.value", + "jsonPath": "$['properties']['parameters']['owners']['value']", "jsonPosition": Object { "column": 35, "line": 57, @@ -13963,7 +14141,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/owners/value", + "path": "$/properties/parameters/owners/value", "position": Object { "column": 27, "line": 402, @@ -13985,7 +14163,7 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.properties.parameters.costCenter.value", + "jsonPath": "$['properties']['parameters']['costCenter']['value']", "jsonPosition": Object { "column": 39, "line": 54, @@ -13995,7 +14173,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/costCenter/value", + "path": "$/properties/parameters/costCenter/value", "position": Object { "column": 27, "line": 402, @@ -14017,7 +14195,7 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.properties.parameters.storageAccountType.value", + "jsonPath": "$['properties']['parameters']['storageAccountType']['value']", "jsonPosition": Object { "column": 47, "line": 51, @@ -14027,7 +14205,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/storageAccountType/value", + "path": "$/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 402, @@ -14049,7 +14227,7 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.properties.parameters.owners.value", + "jsonPath": "$['properties']['parameters']['owners']['value']", "jsonPosition": Object { "column": 35, "line": 27, @@ -14059,7 +14237,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/owners/value", + "path": "$/properties/parameters/owners/value", "position": Object { "column": 27, "line": 402, @@ -14081,7 +14259,7 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.properties.parameters.costCenter.value", + "jsonPath": "$['properties']['parameters']['costCenter']['value']", "jsonPosition": Object { "column": 39, "line": 24, @@ -14091,7 +14269,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/costCenter/value", + "path": "$/properties/parameters/costCenter/value", "position": Object { "column": 27, "line": 402, @@ -14113,7 +14291,7 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.properties.parameters.storageAccountType.value", + "jsonPath": "$['properties']['parameters']['storageAccountType']['value']", "jsonPosition": Object { "column": 47, "line": 21, @@ -14123,7 +14301,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/storageAccountType/value", + "path": "$/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 402, @@ -14145,7 +14323,7 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.properties.parameters.owners.value", + "jsonPath": "$['properties']['parameters']['owners']['value']", "jsonPosition": Object { "column": 35, "line": 27, @@ -14155,7 +14333,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/owners/value", + "path": "$/properties/parameters/owners/value", "position": Object { "column": 27, "line": 402, @@ -14177,7 +14355,7 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.properties.parameters.costCenter.value", + "jsonPath": "$['properties']['parameters']['costCenter']['value']", "jsonPosition": Object { "column": 39, "line": 24, @@ -14187,7 +14365,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/costCenter/value", + "path": "$/properties/parameters/costCenter/value", "position": Object { "column": 27, "line": 402, @@ -14209,7 +14387,7 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.properties.parameters.storageAccountType.value", + "jsonPath": "$['properties']['parameters']['storageAccountType']['value']", "jsonPosition": Object { "column": 47, "line": 21, @@ -14219,7 +14397,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/storageAccountType/value", + "path": "$/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 402, @@ -14241,13 +14419,13 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.value[0].properties.parameters.storageAccountType.properties.parameters.storageAccountType.value", + "jsonPath": "$['value'][0]['properties']['parameters']['storageAccountType']['properties']['parameters']['storageAccountType']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/blueprint/resource-manager/Microsoft.Blueprint/preview/2018-11-01-preview/examples/BlueprintAssignment_List.json", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "value/0/properties/parameters/storageAccountType/properties/parameters/storageAccountType/value", + "path": "$/value/0/properties/parameters/storageAccountType/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 402, @@ -14269,13 +14447,13 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.value[0].properties.parameters.costCenter.properties.parameters.costCenter.value", + "jsonPath": "$['value'][0]['properties']['parameters']['costCenter']['properties']['parameters']['costCenter']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/blueprint/resource-manager/Microsoft.Blueprint/preview/2018-11-01-preview/examples/BlueprintAssignment_List.json", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "value/0/properties/parameters/costCenter/properties/parameters/costCenter/value", + "path": "$/value/0/properties/parameters/costCenter/properties/parameters/costCenter/value", "position": Object { "column": 27, "line": 402, @@ -14297,13 +14475,13 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.value[0].properties.parameters.owners.properties.parameters.owners.value", + "jsonPath": "$['value'][0]['properties']['parameters']['owners']['properties']['parameters']['owners']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/blueprint/resource-manager/Microsoft.Blueprint/preview/2018-11-01-preview/examples/BlueprintAssignment_List.json", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "value/0/properties/parameters/owners/properties/parameters/owners/value", + "path": "$/value/0/properties/parameters/owners/properties/parameters/owners/value", "position": Object { "column": 27, "line": 402, @@ -14330,12 +14508,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.storageAccountType.value", + "jsonPath": "$['properties']['parameters']['storageAccountType']['value']", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "properties/parameters/storageAccountType/value", + "path": "$/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 1065, @@ -14355,7 +14533,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.storageAccountType.value", + "jsonPath": "$['properties']['parameters']['storageAccountType']['value']", "jsonPosition": Object { "column": 47, "line": 105, @@ -14365,7 +14543,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/storageAccountType/value", + "path": "$/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 1065, @@ -14385,12 +14563,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.tagValue.value", + "jsonPath": "$['properties']['parameters']['tagValue']['value']", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "properties/parameters/tagValue/value", + "path": "$/properties/parameters/tagValue/value", "position": Object { "column": 27, "line": 1065, @@ -14410,12 +14588,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.tagName.value", + "jsonPath": "$['properties']['parameters']['tagName']['value']", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "properties/parameters/tagName/value", + "path": "$/properties/parameters/tagName/value", "position": Object { "column": 27, "line": 1065, @@ -14435,7 +14613,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.tagValue.value", + "jsonPath": "$['properties']['parameters']['tagValue']['value']", "jsonPosition": Object { "column": 35, "line": 27, @@ -14445,7 +14623,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/tagValue/value", + "path": "$/properties/parameters/tagValue/value", "position": Object { "column": 27, "line": 1065, @@ -14465,7 +14643,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.tagName.value", + "jsonPath": "$['properties']['parameters']['tagName']['value']", "jsonPosition": Object { "column": 34, "line": 26, @@ -14475,7 +14653,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/tagName/value", + "path": "$/properties/parameters/tagName/value", "position": Object { "column": 27, "line": 1065, @@ -14495,12 +14673,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.storageAccountType.value", + "jsonPath": "$['properties']['parameters']['storageAccountType']['value']", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "properties/parameters/storageAccountType/value", + "path": "$/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 1065, @@ -14520,7 +14698,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.storageAccountType.value", + "jsonPath": "$['properties']['parameters']['storageAccountType']['value']", "jsonPosition": Object { "column": 47, "line": 105, @@ -14530,7 +14708,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/storageAccountType/value", + "path": "$/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 1065, @@ -14550,12 +14728,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.tagValue.value", + "jsonPath": "$['properties']['parameters']['tagValue']['value']", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "properties/parameters/tagValue/value", + "path": "$/properties/parameters/tagValue/value", "position": Object { "column": 27, "line": 1065, @@ -14575,12 +14753,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.tagName.value", + "jsonPath": "$['properties']['parameters']['tagName']['value']", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "properties/parameters/tagName/value", + "path": "$/properties/parameters/tagName/value", "position": Object { "column": 27, "line": 1065, @@ -14600,7 +14778,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.tagValue.value", + "jsonPath": "$['properties']['parameters']['tagValue']['value']", "jsonPosition": Object { "column": 35, "line": 27, @@ -14610,7 +14788,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/tagValue/value", + "path": "$/properties/parameters/tagValue/value", "position": Object { "column": 27, "line": 1065, @@ -14630,7 +14808,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.tagName.value", + "jsonPath": "$['properties']['parameters']['tagName']['value']", "jsonPosition": Object { "column": 34, "line": 26, @@ -14640,7 +14818,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/tagName/value", + "path": "$/properties/parameters/tagName/value", "position": Object { "column": 27, "line": 1065, @@ -14660,7 +14838,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.storageAccountType.value", + "jsonPath": "$['properties']['parameters']['storageAccountType']['value']", "jsonPosition": Object { "column": 47, "line": 54, @@ -14670,7 +14848,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/storageAccountType/value", + "path": "$/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 1065, @@ -14690,7 +14868,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.tagValue.value", + "jsonPath": "$['properties']['parameters']['tagValue']['value']", "jsonPosition": Object { "column": 35, "line": 16, @@ -14700,7 +14878,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/tagValue/value", + "path": "$/properties/parameters/tagValue/value", "position": Object { "column": 27, "line": 1065, @@ -14720,7 +14898,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.tagName.value", + "jsonPath": "$['properties']['parameters']['tagName']['value']", "jsonPosition": Object { "column": 34, "line": 15, @@ -14730,7 +14908,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/tagName/value", + "path": "$/properties/parameters/tagName/value", "position": Object { "column": 27, "line": 1065, @@ -14750,7 +14928,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.storageAccountType.value", + "jsonPath": "$['properties']['parameters']['storageAccountType']['value']", "jsonPosition": Object { "column": 47, "line": 54, @@ -14760,7 +14938,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/storageAccountType/value", + "path": "$/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 1065, @@ -14780,7 +14958,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.tagValue.value", + "jsonPath": "$['properties']['parameters']['tagValue']['value']", "jsonPosition": Object { "column": 35, "line": 16, @@ -14790,7 +14968,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/tagValue/value", + "path": "$/properties/parameters/tagValue/value", "position": Object { "column": 27, "line": 1065, @@ -14810,7 +14988,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.tagName.value", + "jsonPath": "$['properties']['parameters']['tagName']['value']", "jsonPosition": Object { "column": 34, "line": 15, @@ -14820,7 +14998,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/tagName/value", + "path": "$/properties/parameters/tagName/value", "position": Object { "column": 27, "line": 1065, @@ -14840,7 +15018,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.storageAccountType.value", + "jsonPath": "$['properties']['parameters']['storageAccountType']['value']", "jsonPosition": Object { "column": 47, "line": 54, @@ -14850,7 +15028,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/storageAccountType/value", + "path": "$/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 1065, @@ -14870,7 +15048,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.tagValue.value", + "jsonPath": "$['properties']['parameters']['tagValue']['value']", "jsonPosition": Object { "column": 35, "line": 16, @@ -14880,7 +15058,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/tagValue/value", + "path": "$/properties/parameters/tagValue/value", "position": Object { "column": 27, "line": 1065, @@ -14900,7 +15078,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.tagName.value", + "jsonPath": "$['properties']['parameters']['tagName']['value']", "jsonPosition": Object { "column": 34, "line": 15, @@ -14910,7 +15088,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/tagName/value", + "path": "$/properties/parameters/tagName/value", "position": Object { "column": 27, "line": 1065, @@ -14930,7 +15108,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.storageAccountType.value", + "jsonPath": "$['properties']['parameters']['storageAccountType']['value']", "jsonPosition": Object { "column": 47, "line": 54, @@ -14940,7 +15118,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/storageAccountType/value", + "path": "$/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 1065, @@ -14960,7 +15138,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.tagValue.value", + "jsonPath": "$['properties']['parameters']['tagValue']['value']", "jsonPosition": Object { "column": 35, "line": 16, @@ -14970,7 +15148,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/tagValue/value", + "path": "$/properties/parameters/tagValue/value", "position": Object { "column": 27, "line": 1065, @@ -14990,7 +15168,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.tagName.value", + "jsonPath": "$['properties']['parameters']['tagName']['value']", "jsonPosition": Object { "column": 34, "line": 15, @@ -15000,7 +15178,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/tagName/value", + "path": "$/properties/parameters/tagName/value", "position": Object { "column": 27, "line": 1065, @@ -15020,13 +15198,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.value[1].properties.parameters.tagName[1].properties.parameters.tagName.value", + "jsonPath": "$['value'][1]['properties']['parameters']['tagName'][1]['properties']['parameters']['tagName']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/blueprint/resource-manager/Microsoft.Blueprint/preview/2018-11-01-preview/examples/subscriptionBPDef/Artifact_List.json", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "value/1/properties/parameters/tagName/1/properties/parameters/tagName/value", + "path": "$/value/1/properties/parameters/tagName/1/properties/parameters/tagName/value", "position": Object { "column": 27, "line": 1065, @@ -15046,13 +15224,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.value[1].properties.parameters.tagValue[1].properties.parameters.tagValue.value", + "jsonPath": "$['value'][1]['properties']['parameters']['tagValue'][1]['properties']['parameters']['tagValue']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/blueprint/resource-manager/Microsoft.Blueprint/preview/2018-11-01-preview/examples/subscriptionBPDef/Artifact_List.json", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "value/1/properties/parameters/tagValue/1/properties/parameters/tagValue/value", + "path": "$/value/1/properties/parameters/tagValue/1/properties/parameters/tagValue/value", "position": Object { "column": 27, "line": 1065, @@ -15072,13 +15250,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.value[2].properties.parameters.storageAccountType[2].properties.parameters.storageAccountType.value", + "jsonPath": "$['value'][2]['properties']['parameters']['storageAccountType'][2]['properties']['parameters']['storageAccountType']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/blueprint/resource-manager/Microsoft.Blueprint/preview/2018-11-01-preview/examples/subscriptionBPDef/Artifact_List.json", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "value/2/properties/parameters/storageAccountType/2/properties/parameters/storageAccountType/value", + "path": "$/value/2/properties/parameters/storageAccountType/2/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 1065, @@ -15098,13 +15276,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.value[1].properties.parameters.tagName[1].properties.parameters.tagName.value", + "jsonPath": "$['value'][1]['properties']['parameters']['tagName'][1]['properties']['parameters']['tagName']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/blueprint/resource-manager/Microsoft.Blueprint/preview/2018-11-01-preview/examples/managementGroupBPDef/Artifact_List.json", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "value/1/properties/parameters/tagName/1/properties/parameters/tagName/value", + "path": "$/value/1/properties/parameters/tagName/1/properties/parameters/tagName/value", "position": Object { "column": 27, "line": 1065, @@ -15124,13 +15302,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.value[1].properties.parameters.tagValue[1].properties.parameters.tagValue.value", + "jsonPath": "$['value'][1]['properties']['parameters']['tagValue'][1]['properties']['parameters']['tagValue']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/blueprint/resource-manager/Microsoft.Blueprint/preview/2018-11-01-preview/examples/managementGroupBPDef/Artifact_List.json", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "value/1/properties/parameters/tagValue/1/properties/parameters/tagValue/value", + "path": "$/value/1/properties/parameters/tagValue/1/properties/parameters/tagValue/value", "position": Object { "column": 27, "line": 1065, @@ -15150,13 +15328,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.value[2].properties.parameters.storageAccountType[2].properties.parameters.storageAccountType.value", + "jsonPath": "$['value'][2]['properties']['parameters']['storageAccountType'][2]['properties']['parameters']['storageAccountType']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/blueprint/resource-manager/Microsoft.Blueprint/preview/2018-11-01-preview/examples/managementGroupBPDef/Artifact_List.json", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "value/2/properties/parameters/storageAccountType/2/properties/parameters/storageAccountType/value", + "path": "$/value/2/properties/parameters/storageAccountType/2/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 1065, @@ -15176,7 +15354,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.storageAccountType.value", + "jsonPath": "$['properties']['parameters']['storageAccountType']['value']", "jsonPosition": Object { "column": 47, "line": 55, @@ -15186,7 +15364,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/storageAccountType/value", + "path": "$/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 1065, @@ -15206,7 +15384,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.tagValue.value", + "jsonPath": "$['properties']['parameters']['tagValue']['value']", "jsonPosition": Object { "column": 35, "line": 17, @@ -15216,7 +15394,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/tagValue/value", + "path": "$/properties/parameters/tagValue/value", "position": Object { "column": 27, "line": 1065, @@ -15236,7 +15414,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.tagName.value", + "jsonPath": "$['properties']['parameters']['tagName']['value']", "jsonPosition": Object { "column": 34, "line": 16, @@ -15246,7 +15424,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/tagName/value", + "path": "$/properties/parameters/tagName/value", "position": Object { "column": 27, "line": 1065, @@ -15266,7 +15444,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.storageAccountType.value", + "jsonPath": "$['properties']['parameters']['storageAccountType']['value']", "jsonPosition": Object { "column": 47, "line": 55, @@ -15276,7 +15454,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/storageAccountType/value", + "path": "$/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 1065, @@ -15296,7 +15474,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.tagValue.value", + "jsonPath": "$['properties']['parameters']['tagValue']['value']", "jsonPosition": Object { "column": 35, "line": 17, @@ -15306,7 +15484,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/tagValue/value", + "path": "$/properties/parameters/tagValue/value", "position": Object { "column": 27, "line": 1065, @@ -15326,7 +15504,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.properties.parameters.tagName.value", + "jsonPath": "$['properties']['parameters']['tagName']['value']", "jsonPosition": Object { "column": 34, "line": 16, @@ -15336,7 +15514,7 @@ Array [ "params": Array [ "value", ], - "path": "properties/parameters/tagName/value", + "path": "$/properties/parameters/tagName/value", "position": Object { "column": 27, "line": 1065, @@ -15356,13 +15534,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.value[1].properties.parameters.tagName[1].properties.parameters.tagName.value", + "jsonPath": "$['value'][1]['properties']['parameters']['tagName'][1]['properties']['parameters']['tagName']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/blueprint/resource-manager/Microsoft.Blueprint/preview/2018-11-01-preview/examples/subscriptionBPDef/SealedArtifact_List.json", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "value/1/properties/parameters/tagName/1/properties/parameters/tagName/value", + "path": "$/value/1/properties/parameters/tagName/1/properties/parameters/tagName/value", "position": Object { "column": 27, "line": 1065, @@ -15382,13 +15560,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.value[1].properties.parameters.tagValue[1].properties.parameters.tagValue.value", + "jsonPath": "$['value'][1]['properties']['parameters']['tagValue'][1]['properties']['parameters']['tagValue']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/blueprint/resource-manager/Microsoft.Blueprint/preview/2018-11-01-preview/examples/subscriptionBPDef/SealedArtifact_List.json", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "value/1/properties/parameters/tagValue/1/properties/parameters/tagValue/value", + "path": "$/value/1/properties/parameters/tagValue/1/properties/parameters/tagValue/value", "position": Object { "column": 27, "line": 1065, @@ -15408,13 +15586,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.value[2].properties.parameters.storageAccountType[2].properties.parameters.storageAccountType.value", + "jsonPath": "$['value'][2]['properties']['parameters']['storageAccountType'][2]['properties']['parameters']['storageAccountType']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/blueprint/resource-manager/Microsoft.Blueprint/preview/2018-11-01-preview/examples/subscriptionBPDef/SealedArtifact_List.json", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "value/2/properties/parameters/storageAccountType/2/properties/parameters/storageAccountType/value", + "path": "$/value/2/properties/parameters/storageAccountType/2/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 1065, @@ -15434,13 +15612,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.value[1].properties.parameters.tagName[1].properties.parameters.tagName.value", + "jsonPath": "$['value'][1]['properties']['parameters']['tagName'][1]['properties']['parameters']['tagName']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/blueprint/resource-manager/Microsoft.Blueprint/preview/2018-11-01-preview/examples/managementGroupBPDef/SealedArtifact_List.json", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "value/1/properties/parameters/tagName/1/properties/parameters/tagName/value", + "path": "$/value/1/properties/parameters/tagName/1/properties/parameters/tagName/value", "position": Object { "column": 27, "line": 1065, @@ -15460,13 +15638,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.value[1].properties.parameters.tagValue[1].properties.parameters.tagValue.value", + "jsonPath": "$['value'][1]['properties']['parameters']['tagValue'][1]['properties']['parameters']['tagValue']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/blueprint/resource-manager/Microsoft.Blueprint/preview/2018-11-01-preview/examples/managementGroupBPDef/SealedArtifact_List.json", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "value/1/properties/parameters/tagValue/1/properties/parameters/tagValue/value", + "path": "$/value/1/properties/parameters/tagValue/1/properties/parameters/tagValue/value", "position": Object { "column": 27, "line": 1065, @@ -15486,13 +15664,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for ParameterValue.", "directives": Object {}, - "jsonPath": "$.value[2].properties.parameters.storageAccountType[2].properties.parameters.storageAccountType.value", + "jsonPath": "$['value'][2]['properties']['parameters']['storageAccountType'][2]['properties']['parameters']['storageAccountType']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/blueprint/resource-manager/Microsoft.Blueprint/preview/2018-11-01-preview/examples/managementGroupBPDef/SealedArtifact_List.json", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "value/2/properties/parameters/storageAccountType/2/properties/parameters/storageAccountType/value", + "path": "$/value/2/properties/parameters/storageAccountType/2/properties/parameters/storageAccountType/value", "position": Object { "column": 27, "line": 1065, @@ -15519,13 +15697,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Specifies the resource ID.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"someid\\"\`, cannot be sent in the request.", "params": Array [ "id", "someid", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1022, @@ -15545,13 +15723,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Specifies the type of the resource.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"sampletype\\"\`, cannot be sent in the request.", "params": Array [ "type", "sampletype", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1036, @@ -15571,13 +15749,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Specifies the name of the resource.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"samplename\\"\`, cannot be sent in the request.", "params": Array [ "name", "samplename", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1027, @@ -15597,13 +15775,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Specifies the resource ID.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"someid\\"\`, cannot be sent in the request.", "params": Array [ "id", "someid", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1022, @@ -15623,13 +15801,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Specifies the type of the resource.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"sampletype\\"\`, cannot be sent in the request.", "params": Array [ "type", "sampletype", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1036, @@ -15649,13 +15827,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Specifies the name of the resource.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"samplename\\"\`, cannot be sent in the request.", "params": Array [ "name", "samplename", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1027, @@ -15675,13 +15853,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Specifies the resource ID.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"someid\\"\`, cannot be sent in the request.", "params": Array [ "id", "someid", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1022, @@ -15701,13 +15879,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Specifies the type of the resource.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"sampletype\\"\`, cannot be sent in the request.", "params": Array [ "type", "sampletype", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1036, @@ -15727,13 +15905,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Specifies the name of the resource.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"samplename\\"\`, cannot be sent in the request.", "params": Array [ "name", "samplename", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1027, @@ -15753,13 +15931,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Specifies the name of the resource.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"The Name of the Connection Setting\\"\`, cannot be sent in the request.", "params": Array [ "name", "The Name of the Connection Setting", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1027, @@ -15779,13 +15957,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Specifies the resource ID.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"someid\\"\`, cannot be sent in the request.", "params": Array [ "id", "someid", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1022, @@ -15812,13 +15990,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Specifies the resource ID.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"someid\\"\`, cannot be sent in the request.", "params": Array [ "id", "someid", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1311, @@ -15838,13 +16016,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Specifies the type of the resource.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"sampletype\\"\`, cannot be sent in the request.", "params": Array [ "type", "sampletype", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1325, @@ -15864,13 +16042,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Specifies the name of the resource.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"samplename\\"\`, cannot be sent in the request.", "params": Array [ "name", "samplename", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1316, @@ -15890,13 +16068,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Specifies the resource ID.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"someid\\"\`, cannot be sent in the request.", "params": Array [ "id", "someid", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1311, @@ -15916,13 +16094,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Specifies the type of the resource.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"sampletype\\"\`, cannot be sent in the request.", "params": Array [ "type", "sampletype", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1325, @@ -15942,13 +16120,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Specifies the name of the resource.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"samplename\\"\`, cannot be sent in the request.", "params": Array [ "name", "samplename", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1316, @@ -15968,13 +16146,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Specifies the resource ID.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"someid\\"\`, cannot be sent in the request.", "params": Array [ "id", "someid", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1311, @@ -15994,13 +16172,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Specifies the type of the resource.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"sampletype\\"\`, cannot be sent in the request.", "params": Array [ "type", "sampletype", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1325, @@ -16020,13 +16198,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Specifies the name of the resource.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"samplename\\"\`, cannot be sent in the request.", "params": Array [ "name", "samplename", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1316, @@ -16046,13 +16224,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Specifies the name of the resource.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"The Name of the Connection Setting\\"\`, cannot be sent in the request.", "params": Array [ "name", "The Name of the Connection Setting", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1316, @@ -16072,13 +16250,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Specifies the resource ID.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"someid\\"\`, cannot be sent in the request.", "params": Array [ "id", "someid", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1311, @@ -16098,12 +16276,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A request to Bot Service Management to check availability of an Enterprise Channel name.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "Additional properties not allowed: type", "params": Array [ "type", ], - "path": "type", + "path": "$/type", "position": Object { "column": 54, "line": 2431, @@ -16123,13 +16301,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Specifies the resource ID.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"someid\\"\`, cannot be sent in the request.", "params": Array [ "id", "someid", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1311, @@ -16149,13 +16327,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Id of Enterprise Channel Node. This is generated by the Bot Framework.", "directives": Object {}, - "jsonPath": "$.properties.nodes[0].id", + "jsonPath": "$['properties']['nodes'][0]['id']", "message": "ReadOnly property \`\\"id\\": \\"00000000-0000-0000-0000-000000000000\\"\`, cannot be sent in the request.", "params": Array [ "id", "00000000-0000-0000-0000-000000000000", ], - "path": "properties/nodes/0/id", + "path": "$/properties/nodes/0/id", "position": Object { "column": 15, "line": 2513, @@ -16175,13 +16353,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Specifies the resource ID.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"someid\\"\`, cannot be sent in the request.", "params": Array [ "id", "someid", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1311, @@ -16220,7 +16398,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN profile is a logical grouping of endpoints that share the same settings, such as CDN provider and pricing tier.", "directives": Object {}, - "jsonPath": "$.value", + "jsonPath": "$['value']", "jsonPosition": Object { "column": 15, "line": 10, @@ -16230,7 +16408,7 @@ Array [ "params": Array [ "value", ], - "path": "value", + "path": "$/value", "position": Object { "column": 16, "line": 1911, @@ -16250,7 +16428,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "CDN profile is a logical grouping of endpoints that share the same settings, such as CDN provider and pricing tier.", "directives": Object {}, - "jsonPath": "$.sku", + "jsonPath": "$['sku']", "jsonPosition": Object { "column": 15, "line": 10, @@ -16260,7 +16438,7 @@ Array [ "params": Array [ "sku", ], - "path": "sku", + "path": "$/sku", "position": Object { "column": 16, "line": 1911, @@ -16280,7 +16458,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "CDN profile is a logical grouping of endpoints that share the same settings, such as CDN provider and pricing tier.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "jsonPosition": Object { "column": 15, "line": 10, @@ -16290,7 +16468,7 @@ Array [ "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 16, "line": 1911, @@ -16422,13 +16600,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The JSON object that contains the properties required to create an endpoint.", "directives": Object {}, - "jsonPath": "$.value[0].properties.customDomains", + "jsonPath": "$['value'][0]['properties']['customDomains']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cdn/resource-manager/Microsoft.Cdn/stable/2017-04-02/examples/Endpoints_ListByProfile.json", "message": "Additional properties not allowed: customDomains", "params": Array [ "customDomains", ], - "path": "value/0/properties/customDomains", + "path": "$/value/0/properties/customDomains", "position": Object { "column": 27, "line": 2029, @@ -16448,7 +16626,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The JSON object that contains the properties required to create an endpoint.", "directives": Object {}, - "jsonPath": "$.properties.customDomains", + "jsonPath": "$['properties']['customDomains']", "jsonPosition": Object { "column": 23, "line": 17, @@ -16458,7 +16636,7 @@ Array [ "params": Array [ "customDomains", ], - "path": "properties/customDomains", + "path": "$/properties/customDomains", "position": Object { "column": 27, "line": 2029, @@ -16494,7 +16672,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The JSON object that contains the properties required to create an endpoint.", "directives": Object {}, - "jsonPath": "$.properties.customDomains", + "jsonPath": "$['properties']['customDomains']", "jsonPosition": Object { "column": 23, "line": 32, @@ -16504,7 +16682,7 @@ Array [ "params": Array [ "customDomains", ], - "path": "properties/customDomains", + "path": "$/properties/customDomains", "position": Object { "column": 27, "line": 2029, @@ -16540,7 +16718,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The JSON object that contains the properties required to create an endpoint.", "directives": Object {}, - "jsonPath": "$.properties.customDomains", + "jsonPath": "$['properties']['customDomains']", "jsonPosition": Object { "column": 23, "line": 24, @@ -16550,7 +16728,7 @@ Array [ "params": Array [ "customDomains", ], - "path": "properties/customDomains", + "path": "$/properties/customDomains", "position": Object { "column": 27, "line": 2029, @@ -16634,7 +16812,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.hostName", + "jsonPath": "$['hostName']", "jsonPosition": Object { "column": 15, "line": 11, @@ -16644,7 +16822,7 @@ Array [ "params": Array [ "hostName", ], - "path": "hostName", + "path": "$/hostName", "position": Object { "column": 17, "line": 2014, @@ -16664,7 +16842,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.originHostHeader", + "jsonPath": "$['originHostHeader']", "jsonPosition": Object { "column": 15, "line": 11, @@ -16674,7 +16852,7 @@ Array [ "params": Array [ "originHostHeader", ], - "path": "originHostHeader", + "path": "$/originHostHeader", "position": Object { "column": 17, "line": 2014, @@ -16694,7 +16872,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.provisioningState", + "jsonPath": "$['provisioningState']", "jsonPosition": Object { "column": 15, "line": 11, @@ -16704,7 +16882,7 @@ Array [ "params": Array [ "provisioningState", ], - "path": "provisioningState", + "path": "$/provisioningState", "position": Object { "column": 17, "line": 2014, @@ -16724,7 +16902,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.resourceState", + "jsonPath": "$['resourceState']", "jsonPosition": Object { "column": 15, "line": 11, @@ -16734,7 +16912,7 @@ Array [ "params": Array [ "resourceState", ], - "path": "resourceState", + "path": "$/resourceState", "position": Object { "column": 17, "line": 2014, @@ -16754,7 +16932,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.isHttpAllowed", + "jsonPath": "$['isHttpAllowed']", "jsonPosition": Object { "column": 15, "line": 11, @@ -16764,7 +16942,7 @@ Array [ "params": Array [ "isHttpAllowed", ], - "path": "isHttpAllowed", + "path": "$/isHttpAllowed", "position": Object { "column": 17, "line": 2014, @@ -16784,7 +16962,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.isHttpsAllowed", + "jsonPath": "$['isHttpsAllowed']", "jsonPosition": Object { "column": 15, "line": 11, @@ -16794,7 +16972,7 @@ Array [ "params": Array [ "isHttpsAllowed", ], - "path": "isHttpsAllowed", + "path": "$/isHttpsAllowed", "position": Object { "column": 17, "line": 2014, @@ -16814,7 +16992,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.queryStringCachingBehavior", + "jsonPath": "$['queryStringCachingBehavior']", "jsonPosition": Object { "column": 15, "line": 11, @@ -16824,7 +17002,7 @@ Array [ "params": Array [ "queryStringCachingBehavior", ], - "path": "queryStringCachingBehavior", + "path": "$/queryStringCachingBehavior", "position": Object { "column": 17, "line": 2014, @@ -16844,7 +17022,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.originPath", + "jsonPath": "$['originPath']", "jsonPosition": Object { "column": 15, "line": 11, @@ -16854,7 +17032,7 @@ Array [ "params": Array [ "originPath", ], - "path": "originPath", + "path": "$/originPath", "position": Object { "column": 17, "line": 2014, @@ -16874,7 +17052,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.origins", + "jsonPath": "$['origins']", "jsonPosition": Object { "column": 15, "line": 11, @@ -16884,7 +17062,7 @@ Array [ "params": Array [ "origins", ], - "path": "origins", + "path": "$/origins", "position": Object { "column": 17, "line": 2014, @@ -16904,7 +17082,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.customDomains", + "jsonPath": "$['customDomains']", "jsonPosition": Object { "column": 15, "line": 11, @@ -16914,7 +17092,7 @@ Array [ "params": Array [ "customDomains", ], - "path": "customDomains", + "path": "$/customDomains", "position": Object { "column": 17, "line": 2014, @@ -16934,7 +17112,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.contentTypesToCompress", + "jsonPath": "$['contentTypesToCompress']", "jsonPosition": Object { "column": 15, "line": 11, @@ -16944,7 +17122,7 @@ Array [ "params": Array [ "contentTypesToCompress", ], - "path": "contentTypesToCompress", + "path": "$/contentTypesToCompress", "position": Object { "column": 17, "line": 2014, @@ -16964,7 +17142,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.isCompressionEnabled", + "jsonPath": "$['isCompressionEnabled']", "jsonPosition": Object { "column": 15, "line": 11, @@ -16974,7 +17152,7 @@ Array [ "params": Array [ "isCompressionEnabled", ], - "path": "isCompressionEnabled", + "path": "$/isCompressionEnabled", "position": Object { "column": 17, "line": 2014, @@ -16994,7 +17172,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.optimizationType", + "jsonPath": "$['optimizationType']", "jsonPosition": Object { "column": 15, "line": 11, @@ -17004,7 +17182,7 @@ Array [ "params": Array [ "optimizationType", ], - "path": "optimizationType", + "path": "$/optimizationType", "position": Object { "column": 17, "line": 2014, @@ -17024,7 +17202,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.probePath", + "jsonPath": "$['probePath']", "jsonPosition": Object { "column": 15, "line": 11, @@ -17034,7 +17212,7 @@ Array [ "params": Array [ "probePath", ], - "path": "probePath", + "path": "$/probePath", "position": Object { "column": 17, "line": 2014, @@ -17054,7 +17232,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.geoFilters", + "jsonPath": "$['geoFilters']", "jsonPosition": Object { "column": 15, "line": 11, @@ -17064,7 +17242,7 @@ Array [ "params": Array [ "geoFilters", ], - "path": "geoFilters", + "path": "$/geoFilters", "position": Object { "column": 17, "line": 2014, @@ -17084,7 +17262,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "jsonPosition": Object { "column": 15, "line": 11, @@ -17094,7 +17272,7 @@ Array [ "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 17, "line": 2014, @@ -17130,7 +17308,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.hostName", + "jsonPath": "$['hostName']", "jsonPosition": Object { "column": 15, "line": 11, @@ -17140,7 +17318,7 @@ Array [ "params": Array [ "hostName", ], - "path": "hostName", + "path": "$/hostName", "position": Object { "column": 17, "line": 2014, @@ -17160,7 +17338,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.originHostHeader", + "jsonPath": "$['originHostHeader']", "jsonPosition": Object { "column": 15, "line": 11, @@ -17170,7 +17348,7 @@ Array [ "params": Array [ "originHostHeader", ], - "path": "originHostHeader", + "path": "$/originHostHeader", "position": Object { "column": 17, "line": 2014, @@ -17190,7 +17368,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.provisioningState", + "jsonPath": "$['provisioningState']", "jsonPosition": Object { "column": 15, "line": 11, @@ -17200,7 +17378,7 @@ Array [ "params": Array [ "provisioningState", ], - "path": "provisioningState", + "path": "$/provisioningState", "position": Object { "column": 17, "line": 2014, @@ -17220,7 +17398,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.resourceState", + "jsonPath": "$['resourceState']", "jsonPosition": Object { "column": 15, "line": 11, @@ -17230,7 +17408,7 @@ Array [ "params": Array [ "resourceState", ], - "path": "resourceState", + "path": "$/resourceState", "position": Object { "column": 17, "line": 2014, @@ -17250,7 +17428,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.isHttpAllowed", + "jsonPath": "$['isHttpAllowed']", "jsonPosition": Object { "column": 15, "line": 11, @@ -17260,7 +17438,7 @@ Array [ "params": Array [ "isHttpAllowed", ], - "path": "isHttpAllowed", + "path": "$/isHttpAllowed", "position": Object { "column": 17, "line": 2014, @@ -17280,7 +17458,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.isHttpsAllowed", + "jsonPath": "$['isHttpsAllowed']", "jsonPosition": Object { "column": 15, "line": 11, @@ -17290,7 +17468,7 @@ Array [ "params": Array [ "isHttpsAllowed", ], - "path": "isHttpsAllowed", + "path": "$/isHttpsAllowed", "position": Object { "column": 17, "line": 2014, @@ -17310,7 +17488,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.queryStringCachingBehavior", + "jsonPath": "$['queryStringCachingBehavior']", "jsonPosition": Object { "column": 15, "line": 11, @@ -17320,7 +17498,7 @@ Array [ "params": Array [ "queryStringCachingBehavior", ], - "path": "queryStringCachingBehavior", + "path": "$/queryStringCachingBehavior", "position": Object { "column": 17, "line": 2014, @@ -17340,7 +17518,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.originPath", + "jsonPath": "$['originPath']", "jsonPosition": Object { "column": 15, "line": 11, @@ -17350,7 +17528,7 @@ Array [ "params": Array [ "originPath", ], - "path": "originPath", + "path": "$/originPath", "position": Object { "column": 17, "line": 2014, @@ -17370,7 +17548,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.origins", + "jsonPath": "$['origins']", "jsonPosition": Object { "column": 15, "line": 11, @@ -17380,7 +17558,7 @@ Array [ "params": Array [ "origins", ], - "path": "origins", + "path": "$/origins", "position": Object { "column": 17, "line": 2014, @@ -17400,7 +17578,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.customDomains", + "jsonPath": "$['customDomains']", "jsonPosition": Object { "column": 15, "line": 11, @@ -17410,7 +17588,7 @@ Array [ "params": Array [ "customDomains", ], - "path": "customDomains", + "path": "$/customDomains", "position": Object { "column": 17, "line": 2014, @@ -17430,7 +17608,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.contentTypesToCompress", + "jsonPath": "$['contentTypesToCompress']", "jsonPosition": Object { "column": 15, "line": 11, @@ -17440,7 +17618,7 @@ Array [ "params": Array [ "contentTypesToCompress", ], - "path": "contentTypesToCompress", + "path": "$/contentTypesToCompress", "position": Object { "column": 17, "line": 2014, @@ -17460,7 +17638,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.isCompressionEnabled", + "jsonPath": "$['isCompressionEnabled']", "jsonPosition": Object { "column": 15, "line": 11, @@ -17470,7 +17648,7 @@ Array [ "params": Array [ "isCompressionEnabled", ], - "path": "isCompressionEnabled", + "path": "$/isCompressionEnabled", "position": Object { "column": 17, "line": 2014, @@ -17490,7 +17668,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.optimizationType", + "jsonPath": "$['optimizationType']", "jsonPosition": Object { "column": 15, "line": 11, @@ -17500,7 +17678,7 @@ Array [ "params": Array [ "optimizationType", ], - "path": "optimizationType", + "path": "$/optimizationType", "position": Object { "column": 17, "line": 2014, @@ -17520,7 +17698,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.probePath", + "jsonPath": "$['probePath']", "jsonPosition": Object { "column": 15, "line": 11, @@ -17530,7 +17708,7 @@ Array [ "params": Array [ "probePath", ], - "path": "probePath", + "path": "$/probePath", "position": Object { "column": 17, "line": 2014, @@ -17550,7 +17728,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.geoFilters", + "jsonPath": "$['geoFilters']", "jsonPosition": Object { "column": 15, "line": 11, @@ -17560,7 +17738,7 @@ Array [ "params": Array [ "geoFilters", ], - "path": "geoFilters", + "path": "$/geoFilters", "position": Object { "column": 17, "line": 2014, @@ -17580,7 +17758,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "jsonPosition": Object { "column": 15, "line": 11, @@ -17590,7 +17768,7 @@ Array [ "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 17, "line": 2014, @@ -17674,12 +17852,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Input of the custom domain to be validated for DNS mapping.", "directives": Object {}, - "jsonPath": "$.hostName", + "jsonPath": "$['hostName']", "message": "Missing required property: hostName", "params": Array [ "hostName", ], - "path": "hostName", + "path": "$/hostName", "position": Object { "column": 34, "line": 2517, @@ -17699,12 +17877,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Input of the custom domain to be validated for DNS mapping.", "directives": Object {}, - "jsonPath": "$.hostname", + "jsonPath": "$['hostname']", "message": "Additional properties not allowed: hostname", "params": Array [ "hostname", ], - "path": "hostname", + "path": "$/hostname", "position": Object { "column": 34, "line": 2517, @@ -17756,13 +17934,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "CDN origin is the source of the content being delivered via CDN. When the edge nodes represented by an endpoint do not have the requested content cached, they attempt to fetch it from one or more of the configured origins.", "directives": Object {}, - "jsonPath": "$.value[0].location", + "jsonPath": "$['value'][0]['location']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cdn/resource-manager/Microsoft.Cdn/stable/2017-04-02/examples/Origins_ListByEndpoint.json", "message": "Missing required property: location", "params": Array [ "location", ], - "path": "value/0/location", + "path": "$/value/0/location", "position": Object { "column": 15, "line": 2276, @@ -17782,7 +17960,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "CDN origin is the source of the content being delivered via CDN. When the edge nodes represented by an endpoint do not have the requested content cached, they attempt to fetch it from one or more of the configured origins.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "jsonPosition": Object { "column": 15, "line": 12, @@ -17792,7 +17970,7 @@ Array [ "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 15, "line": 2276, @@ -17812,12 +17990,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Origin properties needed for origin creation or update.", "directives": Object {}, - "jsonPath": "$.httpPort", + "jsonPath": "$['httpPort']", "message": "Additional properties not allowed: httpPort", "params": Array [ "httpPort", ], - "path": "httpPort", + "path": "$/httpPort", "position": Object { "column": 31, "line": 2338, @@ -17837,12 +18015,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Origin properties needed for origin creation or update.", "directives": Object {}, - "jsonPath": "$.httpsPort", + "jsonPath": "$['httpsPort']", "message": "Additional properties not allowed: httpsPort", "params": Array [ "httpsPort", ], - "path": "httpsPort", + "path": "$/httpsPort", "position": Object { "column": 31, "line": 2338, @@ -17878,7 +18056,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "CDN origin is the source of the content being delivered via CDN. When the edge nodes represented by an endpoint do not have the requested content cached, they attempt to fetch it from one or more of the configured origins.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "jsonPosition": Object { "column": 15, "line": 16, @@ -17888,7 +18066,7 @@ Array [ "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 15, "line": 2276, @@ -17908,12 +18086,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The customDomain JSON object required for custom domain creation or update.", "directives": Object {}, - "jsonPath": "$.hostName", + "jsonPath": "$['hostName']", "message": "Additional properties not allowed: hostName", "params": Array [ "hostName", ], - "path": "hostName", + "path": "$/hostName", "position": Object { "column": 31, "line": 2478, @@ -18098,13 +18276,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The object that represents the operation.", "directives": Object {}, - "jsonPath": "$.value[0].display.description", + "jsonPath": "$['value'][0]['display']['description']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cdn/resource-manager/Microsoft.Cdn/stable/2017-04-02/examples/Operations_List.json", "message": "Additional properties not allowed: description", "params": Array [ "description", ], - "path": "value/0/display/description", + "path": "$/value/0/display/description", "position": Object { "column": 20, "line": 2687, @@ -18131,7 +18309,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN profile is a logical grouping of endpoints that share the same settings, such as CDN provider and pricing tier.", "directives": Object {}, - "jsonPath": "$.value", + "jsonPath": "$['value']", "jsonPosition": Object { "column": 15, "line": 10, @@ -18141,7 +18319,7 @@ Array [ "params": Array [ "value", ], - "path": "value", + "path": "$/value", "position": Object { "column": 16, "line": 1968, @@ -18161,7 +18339,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "CDN profile is a logical grouping of endpoints that share the same settings, such as CDN provider and pricing tier.", "directives": Object {}, - "jsonPath": "$.sku", + "jsonPath": "$['sku']", "jsonPosition": Object { "column": 15, "line": 10, @@ -18171,7 +18349,7 @@ Array [ "params": Array [ "sku", ], - "path": "sku", + "path": "$/sku", "position": Object { "column": 16, "line": 1968, @@ -18191,7 +18369,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "CDN profile is a logical grouping of endpoints that share the same settings, such as CDN provider and pricing tier.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "jsonPosition": Object { "column": 15, "line": 10, @@ -18201,7 +18379,7 @@ Array [ "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 16, "line": 1968, @@ -18333,13 +18511,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The JSON object that contains the properties required to create an endpoint.", "directives": Object {}, - "jsonPath": "$.value[0].properties.customDomains", + "jsonPath": "$['value'][0]['properties']['customDomains']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cdn/resource-manager/Microsoft.Cdn/stable/2017-10-12/examples/Endpoints_ListByProfile.json", "message": "Additional properties not allowed: customDomains", "params": Array [ "customDomains", ], - "path": "value/0/properties/customDomains", + "path": "$/value/0/properties/customDomains", "position": Object { "column": 27, "line": 2086, @@ -18359,7 +18537,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The JSON object that contains the properties required to create an endpoint.", "directives": Object {}, - "jsonPath": "$.properties.customDomains", + "jsonPath": "$['properties']['customDomains']", "jsonPosition": Object { "column": 23, "line": 17, @@ -18369,7 +18547,7 @@ Array [ "params": Array [ "customDomains", ], - "path": "properties/customDomains", + "path": "$/properties/customDomains", "position": Object { "column": 27, "line": 2086, @@ -18405,7 +18583,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The JSON object that contains the properties required to create an endpoint.", "directives": Object {}, - "jsonPath": "$.properties.customDomains", + "jsonPath": "$['properties']['customDomains']", "jsonPosition": Object { "column": 23, "line": 32, @@ -18415,7 +18593,7 @@ Array [ "params": Array [ "customDomains", ], - "path": "properties/customDomains", + "path": "$/properties/customDomains", "position": Object { "column": 27, "line": 2086, @@ -18451,7 +18629,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The JSON object that contains the properties required to create an endpoint.", "directives": Object {}, - "jsonPath": "$.properties.customDomains", + "jsonPath": "$['properties']['customDomains']", "jsonPosition": Object { "column": 23, "line": 24, @@ -18461,7 +18639,7 @@ Array [ "params": Array [ "customDomains", ], - "path": "properties/customDomains", + "path": "$/properties/customDomains", "position": Object { "column": 27, "line": 2086, @@ -18545,7 +18723,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.hostName", + "jsonPath": "$['hostName']", "jsonPosition": Object { "column": 15, "line": 11, @@ -18555,7 +18733,7 @@ Array [ "params": Array [ "hostName", ], - "path": "hostName", + "path": "$/hostName", "position": Object { "column": 17, "line": 2071, @@ -18575,7 +18753,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.originHostHeader", + "jsonPath": "$['originHostHeader']", "jsonPosition": Object { "column": 15, "line": 11, @@ -18585,7 +18763,7 @@ Array [ "params": Array [ "originHostHeader", ], - "path": "originHostHeader", + "path": "$/originHostHeader", "position": Object { "column": 17, "line": 2071, @@ -18605,7 +18783,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.provisioningState", + "jsonPath": "$['provisioningState']", "jsonPosition": Object { "column": 15, "line": 11, @@ -18615,7 +18793,7 @@ Array [ "params": Array [ "provisioningState", ], - "path": "provisioningState", + "path": "$/provisioningState", "position": Object { "column": 17, "line": 2071, @@ -18635,7 +18813,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.resourceState", + "jsonPath": "$['resourceState']", "jsonPosition": Object { "column": 15, "line": 11, @@ -18645,7 +18823,7 @@ Array [ "params": Array [ "resourceState", ], - "path": "resourceState", + "path": "$/resourceState", "position": Object { "column": 17, "line": 2071, @@ -18665,7 +18843,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.isHttpAllowed", + "jsonPath": "$['isHttpAllowed']", "jsonPosition": Object { "column": 15, "line": 11, @@ -18675,7 +18853,7 @@ Array [ "params": Array [ "isHttpAllowed", ], - "path": "isHttpAllowed", + "path": "$/isHttpAllowed", "position": Object { "column": 17, "line": 2071, @@ -18695,7 +18873,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.isHttpsAllowed", + "jsonPath": "$['isHttpsAllowed']", "jsonPosition": Object { "column": 15, "line": 11, @@ -18705,7 +18883,7 @@ Array [ "params": Array [ "isHttpsAllowed", ], - "path": "isHttpsAllowed", + "path": "$/isHttpsAllowed", "position": Object { "column": 17, "line": 2071, @@ -18725,7 +18903,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.queryStringCachingBehavior", + "jsonPath": "$['queryStringCachingBehavior']", "jsonPosition": Object { "column": 15, "line": 11, @@ -18735,7 +18913,7 @@ Array [ "params": Array [ "queryStringCachingBehavior", ], - "path": "queryStringCachingBehavior", + "path": "$/queryStringCachingBehavior", "position": Object { "column": 17, "line": 2071, @@ -18755,7 +18933,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.originPath", + "jsonPath": "$['originPath']", "jsonPosition": Object { "column": 15, "line": 11, @@ -18765,7 +18943,7 @@ Array [ "params": Array [ "originPath", ], - "path": "originPath", + "path": "$/originPath", "position": Object { "column": 17, "line": 2071, @@ -18785,7 +18963,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.origins", + "jsonPath": "$['origins']", "jsonPosition": Object { "column": 15, "line": 11, @@ -18795,7 +18973,7 @@ Array [ "params": Array [ "origins", ], - "path": "origins", + "path": "$/origins", "position": Object { "column": 17, "line": 2071, @@ -18815,7 +18993,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.customDomains", + "jsonPath": "$['customDomains']", "jsonPosition": Object { "column": 15, "line": 11, @@ -18825,7 +19003,7 @@ Array [ "params": Array [ "customDomains", ], - "path": "customDomains", + "path": "$/customDomains", "position": Object { "column": 17, "line": 2071, @@ -18845,7 +19023,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.contentTypesToCompress", + "jsonPath": "$['contentTypesToCompress']", "jsonPosition": Object { "column": 15, "line": 11, @@ -18855,7 +19033,7 @@ Array [ "params": Array [ "contentTypesToCompress", ], - "path": "contentTypesToCompress", + "path": "$/contentTypesToCompress", "position": Object { "column": 17, "line": 2071, @@ -18875,7 +19053,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.isCompressionEnabled", + "jsonPath": "$['isCompressionEnabled']", "jsonPosition": Object { "column": 15, "line": 11, @@ -18885,7 +19063,7 @@ Array [ "params": Array [ "isCompressionEnabled", ], - "path": "isCompressionEnabled", + "path": "$/isCompressionEnabled", "position": Object { "column": 17, "line": 2071, @@ -18905,7 +19083,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.optimizationType", + "jsonPath": "$['optimizationType']", "jsonPosition": Object { "column": 15, "line": 11, @@ -18915,7 +19093,7 @@ Array [ "params": Array [ "optimizationType", ], - "path": "optimizationType", + "path": "$/optimizationType", "position": Object { "column": 17, "line": 2071, @@ -18935,7 +19113,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.probePath", + "jsonPath": "$['probePath']", "jsonPosition": Object { "column": 15, "line": 11, @@ -18945,7 +19123,7 @@ Array [ "params": Array [ "probePath", ], - "path": "probePath", + "path": "$/probePath", "position": Object { "column": 17, "line": 2071, @@ -18965,7 +19143,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.geoFilters", + "jsonPath": "$['geoFilters']", "jsonPosition": Object { "column": 15, "line": 11, @@ -18975,7 +19153,7 @@ Array [ "params": Array [ "geoFilters", ], - "path": "geoFilters", + "path": "$/geoFilters", "position": Object { "column": 17, "line": 2071, @@ -18995,7 +19173,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "jsonPosition": Object { "column": 15, "line": 11, @@ -19005,7 +19183,7 @@ Array [ "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 17, "line": 2071, @@ -19041,7 +19219,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.hostName", + "jsonPath": "$['hostName']", "jsonPosition": Object { "column": 15, "line": 11, @@ -19051,7 +19229,7 @@ Array [ "params": Array [ "hostName", ], - "path": "hostName", + "path": "$/hostName", "position": Object { "column": 17, "line": 2071, @@ -19071,7 +19249,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.originHostHeader", + "jsonPath": "$['originHostHeader']", "jsonPosition": Object { "column": 15, "line": 11, @@ -19081,7 +19259,7 @@ Array [ "params": Array [ "originHostHeader", ], - "path": "originHostHeader", + "path": "$/originHostHeader", "position": Object { "column": 17, "line": 2071, @@ -19101,7 +19279,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.provisioningState", + "jsonPath": "$['provisioningState']", "jsonPosition": Object { "column": 15, "line": 11, @@ -19111,7 +19289,7 @@ Array [ "params": Array [ "provisioningState", ], - "path": "provisioningState", + "path": "$/provisioningState", "position": Object { "column": 17, "line": 2071, @@ -19131,7 +19309,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.resourceState", + "jsonPath": "$['resourceState']", "jsonPosition": Object { "column": 15, "line": 11, @@ -19141,7 +19319,7 @@ Array [ "params": Array [ "resourceState", ], - "path": "resourceState", + "path": "$/resourceState", "position": Object { "column": 17, "line": 2071, @@ -19161,7 +19339,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.isHttpAllowed", + "jsonPath": "$['isHttpAllowed']", "jsonPosition": Object { "column": 15, "line": 11, @@ -19171,7 +19349,7 @@ Array [ "params": Array [ "isHttpAllowed", ], - "path": "isHttpAllowed", + "path": "$/isHttpAllowed", "position": Object { "column": 17, "line": 2071, @@ -19191,7 +19369,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.isHttpsAllowed", + "jsonPath": "$['isHttpsAllowed']", "jsonPosition": Object { "column": 15, "line": 11, @@ -19201,7 +19379,7 @@ Array [ "params": Array [ "isHttpsAllowed", ], - "path": "isHttpsAllowed", + "path": "$/isHttpsAllowed", "position": Object { "column": 17, "line": 2071, @@ -19221,7 +19399,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.queryStringCachingBehavior", + "jsonPath": "$['queryStringCachingBehavior']", "jsonPosition": Object { "column": 15, "line": 11, @@ -19231,7 +19409,7 @@ Array [ "params": Array [ "queryStringCachingBehavior", ], - "path": "queryStringCachingBehavior", + "path": "$/queryStringCachingBehavior", "position": Object { "column": 17, "line": 2071, @@ -19251,7 +19429,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.originPath", + "jsonPath": "$['originPath']", "jsonPosition": Object { "column": 15, "line": 11, @@ -19261,7 +19439,7 @@ Array [ "params": Array [ "originPath", ], - "path": "originPath", + "path": "$/originPath", "position": Object { "column": 17, "line": 2071, @@ -19281,7 +19459,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.origins", + "jsonPath": "$['origins']", "jsonPosition": Object { "column": 15, "line": 11, @@ -19291,7 +19469,7 @@ Array [ "params": Array [ "origins", ], - "path": "origins", + "path": "$/origins", "position": Object { "column": 17, "line": 2071, @@ -19311,7 +19489,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.customDomains", + "jsonPath": "$['customDomains']", "jsonPosition": Object { "column": 15, "line": 11, @@ -19321,7 +19499,7 @@ Array [ "params": Array [ "customDomains", ], - "path": "customDomains", + "path": "$/customDomains", "position": Object { "column": 17, "line": 2071, @@ -19341,7 +19519,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.contentTypesToCompress", + "jsonPath": "$['contentTypesToCompress']", "jsonPosition": Object { "column": 15, "line": 11, @@ -19351,7 +19529,7 @@ Array [ "params": Array [ "contentTypesToCompress", ], - "path": "contentTypesToCompress", + "path": "$/contentTypesToCompress", "position": Object { "column": 17, "line": 2071, @@ -19371,7 +19549,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.isCompressionEnabled", + "jsonPath": "$['isCompressionEnabled']", "jsonPosition": Object { "column": 15, "line": 11, @@ -19381,7 +19559,7 @@ Array [ "params": Array [ "isCompressionEnabled", ], - "path": "isCompressionEnabled", + "path": "$/isCompressionEnabled", "position": Object { "column": 17, "line": 2071, @@ -19401,7 +19579,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.optimizationType", + "jsonPath": "$['optimizationType']", "jsonPosition": Object { "column": 15, "line": 11, @@ -19411,7 +19589,7 @@ Array [ "params": Array [ "optimizationType", ], - "path": "optimizationType", + "path": "$/optimizationType", "position": Object { "column": 17, "line": 2071, @@ -19431,7 +19609,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.probePath", + "jsonPath": "$['probePath']", "jsonPosition": Object { "column": 15, "line": 11, @@ -19441,7 +19619,7 @@ Array [ "params": Array [ "probePath", ], - "path": "probePath", + "path": "$/probePath", "position": Object { "column": 17, "line": 2071, @@ -19461,7 +19639,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.geoFilters", + "jsonPath": "$['geoFilters']", "jsonPosition": Object { "column": 15, "line": 11, @@ -19471,7 +19649,7 @@ Array [ "params": Array [ "geoFilters", ], - "path": "geoFilters", + "path": "$/geoFilters", "position": Object { "column": 17, "line": 2071, @@ -19491,7 +19669,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format .azureedge.net.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "jsonPosition": Object { "column": 15, "line": 11, @@ -19501,7 +19679,7 @@ Array [ "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 17, "line": 2071, @@ -19585,12 +19763,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Input of the custom domain to be validated for DNS mapping.", "directives": Object {}, - "jsonPath": "$.hostName", + "jsonPath": "$['hostName']", "message": "Missing required property: hostName", "params": Array [ "hostName", ], - "path": "hostName", + "path": "$/hostName", "position": Object { "column": 34, "line": 2957, @@ -19610,12 +19788,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Input of the custom domain to be validated for DNS mapping.", "directives": Object {}, - "jsonPath": "$.hostname", + "jsonPath": "$['hostname']", "message": "Additional properties not allowed: hostname", "params": Array [ "hostname", ], - "path": "hostname", + "path": "$/hostname", "position": Object { "column": 34, "line": 2957, @@ -19667,13 +19845,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "CDN origin is the source of the content being delivered via CDN. When the edge nodes represented by an endpoint do not have the requested content cached, they attempt to fetch it from one or more of the configured origins.", "directives": Object {}, - "jsonPath": "$.value[0].location", + "jsonPath": "$['value'][0]['location']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cdn/resource-manager/Microsoft.Cdn/stable/2017-10-12/examples/Origins_ListByEndpoint.json", "message": "Missing required property: location", "params": Array [ "location", ], - "path": "value/0/location", + "path": "$/value/0/location", "position": Object { "column": 15, "line": 2556, @@ -19693,7 +19871,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "CDN origin is the source of the content being delivered via CDN. When the edge nodes represented by an endpoint do not have the requested content cached, they attempt to fetch it from one or more of the configured origins.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "jsonPosition": Object { "column": 15, "line": 12, @@ -19703,7 +19881,7 @@ Array [ "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 15, "line": 2556, @@ -19723,12 +19901,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Origin properties needed for origin creation or update.", "directives": Object {}, - "jsonPath": "$.httpPort", + "jsonPath": "$['httpPort']", "message": "Additional properties not allowed: httpPort", "params": Array [ "httpPort", ], - "path": "httpPort", + "path": "$/httpPort", "position": Object { "column": 31, "line": 2618, @@ -19748,12 +19926,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Origin properties needed for origin creation or update.", "directives": Object {}, - "jsonPath": "$.httpsPort", + "jsonPath": "$['httpsPort']", "message": "Additional properties not allowed: httpsPort", "params": Array [ "httpsPort", ], - "path": "httpsPort", + "path": "$/httpsPort", "position": Object { "column": 31, "line": 2618, @@ -19789,7 +19967,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "CDN origin is the source of the content being delivered via CDN. When the edge nodes represented by an endpoint do not have the requested content cached, they attempt to fetch it from one or more of the configured origins.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "jsonPosition": Object { "column": 15, "line": 16, @@ -19799,7 +19977,7 @@ Array [ "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 15, "line": 2556, @@ -19819,12 +19997,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The customDomain JSON object required for custom domain creation or update.", "directives": Object {}, - "jsonPath": "$.hostName", + "jsonPath": "$['hostName']", "message": "Additional properties not allowed: hostName", "params": Array [ "hostName", ], - "path": "hostName", + "path": "$/hostName", "position": Object { "column": 31, "line": 2758, @@ -20041,13 +20219,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The object that represents the operation.", "directives": Object {}, - "jsonPath": "$.value[0].display.description", + "jsonPath": "$['value'][0]['display']['description']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cdn/resource-manager/Microsoft.Cdn/stable/2017-10-12/examples/Operations_List.json", "message": "Additional properties not allowed: description", "params": Array [ "description", ], - "path": "value/0/display/description", + "path": "$/value/0/display/description", "position": Object { "column": 20, "line": 3127, @@ -20160,13 +20338,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "An object describing additional category details.", "directives": Object {}, - "jsonPath": "$.categories[1].detail.landmarks", + "jsonPath": "$['categories'][1]['detail']['landmarks']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ComputerVision/stable/v1.0/examples/SuccessfulAnalyzeWithUrl.json", "message": "Additional properties not allowed: landmarks", "params": Array [ "landmarks", ], - "path": "categories/1/detail/landmarks", + "path": "$/categories/1/detail/landmarks", "position": Object { "column": 23, "line": 1324, @@ -20249,7 +20427,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A collection of content tags, along with a list of captions sorted by confidence level, and image metadata.", "directives": Object {}, - "jsonPath": "$.requestId", + "jsonPath": "$['requestId']", "jsonPosition": Object { "column": 15, "line": 12, @@ -20259,7 +20437,7 @@ Array [ "params": Array [ "requestId", ], - "path": "requestId", + "path": "$/requestId", "position": Object { "column": 25, "line": 1063, @@ -20279,7 +20457,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A collection of content tags, along with a list of captions sorted by confidence level, and image metadata.", "directives": Object {}, - "jsonPath": "$.metadata", + "jsonPath": "$['metadata']", "jsonPosition": Object { "column": 15, "line": 12, @@ -20289,7 +20467,7 @@ Array [ "params": Array [ "metadata", ], - "path": "metadata", + "path": "$/metadata", "position": Object { "column": 25, "line": 1063, @@ -20414,13 +20592,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "An object describing additional category details.", "directives": Object {}, - "jsonPath": "$.categories[1].detail.landmarks", + "jsonPath": "$['categories'][1]['detail']['landmarks']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ComputerVision/stable/v1.0/examples/SuccessfulAnalyzeWithStream.json", "message": "Additional properties not allowed: landmarks", "params": Array [ "landmarks", ], - "path": "categories/1/detail/landmarks", + "path": "$/categories/1/detail/landmarks", "position": Object { "column": 23, "line": 1324, @@ -20503,7 +20681,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A collection of content tags, along with a list of captions sorted by confidence level, and image metadata.", "directives": Object {}, - "jsonPath": "$.requestId", + "jsonPath": "$['requestId']", "jsonPosition": Object { "column": 15, "line": 10, @@ -20513,7 +20691,7 @@ Array [ "params": Array [ "requestId", ], - "path": "requestId", + "path": "$/requestId", "position": Object { "column": 25, "line": 1063, @@ -20533,7 +20711,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A collection of content tags, along with a list of captions sorted by confidence level, and image metadata.", "directives": Object {}, - "jsonPath": "$.metadata", + "jsonPath": "$['metadata']", "jsonPosition": Object { "column": 15, "line": 10, @@ -20543,7 +20721,7 @@ Array [ "params": Array [ "metadata", ], - "path": "metadata", + "path": "$/metadata", "position": Object { "column": 25, "line": 1063, @@ -20632,13 +20810,13 @@ Array [ "details": Object { "code": "INVALID_TYPE", "directives": Object {}, - "jsonPath": "", + "jsonPath": "$", "message": "Expected type object but found type string", "params": Array [ "object", "string", ], - "path": "", + "path": "$", "position": Object { "column": 17, "line": 1171, @@ -20657,13 +20835,13 @@ Array [ "details": Object { "code": "INVALID_TYPE", "directives": Object {}, - "jsonPath": "", + "jsonPath": "$", "message": "Expected type object but found type string", "params": Array [ "object", "string", ], - "path": "", + "path": "$", "position": Object { "column": 17, "line": 1171, @@ -20682,13 +20860,13 @@ Array [ "details": Object { "code": "INVALID_TYPE", "directives": Object {}, - "jsonPath": "", + "jsonPath": "$", "message": "Expected type object but found type string", "params": Array [ "object", "string", ], - "path": "", + "path": "$", "position": Object { "column": 17, "line": 1171, @@ -20707,13 +20885,13 @@ Array [ "details": Object { "code": "INVALID_TYPE", "directives": Object {}, - "jsonPath": "", + "jsonPath": "$", "message": "Expected type object but found type string", "params": Array [ "object", "string", ], - "path": "", + "path": "$", "position": Object { "column": 17, "line": 1171, @@ -20732,13 +20910,13 @@ Array [ "details": Object { "code": "INVALID_TYPE", "directives": Object {}, - "jsonPath": "", + "jsonPath": "$", "message": "Expected type object but found type string", "params": Array [ "object", "string", ], - "path": "", + "path": "$", "position": Object { "column": 17, "line": 1171, @@ -20757,13 +20935,13 @@ Array [ "details": Object { "code": "INVALID_TYPE", "directives": Object {}, - "jsonPath": "", + "jsonPath": "$", "message": "Expected type object but found type string", "params": Array [ "object", "string", ], - "path": "", + "path": "$", "position": Object { "column": 17, "line": 1171, @@ -20782,13 +20960,13 @@ Array [ "details": Object { "code": "INVALID_TYPE", "directives": Object {}, - "jsonPath": "", + "jsonPath": "$", "message": "Expected type object but found type string", "params": Array [ "object", "string", ], - "path": "", + "path": "$", "position": Object { "column": 17, "line": 1171, @@ -20807,13 +20985,13 @@ Array [ "details": Object { "code": "INVALID_TYPE", "directives": Object {}, - "jsonPath": "", + "jsonPath": "$", "message": "Expected type object but found type string", "params": Array [ "object", "string", ], - "path": "", + "path": "$", "position": Object { "column": 17, "line": 1171, @@ -20839,13 +21017,13 @@ Array [ "details": Object { "code": "INVALID_TYPE", "directives": Object {}, - "jsonPath": "", + "jsonPath": "$", "message": "Expected type object but found type string", "params": Array [ "object", "string", ], - "path": "", + "path": "$", "position": Object { "column": 17, "line": 478, @@ -20864,13 +21042,13 @@ Array [ "details": Object { "code": "INVALID_TYPE", "directives": Object {}, - "jsonPath": "", + "jsonPath": "$", "message": "Expected type object but found type string", "params": Array [ "object", "string", ], - "path": "", + "path": "$", "position": Object { "column": 17, "line": 478, @@ -20892,7 +21070,55 @@ exports[`validateExamples should not regress for file '/home/vsts/work/1/s/regre exports[`validateExamples should not regress for file '/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ContentModerator/stable/v1.0/ContentModerator.json': returned results 1`] = ` Array [ Object { - "inner": [Error: couldn't understand path 0,VideoFrames,VideoFrames,0,Timestamp], + "code": "INVALID_TYPE", + "details": Object { + "code": "INVALID_TYPE", + "description": "Timestamp of the frame.", + "directives": Object {}, + "jsonPath": "$[0]['VideoFrames']['VideoFrames'][0]['Timestamp']", + "message": "Expected type integer but found type string", + "params": Array [ + "integer", + "string", + ], + "path": "$/0/VideoFrames/VideoFrames/0/Timestamp", + "position": Object { + "column": 32, + "line": 3551, + }, + "title": "#/parameters/CreateVideoReviewsBody/schema/items/properties/VideoFrames/items/properties/Timestamp", + "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ContentModerator/stable/v1.0/ContentModerator.json", + }, + "operationId": "Reviews_CreateVideoReviews", + "responseCode": "ALL", + "scenario": "Create video review request", + "severity": 0, + "source": "request", + }, + Object { + "code": "ENUM_CASE_MISMATCH", + "details": Object { + "code": "ENUM_CASE_MISMATCH", + "description": "Status of the video(Complete,Unpublished,Pending)", + "directives": Object {}, + "jsonPath": "$[0]['Status']", + "message": "Enum does not match case for: UnPublished", + "params": Array [ + "UnPublished", + ], + "path": "$/0/Status", + "position": Object { + "column": 23, + "line": 3640, + }, + "title": "#/parameters/CreateVideoReviewsBody/schema/items/properties/Status", + "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ContentModerator/stable/v1.0/ContentModerator.json", + }, + "operationId": "Reviews_CreateVideoReviews", + "responseCode": "ALL", + "scenario": "Create video review request", + "severity": 1, + "source": "request", }, ] `; @@ -20928,7 +21154,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image answer", "directives": Object {}, - "jsonPath": "$.queryExpansions", + "jsonPath": "$['queryExpansions']", "jsonPosition": Object { "column": 12, "line": 9, @@ -20938,7 +21164,7 @@ Array [ "params": Array [ "queryExpansions", ], - "path": "queryExpansions", + "path": "$/queryExpansions", "position": Object { "column": 15, "line": 428, @@ -20958,7 +21184,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image answer", "directives": Object {}, - "jsonPath": "$.pivotSuggestions", + "jsonPath": "$['pivotSuggestions']", "jsonPosition": Object { "column": 12, "line": 9, @@ -20968,7 +21194,7 @@ Array [ "params": Array [ "pivotSuggestions", ], - "path": "pivotSuggestions", + "path": "$/pivotSuggestions", "position": Object { "column": 15, "line": 428, @@ -20988,7 +21214,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image answer", "directives": Object {}, - "jsonPath": "$.relatedSearches", + "jsonPath": "$['relatedSearches']", "jsonPosition": Object { "column": 12, "line": 9, @@ -20998,7 +21224,7 @@ Array [ "params": Array [ "relatedSearches", ], - "path": "relatedSearches", + "path": "$/relatedSearches", "position": Object { "column": 15, "line": 428, @@ -21018,13 +21244,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[9].thumbnail._type", + "jsonPath": "$['value'][9]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/CustomImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/9/thumbnail/_type", + "path": "$/value/9/thumbnail/_type", "position": Object { "column": 20, "line": 468, @@ -21044,7 +21270,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[9]._type", + "jsonPath": "$['value'][9]['_type']", "jsonPosition": Object { "column": 6, "line": 309, @@ -21054,7 +21280,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/9/_type", + "path": "$/value/9/_type", "position": Object { "column": 20, "line": 468, @@ -21074,7 +21300,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[9].insightsMetadata", + "jsonPath": "$['value'][9]['insightsMetadata']", "jsonPosition": Object { "column": 6, "line": 309, @@ -21084,7 +21310,7 @@ Array [ "params": Array [ "insightsMetadata", ], - "path": "value/9/insightsMetadata", + "path": "$/value/9/insightsMetadata", "position": Object { "column": 20, "line": 468, @@ -21104,7 +21330,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[9].hostPageUrlPingSuffix", + "jsonPath": "$['value'][9]['hostPageUrlPingSuffix']", "jsonPosition": Object { "column": 6, "line": 309, @@ -21114,7 +21340,7 @@ Array [ "params": Array [ "hostPageUrlPingSuffix", ], - "path": "value/9/hostPageUrlPingSuffix", + "path": "$/value/9/hostPageUrlPingSuffix", "position": Object { "column": 20, "line": 468, @@ -21134,7 +21360,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[9].contentUrlPingSuffix", + "jsonPath": "$['value'][9]['contentUrlPingSuffix']", "jsonPosition": Object { "column": 6, "line": 309, @@ -21144,7 +21370,7 @@ Array [ "params": Array [ "contentUrlPingSuffix", ], - "path": "value/9/contentUrlPingSuffix", + "path": "$/value/9/contentUrlPingSuffix", "position": Object { "column": 20, "line": 468, @@ -21164,7 +21390,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[9].datePublished", + "jsonPath": "$['value'][9]['datePublished']", "jsonPosition": Object { "column": 6, "line": 309, @@ -21174,7 +21400,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/9/datePublished", + "path": "$/value/9/datePublished", "position": Object { "column": 20, "line": 468, @@ -21194,7 +21420,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[9].webSearchUrlPingSuffix", + "jsonPath": "$['value'][9]['webSearchUrlPingSuffix']", "jsonPosition": Object { "column": 6, "line": 309, @@ -21204,7 +21430,7 @@ Array [ "params": Array [ "webSearchUrlPingSuffix", ], - "path": "value/9/webSearchUrlPingSuffix", + "path": "$/value/9/webSearchUrlPingSuffix", "position": Object { "column": 20, "line": 468, @@ -21224,13 +21450,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[8].thumbnail._type", + "jsonPath": "$['value'][8]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/CustomImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/8/thumbnail/_type", + "path": "$/value/8/thumbnail/_type", "position": Object { "column": 20, "line": 468, @@ -21250,7 +21476,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[8]._type", + "jsonPath": "$['value'][8]['_type']", "jsonPosition": Object { "column": 6, "line": 275, @@ -21260,7 +21486,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/8/_type", + "path": "$/value/8/_type", "position": Object { "column": 20, "line": 468, @@ -21280,7 +21506,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[8].insightsMetadata", + "jsonPath": "$['value'][8]['insightsMetadata']", "jsonPosition": Object { "column": 6, "line": 275, @@ -21290,7 +21516,7 @@ Array [ "params": Array [ "insightsMetadata", ], - "path": "value/8/insightsMetadata", + "path": "$/value/8/insightsMetadata", "position": Object { "column": 20, "line": 468, @@ -21310,7 +21536,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[8].hostPageUrlPingSuffix", + "jsonPath": "$['value'][8]['hostPageUrlPingSuffix']", "jsonPosition": Object { "column": 6, "line": 275, @@ -21320,7 +21546,7 @@ Array [ "params": Array [ "hostPageUrlPingSuffix", ], - "path": "value/8/hostPageUrlPingSuffix", + "path": "$/value/8/hostPageUrlPingSuffix", "position": Object { "column": 20, "line": 468, @@ -21340,7 +21566,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[8].contentUrlPingSuffix", + "jsonPath": "$['value'][8]['contentUrlPingSuffix']", "jsonPosition": Object { "column": 6, "line": 275, @@ -21350,7 +21576,7 @@ Array [ "params": Array [ "contentUrlPingSuffix", ], - "path": "value/8/contentUrlPingSuffix", + "path": "$/value/8/contentUrlPingSuffix", "position": Object { "column": 20, "line": 468, @@ -21370,7 +21596,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[8].datePublished", + "jsonPath": "$['value'][8]['datePublished']", "jsonPosition": Object { "column": 6, "line": 275, @@ -21380,7 +21606,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/8/datePublished", + "path": "$/value/8/datePublished", "position": Object { "column": 20, "line": 468, @@ -21400,7 +21626,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[8].webSearchUrlPingSuffix", + "jsonPath": "$['value'][8]['webSearchUrlPingSuffix']", "jsonPosition": Object { "column": 6, "line": 275, @@ -21410,7 +21636,7 @@ Array [ "params": Array [ "webSearchUrlPingSuffix", ], - "path": "value/8/webSearchUrlPingSuffix", + "path": "$/value/8/webSearchUrlPingSuffix", "position": Object { "column": 20, "line": 468, @@ -21430,13 +21656,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[7].thumbnail._type", + "jsonPath": "$['value'][7]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/CustomImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/7/thumbnail/_type", + "path": "$/value/7/thumbnail/_type", "position": Object { "column": 20, "line": 468, @@ -21456,7 +21682,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[7]._type", + "jsonPath": "$['value'][7]['_type']", "jsonPosition": Object { "column": 6, "line": 241, @@ -21466,7 +21692,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/7/_type", + "path": "$/value/7/_type", "position": Object { "column": 20, "line": 468, @@ -21486,7 +21712,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[7].insightsMetadata", + "jsonPath": "$['value'][7]['insightsMetadata']", "jsonPosition": Object { "column": 6, "line": 241, @@ -21496,7 +21722,7 @@ Array [ "params": Array [ "insightsMetadata", ], - "path": "value/7/insightsMetadata", + "path": "$/value/7/insightsMetadata", "position": Object { "column": 20, "line": 468, @@ -21516,7 +21742,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[7].hostPageUrlPingSuffix", + "jsonPath": "$['value'][7]['hostPageUrlPingSuffix']", "jsonPosition": Object { "column": 6, "line": 241, @@ -21526,7 +21752,7 @@ Array [ "params": Array [ "hostPageUrlPingSuffix", ], - "path": "value/7/hostPageUrlPingSuffix", + "path": "$/value/7/hostPageUrlPingSuffix", "position": Object { "column": 20, "line": 468, @@ -21546,7 +21772,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[7].contentUrlPingSuffix", + "jsonPath": "$['value'][7]['contentUrlPingSuffix']", "jsonPosition": Object { "column": 6, "line": 241, @@ -21556,7 +21782,7 @@ Array [ "params": Array [ "contentUrlPingSuffix", ], - "path": "value/7/contentUrlPingSuffix", + "path": "$/value/7/contentUrlPingSuffix", "position": Object { "column": 20, "line": 468, @@ -21576,7 +21802,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[7].datePublished", + "jsonPath": "$['value'][7]['datePublished']", "jsonPosition": Object { "column": 6, "line": 241, @@ -21586,7 +21812,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/7/datePublished", + "path": "$/value/7/datePublished", "position": Object { "column": 20, "line": 468, @@ -21606,7 +21832,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[7].webSearchUrlPingSuffix", + "jsonPath": "$['value'][7]['webSearchUrlPingSuffix']", "jsonPosition": Object { "column": 6, "line": 241, @@ -21616,7 +21842,7 @@ Array [ "params": Array [ "webSearchUrlPingSuffix", ], - "path": "value/7/webSearchUrlPingSuffix", + "path": "$/value/7/webSearchUrlPingSuffix", "position": Object { "column": 20, "line": 468, @@ -21636,13 +21862,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[6].thumbnail._type", + "jsonPath": "$['value'][6]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/CustomImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/6/thumbnail/_type", + "path": "$/value/6/thumbnail/_type", "position": Object { "column": 20, "line": 468, @@ -21662,7 +21888,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[6]._type", + "jsonPath": "$['value'][6]['_type']", "jsonPosition": Object { "column": 6, "line": 207, @@ -21672,7 +21898,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/6/_type", + "path": "$/value/6/_type", "position": Object { "column": 20, "line": 468, @@ -21692,7 +21918,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[6].insightsMetadata", + "jsonPath": "$['value'][6]['insightsMetadata']", "jsonPosition": Object { "column": 6, "line": 207, @@ -21702,7 +21928,7 @@ Array [ "params": Array [ "insightsMetadata", ], - "path": "value/6/insightsMetadata", + "path": "$/value/6/insightsMetadata", "position": Object { "column": 20, "line": 468, @@ -21722,7 +21948,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[6].hostPageUrlPingSuffix", + "jsonPath": "$['value'][6]['hostPageUrlPingSuffix']", "jsonPosition": Object { "column": 6, "line": 207, @@ -21732,7 +21958,7 @@ Array [ "params": Array [ "hostPageUrlPingSuffix", ], - "path": "value/6/hostPageUrlPingSuffix", + "path": "$/value/6/hostPageUrlPingSuffix", "position": Object { "column": 20, "line": 468, @@ -21752,7 +21978,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[6].contentUrlPingSuffix", + "jsonPath": "$['value'][6]['contentUrlPingSuffix']", "jsonPosition": Object { "column": 6, "line": 207, @@ -21762,7 +21988,7 @@ Array [ "params": Array [ "contentUrlPingSuffix", ], - "path": "value/6/contentUrlPingSuffix", + "path": "$/value/6/contentUrlPingSuffix", "position": Object { "column": 20, "line": 468, @@ -21782,7 +22008,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[6].datePublished", + "jsonPath": "$['value'][6]['datePublished']", "jsonPosition": Object { "column": 6, "line": 207, @@ -21792,7 +22018,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/6/datePublished", + "path": "$/value/6/datePublished", "position": Object { "column": 20, "line": 468, @@ -21812,7 +22038,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[6].webSearchUrlPingSuffix", + "jsonPath": "$['value'][6]['webSearchUrlPingSuffix']", "jsonPosition": Object { "column": 6, "line": 207, @@ -21822,7 +22048,7 @@ Array [ "params": Array [ "webSearchUrlPingSuffix", ], - "path": "value/6/webSearchUrlPingSuffix", + "path": "$/value/6/webSearchUrlPingSuffix", "position": Object { "column": 20, "line": 468, @@ -21842,13 +22068,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[5].thumbnail._type", + "jsonPath": "$['value'][5]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/CustomImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/5/thumbnail/_type", + "path": "$/value/5/thumbnail/_type", "position": Object { "column": 20, "line": 468, @@ -21868,7 +22094,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[5]._type", + "jsonPath": "$['value'][5]['_type']", "jsonPosition": Object { "column": 6, "line": 179, @@ -21878,7 +22104,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/5/_type", + "path": "$/value/5/_type", "position": Object { "column": 20, "line": 468, @@ -21898,7 +22124,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[5].insightsMetadata", + "jsonPath": "$['value'][5]['insightsMetadata']", "jsonPosition": Object { "column": 6, "line": 179, @@ -21908,7 +22134,7 @@ Array [ "params": Array [ "insightsMetadata", ], - "path": "value/5/insightsMetadata", + "path": "$/value/5/insightsMetadata", "position": Object { "column": 20, "line": 468, @@ -21928,7 +22154,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[5].hostPageUrlPingSuffix", + "jsonPath": "$['value'][5]['hostPageUrlPingSuffix']", "jsonPosition": Object { "column": 6, "line": 179, @@ -21938,7 +22164,7 @@ Array [ "params": Array [ "hostPageUrlPingSuffix", ], - "path": "value/5/hostPageUrlPingSuffix", + "path": "$/value/5/hostPageUrlPingSuffix", "position": Object { "column": 20, "line": 468, @@ -21958,7 +22184,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[5].contentUrlPingSuffix", + "jsonPath": "$['value'][5]['contentUrlPingSuffix']", "jsonPosition": Object { "column": 6, "line": 179, @@ -21968,7 +22194,7 @@ Array [ "params": Array [ "contentUrlPingSuffix", ], - "path": "value/5/contentUrlPingSuffix", + "path": "$/value/5/contentUrlPingSuffix", "position": Object { "column": 20, "line": 468, @@ -21988,7 +22214,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[5].datePublished", + "jsonPath": "$['value'][5]['datePublished']", "jsonPosition": Object { "column": 6, "line": 179, @@ -21998,7 +22224,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/5/datePublished", + "path": "$/value/5/datePublished", "position": Object { "column": 20, "line": 468, @@ -22018,7 +22244,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[5].webSearchUrlPingSuffix", + "jsonPath": "$['value'][5]['webSearchUrlPingSuffix']", "jsonPosition": Object { "column": 6, "line": 179, @@ -22028,7 +22254,7 @@ Array [ "params": Array [ "webSearchUrlPingSuffix", ], - "path": "value/5/webSearchUrlPingSuffix", + "path": "$/value/5/webSearchUrlPingSuffix", "position": Object { "column": 20, "line": 468, @@ -22048,13 +22274,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[4].thumbnail._type", + "jsonPath": "$['value'][4]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/CustomImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/4/thumbnail/_type", + "path": "$/value/4/thumbnail/_type", "position": Object { "column": 20, "line": 468, @@ -22074,7 +22300,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[4]._type", + "jsonPath": "$['value'][4]['_type']", "jsonPosition": Object { "column": 6, "line": 145, @@ -22084,7 +22310,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/4/_type", + "path": "$/value/4/_type", "position": Object { "column": 20, "line": 468, @@ -22104,7 +22330,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[4].insightsMetadata", + "jsonPath": "$['value'][4]['insightsMetadata']", "jsonPosition": Object { "column": 6, "line": 145, @@ -22114,7 +22340,7 @@ Array [ "params": Array [ "insightsMetadata", ], - "path": "value/4/insightsMetadata", + "path": "$/value/4/insightsMetadata", "position": Object { "column": 20, "line": 468, @@ -22134,7 +22360,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[4].hostPageUrlPingSuffix", + "jsonPath": "$['value'][4]['hostPageUrlPingSuffix']", "jsonPosition": Object { "column": 6, "line": 145, @@ -22144,7 +22370,7 @@ Array [ "params": Array [ "hostPageUrlPingSuffix", ], - "path": "value/4/hostPageUrlPingSuffix", + "path": "$/value/4/hostPageUrlPingSuffix", "position": Object { "column": 20, "line": 468, @@ -22164,7 +22390,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[4].contentUrlPingSuffix", + "jsonPath": "$['value'][4]['contentUrlPingSuffix']", "jsonPosition": Object { "column": 6, "line": 145, @@ -22174,7 +22400,7 @@ Array [ "params": Array [ "contentUrlPingSuffix", ], - "path": "value/4/contentUrlPingSuffix", + "path": "$/value/4/contentUrlPingSuffix", "position": Object { "column": 20, "line": 468, @@ -22194,7 +22420,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[4].datePublished", + "jsonPath": "$['value'][4]['datePublished']", "jsonPosition": Object { "column": 6, "line": 145, @@ -22204,7 +22430,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/4/datePublished", + "path": "$/value/4/datePublished", "position": Object { "column": 20, "line": 468, @@ -22224,7 +22450,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[4].webSearchUrlPingSuffix", + "jsonPath": "$['value'][4]['webSearchUrlPingSuffix']", "jsonPosition": Object { "column": 6, "line": 145, @@ -22234,7 +22460,7 @@ Array [ "params": Array [ "webSearchUrlPingSuffix", ], - "path": "value/4/webSearchUrlPingSuffix", + "path": "$/value/4/webSearchUrlPingSuffix", "position": Object { "column": 20, "line": 468, @@ -22254,13 +22480,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[3].thumbnail._type", + "jsonPath": "$['value'][3]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/CustomImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/3/thumbnail/_type", + "path": "$/value/3/thumbnail/_type", "position": Object { "column": 20, "line": 468, @@ -22280,7 +22506,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[3]._type", + "jsonPath": "$['value'][3]['_type']", "jsonPosition": Object { "column": 6, "line": 111, @@ -22290,7 +22516,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/3/_type", + "path": "$/value/3/_type", "position": Object { "column": 20, "line": 468, @@ -22310,7 +22536,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[3].insightsMetadata", + "jsonPath": "$['value'][3]['insightsMetadata']", "jsonPosition": Object { "column": 6, "line": 111, @@ -22320,7 +22546,7 @@ Array [ "params": Array [ "insightsMetadata", ], - "path": "value/3/insightsMetadata", + "path": "$/value/3/insightsMetadata", "position": Object { "column": 20, "line": 468, @@ -22340,7 +22566,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[3].hostPageUrlPingSuffix", + "jsonPath": "$['value'][3]['hostPageUrlPingSuffix']", "jsonPosition": Object { "column": 6, "line": 111, @@ -22350,7 +22576,7 @@ Array [ "params": Array [ "hostPageUrlPingSuffix", ], - "path": "value/3/hostPageUrlPingSuffix", + "path": "$/value/3/hostPageUrlPingSuffix", "position": Object { "column": 20, "line": 468, @@ -22370,7 +22596,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[3].contentUrlPingSuffix", + "jsonPath": "$['value'][3]['contentUrlPingSuffix']", "jsonPosition": Object { "column": 6, "line": 111, @@ -22380,7 +22606,7 @@ Array [ "params": Array [ "contentUrlPingSuffix", ], - "path": "value/3/contentUrlPingSuffix", + "path": "$/value/3/contentUrlPingSuffix", "position": Object { "column": 20, "line": 468, @@ -22400,7 +22626,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[3].datePublished", + "jsonPath": "$['value'][3]['datePublished']", "jsonPosition": Object { "column": 6, "line": 111, @@ -22410,7 +22636,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/3/datePublished", + "path": "$/value/3/datePublished", "position": Object { "column": 20, "line": 468, @@ -22430,7 +22656,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[3].webSearchUrlPingSuffix", + "jsonPath": "$['value'][3]['webSearchUrlPingSuffix']", "jsonPosition": Object { "column": 6, "line": 111, @@ -22440,7 +22666,7 @@ Array [ "params": Array [ "webSearchUrlPingSuffix", ], - "path": "value/3/webSearchUrlPingSuffix", + "path": "$/value/3/webSearchUrlPingSuffix", "position": Object { "column": 20, "line": 468, @@ -22460,13 +22686,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[2].thumbnail._type", + "jsonPath": "$['value'][2]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/CustomImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/2/thumbnail/_type", + "path": "$/value/2/thumbnail/_type", "position": Object { "column": 20, "line": 468, @@ -22486,7 +22712,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[2]._type", + "jsonPath": "$['value'][2]['_type']", "jsonPosition": Object { "column": 6, "line": 77, @@ -22496,7 +22722,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/2/_type", + "path": "$/value/2/_type", "position": Object { "column": 20, "line": 468, @@ -22516,7 +22742,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[2].insightsMetadata", + "jsonPath": "$['value'][2]['insightsMetadata']", "jsonPosition": Object { "column": 6, "line": 77, @@ -22526,7 +22752,7 @@ Array [ "params": Array [ "insightsMetadata", ], - "path": "value/2/insightsMetadata", + "path": "$/value/2/insightsMetadata", "position": Object { "column": 20, "line": 468, @@ -22546,7 +22772,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[2].hostPageUrlPingSuffix", + "jsonPath": "$['value'][2]['hostPageUrlPingSuffix']", "jsonPosition": Object { "column": 6, "line": 77, @@ -22556,7 +22782,7 @@ Array [ "params": Array [ "hostPageUrlPingSuffix", ], - "path": "value/2/hostPageUrlPingSuffix", + "path": "$/value/2/hostPageUrlPingSuffix", "position": Object { "column": 20, "line": 468, @@ -22576,7 +22802,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[2].contentUrlPingSuffix", + "jsonPath": "$['value'][2]['contentUrlPingSuffix']", "jsonPosition": Object { "column": 6, "line": 77, @@ -22586,7 +22812,7 @@ Array [ "params": Array [ "contentUrlPingSuffix", ], - "path": "value/2/contentUrlPingSuffix", + "path": "$/value/2/contentUrlPingSuffix", "position": Object { "column": 20, "line": 468, @@ -22606,7 +22832,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[2].datePublished", + "jsonPath": "$['value'][2]['datePublished']", "jsonPosition": Object { "column": 6, "line": 77, @@ -22616,7 +22842,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/2/datePublished", + "path": "$/value/2/datePublished", "position": Object { "column": 20, "line": 468, @@ -22636,7 +22862,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[2].webSearchUrlPingSuffix", + "jsonPath": "$['value'][2]['webSearchUrlPingSuffix']", "jsonPosition": Object { "column": 6, "line": 77, @@ -22646,7 +22872,7 @@ Array [ "params": Array [ "webSearchUrlPingSuffix", ], - "path": "value/2/webSearchUrlPingSuffix", + "path": "$/value/2/webSearchUrlPingSuffix", "position": Object { "column": 20, "line": 468, @@ -22666,13 +22892,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[1].thumbnail._type", + "jsonPath": "$['value'][1]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/CustomImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/1/thumbnail/_type", + "path": "$/value/1/thumbnail/_type", "position": Object { "column": 20, "line": 468, @@ -22692,7 +22918,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[1]._type", + "jsonPath": "$['value'][1]['_type']", "jsonPosition": Object { "column": 6, "line": 43, @@ -22702,7 +22928,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/1/_type", + "path": "$/value/1/_type", "position": Object { "column": 20, "line": 468, @@ -22722,7 +22948,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[1].insightsMetadata", + "jsonPath": "$['value'][1]['insightsMetadata']", "jsonPosition": Object { "column": 6, "line": 43, @@ -22732,7 +22958,7 @@ Array [ "params": Array [ "insightsMetadata", ], - "path": "value/1/insightsMetadata", + "path": "$/value/1/insightsMetadata", "position": Object { "column": 20, "line": 468, @@ -22752,7 +22978,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[1].hostPageUrlPingSuffix", + "jsonPath": "$['value'][1]['hostPageUrlPingSuffix']", "jsonPosition": Object { "column": 6, "line": 43, @@ -22762,7 +22988,7 @@ Array [ "params": Array [ "hostPageUrlPingSuffix", ], - "path": "value/1/hostPageUrlPingSuffix", + "path": "$/value/1/hostPageUrlPingSuffix", "position": Object { "column": 20, "line": 468, @@ -22782,7 +23008,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[1].contentUrlPingSuffix", + "jsonPath": "$['value'][1]['contentUrlPingSuffix']", "jsonPosition": Object { "column": 6, "line": 43, @@ -22792,7 +23018,7 @@ Array [ "params": Array [ "contentUrlPingSuffix", ], - "path": "value/1/contentUrlPingSuffix", + "path": "$/value/1/contentUrlPingSuffix", "position": Object { "column": 20, "line": 468, @@ -22812,7 +23038,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[1].datePublished", + "jsonPath": "$['value'][1]['datePublished']", "jsonPosition": Object { "column": 6, "line": 43, @@ -22822,7 +23048,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/1/datePublished", + "path": "$/value/1/datePublished", "position": Object { "column": 20, "line": 468, @@ -22842,7 +23068,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[1].webSearchUrlPingSuffix", + "jsonPath": "$['value'][1]['webSearchUrlPingSuffix']", "jsonPosition": Object { "column": 6, "line": 43, @@ -22852,7 +23078,7 @@ Array [ "params": Array [ "webSearchUrlPingSuffix", ], - "path": "value/1/webSearchUrlPingSuffix", + "path": "$/value/1/webSearchUrlPingSuffix", "position": Object { "column": 20, "line": 468, @@ -22872,13 +23098,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[0].thumbnail._type", + "jsonPath": "$['value'][0]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/CustomImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/0/thumbnail/_type", + "path": "$/value/0/thumbnail/_type", "position": Object { "column": 20, "line": 468, @@ -22898,7 +23124,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[0]._type", + "jsonPath": "$['value'][0]['_type']", "jsonPosition": Object { "column": 15, "line": 15, @@ -22908,7 +23134,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/0/_type", + "path": "$/value/0/_type", "position": Object { "column": 20, "line": 468, @@ -22928,7 +23154,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[0].insightsMetadata", + "jsonPath": "$['value'][0]['insightsMetadata']", "jsonPosition": Object { "column": 15, "line": 15, @@ -22938,7 +23164,7 @@ Array [ "params": Array [ "insightsMetadata", ], - "path": "value/0/insightsMetadata", + "path": "$/value/0/insightsMetadata", "position": Object { "column": 20, "line": 468, @@ -22958,7 +23184,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[0].hostPageUrlPingSuffix", + "jsonPath": "$['value'][0]['hostPageUrlPingSuffix']", "jsonPosition": Object { "column": 15, "line": 15, @@ -22968,7 +23194,7 @@ Array [ "params": Array [ "hostPageUrlPingSuffix", ], - "path": "value/0/hostPageUrlPingSuffix", + "path": "$/value/0/hostPageUrlPingSuffix", "position": Object { "column": 20, "line": 468, @@ -22988,7 +23214,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[0].contentUrlPingSuffix", + "jsonPath": "$['value'][0]['contentUrlPingSuffix']", "jsonPosition": Object { "column": 15, "line": 15, @@ -22998,7 +23224,7 @@ Array [ "params": Array [ "contentUrlPingSuffix", ], - "path": "value/0/contentUrlPingSuffix", + "path": "$/value/0/contentUrlPingSuffix", "position": Object { "column": 20, "line": 468, @@ -23018,7 +23244,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[0].datePublished", + "jsonPath": "$['value'][0]['datePublished']", "jsonPosition": Object { "column": 15, "line": 15, @@ -23028,7 +23254,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/0/datePublished", + "path": "$/value/0/datePublished", "position": Object { "column": 20, "line": 468, @@ -23048,7 +23274,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[0].webSearchUrlPingSuffix", + "jsonPath": "$['value'][0]['webSearchUrlPingSuffix']", "jsonPosition": Object { "column": 15, "line": 15, @@ -23058,7 +23284,7 @@ Array [ "params": Array [ "webSearchUrlPingSuffix", ], - "path": "value/0/webSearchUrlPingSuffix", + "path": "$/value/0/webSearchUrlPingSuffix", "position": Object { "column": 20, "line": 468, @@ -23130,13 +23356,13 @@ Array [ "directives": Object { "R3017": ".*", }, - "jsonPath": "$.Tags[0].Id", + "jsonPath": "$['Tags'][0]['Id']", "message": "ReadOnly property \`\\"Id\\": \\"b5f7e6a2-a481-49a6-afec-a7cef1af3544\\"\`, cannot be sent in the request.", "params": Array [ "Id", "b5f7e6a2-a481-49a6-afec-a7cef1af3544", ], - "path": "Tags/0/Id", + "path": "$/Tags/0/Id", "position": Object { "column": 23, "line": 2438, @@ -23157,13 +23383,13 @@ Array [ "directives": Object { "R3017": ".*", }, - "jsonPath": "$.Tags[0].MinThreshold", + "jsonPath": "$['Tags'][0]['MinThreshold']", "message": "ReadOnly property \`\\"MinThreshold\\": 0.9\`, cannot be sent in the request.", "params": Array [ "MinThreshold", 0.9, ], - "path": "Tags/0/MinThreshold", + "path": "$/Tags/0/MinThreshold", "position": Object { "column": 33, "line": 2444, @@ -23319,13 +23545,13 @@ Array [ "directives": Object { "R3017": ".*", }, - "jsonPath": "$.tags[0].id", + "jsonPath": "$['tags'][0]['id']", "message": "ReadOnly property \`\\"id\\": \\"b5f7e6a2-a481-49a6-afec-a7cef1af3544\\"\`, cannot be sent in the request.", "params": Array [ "id", "b5f7e6a2-a481-49a6-afec-a7cef1af3544", ], - "path": "tags/0/id", + "path": "$/tags/0/id", "position": Object { "column": 23, "line": 3107, @@ -23346,13 +23572,13 @@ Array [ "directives": Object { "R3017": ".*", }, - "jsonPath": "$.tags[0].minThreshold", + "jsonPath": "$['tags'][0]['minThreshold']", "message": "ReadOnly property \`\\"minThreshold\\": 0.9\`, cannot be sent in the request.", "params": Array [ "minThreshold", 0.9, ], - "path": "tags/0/minThreshold", + "path": "$/tags/0/minThreshold", "position": Object { "column": 33, "line": 3113, @@ -23492,13 +23718,13 @@ Array [ "directives": Object { "R3017": ".*", }, - "jsonPath": "$.tags[0].id", + "jsonPath": "$['tags'][0]['id']", "message": "ReadOnly property \`\\"id\\": \\"b5f7e6a2-a481-49a6-afec-a7cef1af3544\\"\`, cannot be sent in the request.", "params": Array [ "id", "b5f7e6a2-a481-49a6-afec-a7cef1af3544", ], - "path": "tags/0/id", + "path": "$/tags/0/id", "position": Object { "column": 23, "line": 3129, @@ -23519,13 +23745,13 @@ Array [ "directives": Object { "R3017": ".*", }, - "jsonPath": "$.tags[0].minThreshold", + "jsonPath": "$['tags'][0]['minThreshold']", "message": "ReadOnly property \`\\"minThreshold\\": 0.9\`, cannot be sent in the request.", "params": Array [ "minThreshold", 0.9, ], - "path": "tags/0/minThreshold", + "path": "$/tags/0/minThreshold", "position": Object { "column": 33, "line": 3135, @@ -23576,12 +23802,12 @@ Array [ "details": Object { "code": "ENUM_CASE_MISMATCH", "description": "The target platform (coreml or tensorflow)", - "jsonPath": "$.parameters.platform", + "jsonPath": "$['parameters']['platform']", "message": "Enum does not match case for: tensorflow", "params": Array [ "tensorflow", ], - "path": "parameters/platform", + "path": "$/parameters/platform", }, "operationId": "ExportIteration", "responseCode": "ALL", @@ -23683,13 +23909,13 @@ Array [ "directives": Object { "R3017": ".*", }, - "jsonPath": "$.tags[0].id", + "jsonPath": "$['tags'][0]['id']", "message": "ReadOnly property \`\\"id\\": \\"b5f7e6a2-a481-49a6-afec-a7cef1af3544\\"\`, cannot be sent in the request.", "params": Array [ "id", "b5f7e6a2-a481-49a6-afec-a7cef1af3544", ], - "path": "tags/0/id", + "path": "$/tags/0/id", "position": Object { "column": 23, "line": 3251, @@ -23710,13 +23936,13 @@ Array [ "directives": Object { "R3017": ".*", }, - "jsonPath": "$.tags[0].minThreshold", + "jsonPath": "$['tags'][0]['minThreshold']", "message": "ReadOnly property \`\\"minThreshold\\": 0.9\`, cannot be sent in the request.", "params": Array [ "minThreshold", 0.9, ], - "path": "tags/0/minThreshold", + "path": "$/tags/0/minThreshold", "position": Object { "column": 33, "line": 3257, @@ -23856,13 +24082,13 @@ Array [ "directives": Object { "R3017": ".*", }, - "jsonPath": "$.tags[0].id", + "jsonPath": "$['tags'][0]['id']", "message": "ReadOnly property \`\\"id\\": \\"b5f7e6a2-a481-49a6-afec-a7cef1af3544\\"\`, cannot be sent in the request.", "params": Array [ "id", "b5f7e6a2-a481-49a6-afec-a7cef1af3544", ], - "path": "tags/0/id", + "path": "$/tags/0/id", "position": Object { "column": 15, "line": 3734, @@ -23883,13 +24109,13 @@ Array [ "directives": Object { "R3017": ".*", }, - "jsonPath": "$.tags[0].maxThreshold", + "jsonPath": "$['tags'][0]['maxThreshold']", "message": "ReadOnly property \`\\"maxThreshold\\": 1\`, cannot be sent in the request.", "params": Array [ "maxThreshold", 1, ], - "path": "tags/0/maxThreshold", + "path": "$/tags/0/maxThreshold", "position": Object { "column": 25, "line": 3746, @@ -23910,13 +24136,13 @@ Array [ "directives": Object { "R3017": ".*", }, - "jsonPath": "$.tags[0].minThreshold", + "jsonPath": "$['tags'][0]['minThreshold']", "message": "ReadOnly property \`\\"minThreshold\\": 0.9\`, cannot be sent in the request.", "params": Array [ "minThreshold", 0.9, ], - "path": "tags/0/minThreshold", + "path": "$/tags/0/minThreshold", "position": Object { "column": 25, "line": 3740, @@ -23954,13 +24180,13 @@ Array [ "directives": Object { "R3017": ".*", }, - "jsonPath": "$.thumbnailUri", + "jsonPath": "$['thumbnailUri']", "message": "ReadOnly property \`\\"thumbnailUri\\": \\"\\"\`, cannot be sent in the request.", "params": Array [ "thumbnailUri", "", ], - "path": "thumbnailUri", + "path": "$/thumbnailUri", "position": Object { "column": 25, "line": 4054, @@ -23982,13 +24208,13 @@ Array [ "directives": Object { "R3017": ".*", }, - "jsonPath": "$.lastModified", + "jsonPath": "$['lastModified']", "message": "ReadOnly property \`\\"lastModified\\": \\"2017-12-18T05:43:18Z\\"\`, cannot be sent in the request.", "params": Array [ "lastModified", "2017-12-18T05:43:18Z", ], - "path": "lastModified", + "path": "$/lastModified", "position": Object { "column": 25, "line": 4047, @@ -24010,13 +24236,13 @@ Array [ "directives": Object { "R3017": ".*", }, - "jsonPath": "$.created", + "jsonPath": "$['created']", "message": "ReadOnly property \`\\"created\\": \\"2017-12-18T05:43:18Z\\"\`, cannot be sent in the request.", "params": Array [ "created", "2017-12-18T05:43:18Z", ], - "path": "created", + "path": "$/created", "position": Object { "column": 20, "line": 4040, @@ -24038,13 +24264,13 @@ Array [ "directives": Object { "R3017": ".*", }, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"bc3f7dad-5544-468c-8573-3ef04d55463e\\"\`, cannot be sent in the request.", "params": Array [ "id", "bc3f7dad-5544-468c-8573-3ef04d55463e", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 4015, @@ -24082,13 +24308,13 @@ Array [ "directives": Object { "R3017": ".*", }, - "jsonPath": "$.publishName", + "jsonPath": "$['publishName']", "message": "ReadOnly property \`\\"publishName\\": \\"\\"\`, cannot be sent in the request.", "params": Array [ "publishName", "", ], - "path": "publishName", + "path": "$/publishName", "position": Object { "column": 24, "line": 4229, @@ -24110,13 +24336,13 @@ Array [ "directives": Object { "R3017": ".*", }, - "jsonPath": "$.reservedBudgetInHours", + "jsonPath": "$['reservedBudgetInHours']", "message": "ReadOnly property \`\\"reservedBudgetInHours\\": 0\`, cannot be sent in the request.", "params": Array [ "reservedBudgetInHours", 0, ], - "path": "reservedBudgetInHours", + "path": "$/reservedBudgetInHours", "position": Object { "column": 34, "line": 4222, @@ -24138,13 +24364,13 @@ Array [ "directives": Object { "R3017": ".*", }, - "jsonPath": "$.trainingType", + "jsonPath": "$['trainingType']", "message": "ReadOnly property \`\\"trainingType\\": \\"Regular\\"\`, cannot be sent in the request.", "params": Array [ "trainingType", "Regular", ], - "path": "trainingType", + "path": "$/trainingType", "position": Object { "column": 25, "line": 4208, @@ -24166,13 +24392,13 @@ Array [ "directives": Object { "R3017": ".*", }, - "jsonPath": "$.domainId", + "jsonPath": "$['domainId']", "message": "ReadOnly property \`\\"domainId\\": \\"ee85a74c-405e-4adc-bb47-ffa8ca0c9f31\\"\`, cannot be sent in the request.", "params": Array [ "domainId", "ee85a74c-405e-4adc-bb47-ffa8ca0c9f31", ], - "path": "domainId", + "path": "$/domainId", "position": Object { "column": 21, "line": 4187, @@ -24194,7 +24420,7 @@ Array [ "directives": Object { "R3017": ".*", }, - "jsonPath": "$.exportableTo", + "jsonPath": "$['exportableTo']", "message": "ReadOnly property \`\\"exportableTo\\": ONNX,DockerFile,TensorFlow,CoreML\`, cannot be sent in the request.", "params": Array [ "exportableTo", @@ -24205,7 +24431,7 @@ Array [ "CoreML", ], ], - "path": "exportableTo", + "path": "$/exportableTo", "position": Object { "column": 25, "line": 4171, @@ -24227,13 +24453,13 @@ Array [ "directives": Object { "R3017": ".*", }, - "jsonPath": "$.exportable", + "jsonPath": "$['exportable']", "message": "ReadOnly property \`\\"exportable\\": false\`, cannot be sent in the request.", "params": Array [ "exportable", false, ], - "path": "exportable", + "path": "$/exportable", "position": Object { "column": 23, "line": 4165, @@ -24255,13 +24481,13 @@ Array [ "directives": Object { "R3017": ".*", }, - "jsonPath": "$.projectId", + "jsonPath": "$['projectId']", "message": "ReadOnly property \`\\"projectId\\": \\"64b822c5-8082-4b36-a426-27225f4aa18c\\"\`, cannot be sent in the request.", "params": Array [ "projectId", "64b822c5-8082-4b36-a426-27225f4aa18c", ], - "path": "projectId", + "path": "$/projectId", "position": Object { "column": 22, "line": 4158, @@ -24283,13 +24509,13 @@ Array [ "directives": Object { "R3017": ".*", }, - "jsonPath": "$.trainedAt", + "jsonPath": "$['trainedAt']", "message": "ReadOnly property \`\\"trainedAt\\": \\"2017-12-19T15:47:02Z\\"\`, cannot be sent in the request.", "params": Array [ "trainedAt", "2017-12-19T15:47:02Z", ], - "path": "trainedAt", + "path": "$/trainedAt", "position": Object { "column": 22, "line": 4151, @@ -24311,13 +24537,13 @@ Array [ "directives": Object { "R3017": ".*", }, - "jsonPath": "$.lastModified", + "jsonPath": "$['lastModified']", "message": "ReadOnly property \`\\"lastModified\\": \\"2017-12-19T15:53:07Z\\"\`, cannot be sent in the request.", "params": Array [ "lastModified", "2017-12-19T15:53:07Z", ], - "path": "lastModified", + "path": "$/lastModified", "position": Object { "column": 25, "line": 4144, @@ -24339,13 +24565,13 @@ Array [ "directives": Object { "R3017": ".*", }, - "jsonPath": "$.created", + "jsonPath": "$['created']", "message": "ReadOnly property \`\\"created\\": \\"2017-12-18T22:40:36Z\\"\`, cannot be sent in the request.", "params": Array [ "created", "2017-12-18T22:40:36Z", ], - "path": "created", + "path": "$/created", "position": Object { "column": 20, "line": 4137, @@ -24367,13 +24593,13 @@ Array [ "directives": Object { "R3017": ".*", }, - "jsonPath": "$.status", + "jsonPath": "$['status']", "message": "ReadOnly property \`\\"status\\": \\"Completed\\"\`, cannot be sent in the request.", "params": Array [ "status", "Completed", ], - "path": "status", + "path": "$/status", "position": Object { "column": 19, "line": 4131, @@ -24395,13 +24621,13 @@ Array [ "directives": Object { "R3017": ".*", }, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"e31a14ab-5d78-4f7b-a267-3a1e4fd8a758\\"\`, cannot be sent in the request.", "params": Array [ "id", "e31a14ab-5d78-4f7b-a267-3a1e4fd8a758", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 4118, @@ -24455,13 +24681,13 @@ Array [ "directives": Object { "R3017": ".*", }, - "jsonPath": "$.imageCount", + "jsonPath": "$['imageCount']", "message": "ReadOnly property \`\\"imageCount\\": 0\`, cannot be sent in the request.", "params": Array [ "imageCount", 0, ], - "path": "imageCount", + "path": "$/imageCount", "position": Object { "column": 23, "line": 4351, @@ -24483,13 +24709,13 @@ Array [ "directives": Object { "R3017": ".*", }, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"9e27bc1b-7ae7-4e3b-a4e5-36153479dc01\\"\`, cannot be sent in the request.", "params": Array [ "id", "9e27bc1b-7ae7-4e3b-a4e5-36153479dc01", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 4318, @@ -24763,13 +24989,13 @@ Array [ "details": Object { "code": "INVALID_TYPE", "directives": Object {}, - "jsonPath": "", + "jsonPath": "$", "message": "Expected type object but found type string", "params": Array [ "object", "string", ], - "path": "", + "path": "$", "position": Object { "column": 17, "line": 44, @@ -24788,13 +25014,13 @@ Array [ "details": Object { "code": "INVALID_TYPE", "directives": Object {}, - "jsonPath": "", + "jsonPath": "$", "message": "Expected type object but found type string", "params": Array [ "object", "string", ], - "path": "", + "path": "$", "position": Object { "column": 17, "line": 44, @@ -24813,13 +25039,13 @@ Array [ "details": Object { "code": "INVALID_TYPE", "directives": Object {}, - "jsonPath": "", + "jsonPath": "$", "message": "Expected type object but found type string", "params": Array [ "object", "string", ], - "path": "", + "path": "$", "position": Object { "column": 17, "line": 44, @@ -24966,13 +25192,13 @@ Array [ "details": Object { "code": "INVALID_TYPE", "directives": Object {}, - "jsonPath": "", + "jsonPath": "$", "message": "Expected type object but found type string", "params": Array [ "object", "string", ], - "path": "", + "path": "$", "position": Object { "column": 17, "line": 44, @@ -25087,13 +25313,13 @@ Array [ "details": Object { "code": "INVALID_TYPE", "directives": Object {}, - "jsonPath": "", + "jsonPath": "$", "message": "Expected type object but found type string", "params": Array [ "object", "string", ], - "path": "", + "path": "$", "position": Object { "column": 17, "line": 44, @@ -25209,58 +25435,58 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.pivotSuggestions[0].suggestions[0].thumbnail._type", + "jsonPath": "$['pivotSuggestions'][0]['suggestions'][0]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "pivotSuggestions/0/suggestions/0/thumbnail/_type", + "path": "$/pivotSuggestions/0/suggestions/0/thumbnail/_type", "position": Object { "column": 20, "line": 854, }, "similarJsonPaths": Array [ - "$.pivotSuggestions[0].suggestions[1].thumbnail._type", - "$.pivotSuggestions[0].suggestions[2].thumbnail._type", - "$.pivotSuggestions[0].suggestions[3].thumbnail._type", - "$.pivotSuggestions[0].suggestions[4].thumbnail._type", - "$.pivotSuggestions[0].suggestions[5].thumbnail._type", - "$.pivotSuggestions[0].suggestions[6].thumbnail._type", - "$.pivotSuggestions[0].suggestions[7].thumbnail._type", - "$.pivotSuggestions[0].suggestions[8].thumbnail._type", - "$.pivotSuggestions[0].suggestions[9].thumbnail._type", - "$.pivotSuggestions[0].suggestions[10].thumbnail._type", - "$.pivotSuggestions[0].suggestions[11].thumbnail._type", - "$.pivotSuggestions[0].suggestions[12].thumbnail._type", - "$.pivotSuggestions[0].suggestions[13].thumbnail._type", - "$.pivotSuggestions[0].suggestions[14].thumbnail._type", - "$.pivotSuggestions[0].suggestions[15].thumbnail._type", - "$.pivotSuggestions[0].suggestions[16].thumbnail._type", - "$.pivotSuggestions[0].suggestions[17].thumbnail._type", - "$.pivotSuggestions[0].suggestions[18].thumbnail._type", - "$.pivotSuggestions[0].suggestions[19].thumbnail._type", + "$['pivotSuggestions'][0]['suggestions'][1]['thumbnail']['_type']", + "$['pivotSuggestions'][0]['suggestions'][2]['thumbnail']['_type']", + "$['pivotSuggestions'][0]['suggestions'][3]['thumbnail']['_type']", + "$['pivotSuggestions'][0]['suggestions'][4]['thumbnail']['_type']", + "$['pivotSuggestions'][0]['suggestions'][5]['thumbnail']['_type']", + "$['pivotSuggestions'][0]['suggestions'][6]['thumbnail']['_type']", + "$['pivotSuggestions'][0]['suggestions'][7]['thumbnail']['_type']", + "$['pivotSuggestions'][0]['suggestions'][8]['thumbnail']['_type']", + "$['pivotSuggestions'][0]['suggestions'][9]['thumbnail']['_type']", + "$['pivotSuggestions'][0]['suggestions'][10]['thumbnail']['_type']", + "$['pivotSuggestions'][0]['suggestions'][11]['thumbnail']['_type']", + "$['pivotSuggestions'][0]['suggestions'][12]['thumbnail']['_type']", + "$['pivotSuggestions'][0]['suggestions'][13]['thumbnail']['_type']", + "$['pivotSuggestions'][0]['suggestions'][14]['thumbnail']['_type']", + "$['pivotSuggestions'][0]['suggestions'][15]['thumbnail']['_type']", + "$['pivotSuggestions'][0]['suggestions'][16]['thumbnail']['_type']", + "$['pivotSuggestions'][0]['suggestions'][17]['thumbnail']['_type']", + "$['pivotSuggestions'][0]['suggestions'][18]['thumbnail']['_type']", + "$['pivotSuggestions'][0]['suggestions'][19]['thumbnail']['_type']", ], "similarPaths": Array [ - "pivotSuggestions/0/suggestions/1/thumbnail/_type", - "pivotSuggestions/0/suggestions/2/thumbnail/_type", - "pivotSuggestions/0/suggestions/3/thumbnail/_type", - "pivotSuggestions/0/suggestions/4/thumbnail/_type", - "pivotSuggestions/0/suggestions/5/thumbnail/_type", - "pivotSuggestions/0/suggestions/6/thumbnail/_type", - "pivotSuggestions/0/suggestions/7/thumbnail/_type", - "pivotSuggestions/0/suggestions/8/thumbnail/_type", - "pivotSuggestions/0/suggestions/9/thumbnail/_type", - "pivotSuggestions/0/suggestions/10/thumbnail/_type", - "pivotSuggestions/0/suggestions/11/thumbnail/_type", - "pivotSuggestions/0/suggestions/12/thumbnail/_type", - "pivotSuggestions/0/suggestions/13/thumbnail/_type", - "pivotSuggestions/0/suggestions/14/thumbnail/_type", - "pivotSuggestions/0/suggestions/15/thumbnail/_type", - "pivotSuggestions/0/suggestions/16/thumbnail/_type", - "pivotSuggestions/0/suggestions/17/thumbnail/_type", - "pivotSuggestions/0/suggestions/18/thumbnail/_type", - "pivotSuggestions/0/suggestions/19/thumbnail/_type", + "$/pivotSuggestions/0/suggestions/1/thumbnail/_type", + "$/pivotSuggestions/0/suggestions/2/thumbnail/_type", + "$/pivotSuggestions/0/suggestions/3/thumbnail/_type", + "$/pivotSuggestions/0/suggestions/4/thumbnail/_type", + "$/pivotSuggestions/0/suggestions/5/thumbnail/_type", + "$/pivotSuggestions/0/suggestions/6/thumbnail/_type", + "$/pivotSuggestions/0/suggestions/7/thumbnail/_type", + "$/pivotSuggestions/0/suggestions/8/thumbnail/_type", + "$/pivotSuggestions/0/suggestions/9/thumbnail/_type", + "$/pivotSuggestions/0/suggestions/10/thumbnail/_type", + "$/pivotSuggestions/0/suggestions/11/thumbnail/_type", + "$/pivotSuggestions/0/suggestions/12/thumbnail/_type", + "$/pivotSuggestions/0/suggestions/13/thumbnail/_type", + "$/pivotSuggestions/0/suggestions/14/thumbnail/_type", + "$/pivotSuggestions/0/suggestions/15/thumbnail/_type", + "$/pivotSuggestions/0/suggestions/16/thumbnail/_type", + "$/pivotSuggestions/0/suggestions/17/thumbnail/_type", + "$/pivotSuggestions/0/suggestions/18/thumbnail/_type", + "$/pivotSuggestions/0/suggestions/19/thumbnail/_type", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/ImageSearch.json", @@ -25277,106 +25503,106 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.queryExpansions[0].thumbnail._type", + "jsonPath": "$['queryExpansions'][0]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "queryExpansions/0/thumbnail/_type", + "path": "$/queryExpansions/0/thumbnail/_type", "position": Object { "column": 20, "line": 854, }, "similarJsonPaths": Array [ - "$.queryExpansions[1].thumbnail._type", - "$.queryExpansions[2].thumbnail._type", - "$.queryExpansions[3].thumbnail._type", - "$.queryExpansions[4].thumbnail._type", - "$.queryExpansions[5].thumbnail._type", - "$.queryExpansions[6].thumbnail._type", - "$.queryExpansions[7].thumbnail._type", - "$.queryExpansions[8].thumbnail._type", - "$.queryExpansions[9].thumbnail._type", - "$.queryExpansions[10].thumbnail._type", - "$.queryExpansions[11].thumbnail._type", - "$.queryExpansions[12].thumbnail._type", - "$.queryExpansions[13].thumbnail._type", - "$.queryExpansions[14].thumbnail._type", - "$.queryExpansions[15].thumbnail._type", - "$.queryExpansions[16].thumbnail._type", - "$.queryExpansions[17].thumbnail._type", - "$.queryExpansions[18].thumbnail._type", - "$.queryExpansions[19].thumbnail._type", - "$.queryExpansions[20].thumbnail._type", - "$.queryExpansions[21].thumbnail._type", - "$.queryExpansions[22].thumbnail._type", - "$.queryExpansions[23].thumbnail._type", - "$.queryExpansions[24].thumbnail._type", - "$.queryExpansions[25].thumbnail._type", - "$.queryExpansions[26].thumbnail._type", - "$.queryExpansions[27].thumbnail._type", - "$.queryExpansions[28].thumbnail._type", - "$.queryExpansions[29].thumbnail._type", - "$.queryExpansions[30].thumbnail._type", - "$.queryExpansions[31].thumbnail._type", - "$.queryExpansions[32].thumbnail._type", - "$.queryExpansions[33].thumbnail._type", - "$.queryExpansions[34].thumbnail._type", - "$.queryExpansions[35].thumbnail._type", - "$.queryExpansions[36].thumbnail._type", - "$.queryExpansions[37].thumbnail._type", - "$.queryExpansions[38].thumbnail._type", - "$.queryExpansions[39].thumbnail._type", - "$.queryExpansions[40].thumbnail._type", - "$.queryExpansions[41].thumbnail._type", - "$.queryExpansions[42].thumbnail._type", - "$.queryExpansions[43].thumbnail._type", + "$['queryExpansions'][1]['thumbnail']['_type']", + "$['queryExpansions'][2]['thumbnail']['_type']", + "$['queryExpansions'][3]['thumbnail']['_type']", + "$['queryExpansions'][4]['thumbnail']['_type']", + "$['queryExpansions'][5]['thumbnail']['_type']", + "$['queryExpansions'][6]['thumbnail']['_type']", + "$['queryExpansions'][7]['thumbnail']['_type']", + "$['queryExpansions'][8]['thumbnail']['_type']", + "$['queryExpansions'][9]['thumbnail']['_type']", + "$['queryExpansions'][10]['thumbnail']['_type']", + "$['queryExpansions'][11]['thumbnail']['_type']", + "$['queryExpansions'][12]['thumbnail']['_type']", + "$['queryExpansions'][13]['thumbnail']['_type']", + "$['queryExpansions'][14]['thumbnail']['_type']", + "$['queryExpansions'][15]['thumbnail']['_type']", + "$['queryExpansions'][16]['thumbnail']['_type']", + "$['queryExpansions'][17]['thumbnail']['_type']", + "$['queryExpansions'][18]['thumbnail']['_type']", + "$['queryExpansions'][19]['thumbnail']['_type']", + "$['queryExpansions'][20]['thumbnail']['_type']", + "$['queryExpansions'][21]['thumbnail']['_type']", + "$['queryExpansions'][22]['thumbnail']['_type']", + "$['queryExpansions'][23]['thumbnail']['_type']", + "$['queryExpansions'][24]['thumbnail']['_type']", + "$['queryExpansions'][25]['thumbnail']['_type']", + "$['queryExpansions'][26]['thumbnail']['_type']", + "$['queryExpansions'][27]['thumbnail']['_type']", + "$['queryExpansions'][28]['thumbnail']['_type']", + "$['queryExpansions'][29]['thumbnail']['_type']", + "$['queryExpansions'][30]['thumbnail']['_type']", + "$['queryExpansions'][31]['thumbnail']['_type']", + "$['queryExpansions'][32]['thumbnail']['_type']", + "$['queryExpansions'][33]['thumbnail']['_type']", + "$['queryExpansions'][34]['thumbnail']['_type']", + "$['queryExpansions'][35]['thumbnail']['_type']", + "$['queryExpansions'][36]['thumbnail']['_type']", + "$['queryExpansions'][37]['thumbnail']['_type']", + "$['queryExpansions'][38]['thumbnail']['_type']", + "$['queryExpansions'][39]['thumbnail']['_type']", + "$['queryExpansions'][40]['thumbnail']['_type']", + "$['queryExpansions'][41]['thumbnail']['_type']", + "$['queryExpansions'][42]['thumbnail']['_type']", + "$['queryExpansions'][43]['thumbnail']['_type']", ], "similarPaths": Array [ - "queryExpansions/1/thumbnail/_type", - "queryExpansions/2/thumbnail/_type", - "queryExpansions/3/thumbnail/_type", - "queryExpansions/4/thumbnail/_type", - "queryExpansions/5/thumbnail/_type", - "queryExpansions/6/thumbnail/_type", - "queryExpansions/7/thumbnail/_type", - "queryExpansions/8/thumbnail/_type", - "queryExpansions/9/thumbnail/_type", - "queryExpansions/10/thumbnail/_type", - "queryExpansions/11/thumbnail/_type", - "queryExpansions/12/thumbnail/_type", - "queryExpansions/13/thumbnail/_type", - "queryExpansions/14/thumbnail/_type", - "queryExpansions/15/thumbnail/_type", - "queryExpansions/16/thumbnail/_type", - "queryExpansions/17/thumbnail/_type", - "queryExpansions/18/thumbnail/_type", - "queryExpansions/19/thumbnail/_type", - "queryExpansions/20/thumbnail/_type", - "queryExpansions/21/thumbnail/_type", - "queryExpansions/22/thumbnail/_type", - "queryExpansions/23/thumbnail/_type", - "queryExpansions/24/thumbnail/_type", - "queryExpansions/25/thumbnail/_type", - "queryExpansions/26/thumbnail/_type", - "queryExpansions/27/thumbnail/_type", - "queryExpansions/28/thumbnail/_type", - "queryExpansions/29/thumbnail/_type", - "queryExpansions/30/thumbnail/_type", - "queryExpansions/31/thumbnail/_type", - "queryExpansions/32/thumbnail/_type", - "queryExpansions/33/thumbnail/_type", - "queryExpansions/34/thumbnail/_type", - "queryExpansions/35/thumbnail/_type", - "queryExpansions/36/thumbnail/_type", - "queryExpansions/37/thumbnail/_type", - "queryExpansions/38/thumbnail/_type", - "queryExpansions/39/thumbnail/_type", - "queryExpansions/40/thumbnail/_type", - "queryExpansions/41/thumbnail/_type", - "queryExpansions/42/thumbnail/_type", - "queryExpansions/43/thumbnail/_type", + "$/queryExpansions/1/thumbnail/_type", + "$/queryExpansions/2/thumbnail/_type", + "$/queryExpansions/3/thumbnail/_type", + "$/queryExpansions/4/thumbnail/_type", + "$/queryExpansions/5/thumbnail/_type", + "$/queryExpansions/6/thumbnail/_type", + "$/queryExpansions/7/thumbnail/_type", + "$/queryExpansions/8/thumbnail/_type", + "$/queryExpansions/9/thumbnail/_type", + "$/queryExpansions/10/thumbnail/_type", + "$/queryExpansions/11/thumbnail/_type", + "$/queryExpansions/12/thumbnail/_type", + "$/queryExpansions/13/thumbnail/_type", + "$/queryExpansions/14/thumbnail/_type", + "$/queryExpansions/15/thumbnail/_type", + "$/queryExpansions/16/thumbnail/_type", + "$/queryExpansions/17/thumbnail/_type", + "$/queryExpansions/18/thumbnail/_type", + "$/queryExpansions/19/thumbnail/_type", + "$/queryExpansions/20/thumbnail/_type", + "$/queryExpansions/21/thumbnail/_type", + "$/queryExpansions/22/thumbnail/_type", + "$/queryExpansions/23/thumbnail/_type", + "$/queryExpansions/24/thumbnail/_type", + "$/queryExpansions/25/thumbnail/_type", + "$/queryExpansions/26/thumbnail/_type", + "$/queryExpansions/27/thumbnail/_type", + "$/queryExpansions/28/thumbnail/_type", + "$/queryExpansions/29/thumbnail/_type", + "$/queryExpansions/30/thumbnail/_type", + "$/queryExpansions/31/thumbnail/_type", + "$/queryExpansions/32/thumbnail/_type", + "$/queryExpansions/33/thumbnail/_type", + "$/queryExpansions/34/thumbnail/_type", + "$/queryExpansions/35/thumbnail/_type", + "$/queryExpansions/36/thumbnail/_type", + "$/queryExpansions/37/thumbnail/_type", + "$/queryExpansions/38/thumbnail/_type", + "$/queryExpansions/39/thumbnail/_type", + "$/queryExpansions/40/thumbnail/_type", + "$/queryExpansions/41/thumbnail/_type", + "$/queryExpansions/42/thumbnail/_type", + "$/queryExpansions/43/thumbnail/_type", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/ImageSearch.json", @@ -25393,13 +25619,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[34].thumbnail._type", + "jsonPath": "$['value'][34]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/34/thumbnail/_type", + "path": "$/value/34/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -25419,7 +25645,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[34]._type", + "jsonPath": "$['value'][34]['_type']", "jsonPosition": Object { "column": 21, "line": 798, @@ -25429,7 +25655,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/34/_type", + "path": "$/value/34/_type", "position": Object { "column": 20, "line": 854, @@ -25449,13 +25675,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[33].thumbnail._type", + "jsonPath": "$['value'][33]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/33/thumbnail/_type", + "path": "$/value/33/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -25475,7 +25701,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[33]._type", + "jsonPath": "$['value'][33]['_type']", "jsonPosition": Object { "column": 21, "line": 775, @@ -25485,7 +25711,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/33/_type", + "path": "$/value/33/_type", "position": Object { "column": 20, "line": 854, @@ -25505,13 +25731,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[32].thumbnail._type", + "jsonPath": "$['value'][32]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/32/thumbnail/_type", + "path": "$/value/32/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -25531,7 +25757,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[32]._type", + "jsonPath": "$['value'][32]['_type']", "jsonPosition": Object { "column": 21, "line": 752, @@ -25541,7 +25767,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/32/_type", + "path": "$/value/32/_type", "position": Object { "column": 20, "line": 854, @@ -25561,13 +25787,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[31].thumbnail._type", + "jsonPath": "$['value'][31]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/31/thumbnail/_type", + "path": "$/value/31/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -25587,7 +25813,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[31]._type", + "jsonPath": "$['value'][31]['_type']", "jsonPosition": Object { "column": 21, "line": 729, @@ -25597,7 +25823,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/31/_type", + "path": "$/value/31/_type", "position": Object { "column": 20, "line": 854, @@ -25617,13 +25843,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[30].thumbnail._type", + "jsonPath": "$['value'][30]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/30/thumbnail/_type", + "path": "$/value/30/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -25643,7 +25869,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[30]._type", + "jsonPath": "$['value'][30]['_type']", "jsonPosition": Object { "column": 21, "line": 706, @@ -25653,7 +25879,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/30/_type", + "path": "$/value/30/_type", "position": Object { "column": 20, "line": 854, @@ -25673,13 +25899,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[29].thumbnail._type", + "jsonPath": "$['value'][29]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/29/thumbnail/_type", + "path": "$/value/29/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -25699,7 +25925,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[29]._type", + "jsonPath": "$['value'][29]['_type']", "jsonPosition": Object { "column": 21, "line": 683, @@ -25709,7 +25935,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/29/_type", + "path": "$/value/29/_type", "position": Object { "column": 20, "line": 854, @@ -25729,13 +25955,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[28].thumbnail._type", + "jsonPath": "$['value'][28]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/28/thumbnail/_type", + "path": "$/value/28/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -25755,7 +25981,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[28]._type", + "jsonPath": "$['value'][28]['_type']", "jsonPosition": Object { "column": 21, "line": 660, @@ -25765,7 +25991,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/28/_type", + "path": "$/value/28/_type", "position": Object { "column": 20, "line": 854, @@ -25785,13 +26011,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[27].thumbnail._type", + "jsonPath": "$['value'][27]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/27/thumbnail/_type", + "path": "$/value/27/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -25811,7 +26037,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[27]._type", + "jsonPath": "$['value'][27]['_type']", "jsonPosition": Object { "column": 21, "line": 637, @@ -25821,7 +26047,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/27/_type", + "path": "$/value/27/_type", "position": Object { "column": 20, "line": 854, @@ -25841,13 +26067,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[26].thumbnail._type", + "jsonPath": "$['value'][26]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/26/thumbnail/_type", + "path": "$/value/26/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -25867,7 +26093,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[26]._type", + "jsonPath": "$['value'][26]['_type']", "jsonPosition": Object { "column": 21, "line": 614, @@ -25877,7 +26103,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/26/_type", + "path": "$/value/26/_type", "position": Object { "column": 20, "line": 854, @@ -25897,13 +26123,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[25].thumbnail._type", + "jsonPath": "$['value'][25]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/25/thumbnail/_type", + "path": "$/value/25/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -25923,7 +26149,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[25]._type", + "jsonPath": "$['value'][25]['_type']", "jsonPosition": Object { "column": 21, "line": 591, @@ -25933,7 +26159,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/25/_type", + "path": "$/value/25/_type", "position": Object { "column": 20, "line": 854, @@ -25953,13 +26179,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[24].thumbnail._type", + "jsonPath": "$['value'][24]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/24/thumbnail/_type", + "path": "$/value/24/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -25979,7 +26205,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[24]._type", + "jsonPath": "$['value'][24]['_type']", "jsonPosition": Object { "column": 21, "line": 568, @@ -25989,7 +26215,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/24/_type", + "path": "$/value/24/_type", "position": Object { "column": 20, "line": 854, @@ -26009,13 +26235,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[23].thumbnail._type", + "jsonPath": "$['value'][23]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/23/thumbnail/_type", + "path": "$/value/23/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -26035,7 +26261,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[23]._type", + "jsonPath": "$['value'][23]['_type']", "jsonPosition": Object { "column": 21, "line": 545, @@ -26045,7 +26271,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/23/_type", + "path": "$/value/23/_type", "position": Object { "column": 20, "line": 854, @@ -26065,13 +26291,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[22].thumbnail._type", + "jsonPath": "$['value'][22]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/22/thumbnail/_type", + "path": "$/value/22/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -26091,7 +26317,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[22]._type", + "jsonPath": "$['value'][22]['_type']", "jsonPosition": Object { "column": 21, "line": 522, @@ -26101,7 +26327,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/22/_type", + "path": "$/value/22/_type", "position": Object { "column": 20, "line": 854, @@ -26121,13 +26347,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[21].thumbnail._type", + "jsonPath": "$['value'][21]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/21/thumbnail/_type", + "path": "$/value/21/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -26147,7 +26373,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[21]._type", + "jsonPath": "$['value'][21]['_type']", "jsonPosition": Object { "column": 21, "line": 499, @@ -26157,7 +26383,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/21/_type", + "path": "$/value/21/_type", "position": Object { "column": 20, "line": 854, @@ -26177,13 +26403,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[20].thumbnail._type", + "jsonPath": "$['value'][20]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/20/thumbnail/_type", + "path": "$/value/20/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -26203,7 +26429,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[20]._type", + "jsonPath": "$['value'][20]['_type']", "jsonPosition": Object { "column": 21, "line": 476, @@ -26213,7 +26439,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/20/_type", + "path": "$/value/20/_type", "position": Object { "column": 20, "line": 854, @@ -26233,13 +26459,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[19].thumbnail._type", + "jsonPath": "$['value'][19]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/19/thumbnail/_type", + "path": "$/value/19/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -26259,7 +26485,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[19]._type", + "jsonPath": "$['value'][19]['_type']", "jsonPosition": Object { "column": 21, "line": 453, @@ -26269,7 +26495,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/19/_type", + "path": "$/value/19/_type", "position": Object { "column": 20, "line": 854, @@ -26289,13 +26515,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[18].thumbnail._type", + "jsonPath": "$['value'][18]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/18/thumbnail/_type", + "path": "$/value/18/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -26315,7 +26541,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[18]._type", + "jsonPath": "$['value'][18]['_type']", "jsonPosition": Object { "column": 21, "line": 430, @@ -26325,7 +26551,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/18/_type", + "path": "$/value/18/_type", "position": Object { "column": 20, "line": 854, @@ -26345,13 +26571,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[17].thumbnail._type", + "jsonPath": "$['value'][17]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/17/thumbnail/_type", + "path": "$/value/17/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -26371,7 +26597,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[17]._type", + "jsonPath": "$['value'][17]['_type']", "jsonPosition": Object { "column": 21, "line": 407, @@ -26381,7 +26607,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/17/_type", + "path": "$/value/17/_type", "position": Object { "column": 20, "line": 854, @@ -26401,13 +26627,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[16].thumbnail._type", + "jsonPath": "$['value'][16]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/16/thumbnail/_type", + "path": "$/value/16/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -26427,7 +26653,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[16]._type", + "jsonPath": "$['value'][16]['_type']", "jsonPosition": Object { "column": 21, "line": 384, @@ -26437,7 +26663,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/16/_type", + "path": "$/value/16/_type", "position": Object { "column": 20, "line": 854, @@ -26457,13 +26683,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[15].thumbnail._type", + "jsonPath": "$['value'][15]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/15/thumbnail/_type", + "path": "$/value/15/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -26483,7 +26709,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[15]._type", + "jsonPath": "$['value'][15]['_type']", "jsonPosition": Object { "column": 21, "line": 361, @@ -26493,7 +26719,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/15/_type", + "path": "$/value/15/_type", "position": Object { "column": 20, "line": 854, @@ -26513,13 +26739,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[14].thumbnail._type", + "jsonPath": "$['value'][14]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/14/thumbnail/_type", + "path": "$/value/14/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -26539,7 +26765,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[14]._type", + "jsonPath": "$['value'][14]['_type']", "jsonPosition": Object { "column": 21, "line": 338, @@ -26549,7 +26775,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/14/_type", + "path": "$/value/14/_type", "position": Object { "column": 20, "line": 854, @@ -26569,13 +26795,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[13].thumbnail._type", + "jsonPath": "$['value'][13]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/13/thumbnail/_type", + "path": "$/value/13/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -26595,7 +26821,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[13]._type", + "jsonPath": "$['value'][13]['_type']", "jsonPosition": Object { "column": 21, "line": 315, @@ -26605,7 +26831,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/13/_type", + "path": "$/value/13/_type", "position": Object { "column": 20, "line": 854, @@ -26625,13 +26851,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[12].thumbnail._type", + "jsonPath": "$['value'][12]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/12/thumbnail/_type", + "path": "$/value/12/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -26651,7 +26877,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[12]._type", + "jsonPath": "$['value'][12]['_type']", "jsonPosition": Object { "column": 21, "line": 292, @@ -26661,7 +26887,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/12/_type", + "path": "$/value/12/_type", "position": Object { "column": 20, "line": 854, @@ -26681,13 +26907,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[11].thumbnail._type", + "jsonPath": "$['value'][11]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/11/thumbnail/_type", + "path": "$/value/11/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -26707,7 +26933,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[11]._type", + "jsonPath": "$['value'][11]['_type']", "jsonPosition": Object { "column": 21, "line": 269, @@ -26717,7 +26943,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/11/_type", + "path": "$/value/11/_type", "position": Object { "column": 20, "line": 854, @@ -26737,13 +26963,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[10].thumbnail._type", + "jsonPath": "$['value'][10]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/10/thumbnail/_type", + "path": "$/value/10/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -26763,7 +26989,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[10]._type", + "jsonPath": "$['value'][10]['_type']", "jsonPosition": Object { "column": 21, "line": 246, @@ -26773,7 +26999,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/10/_type", + "path": "$/value/10/_type", "position": Object { "column": 20, "line": 854, @@ -26793,13 +27019,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[9].thumbnail._type", + "jsonPath": "$['value'][9]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/9/thumbnail/_type", + "path": "$/value/9/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -26819,7 +27045,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[9]._type", + "jsonPath": "$['value'][9]['_type']", "jsonPosition": Object { "column": 21, "line": 223, @@ -26829,7 +27055,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/9/_type", + "path": "$/value/9/_type", "position": Object { "column": 20, "line": 854, @@ -26849,13 +27075,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[8].thumbnail._type", + "jsonPath": "$['value'][8]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/8/thumbnail/_type", + "path": "$/value/8/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -26875,7 +27101,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[8]._type", + "jsonPath": "$['value'][8]['_type']", "jsonPosition": Object { "column": 21, "line": 200, @@ -26885,7 +27111,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/8/_type", + "path": "$/value/8/_type", "position": Object { "column": 20, "line": 854, @@ -26905,13 +27131,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[7].thumbnail._type", + "jsonPath": "$['value'][7]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/7/thumbnail/_type", + "path": "$/value/7/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -26931,7 +27157,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[7]._type", + "jsonPath": "$['value'][7]['_type']", "jsonPosition": Object { "column": 21, "line": 177, @@ -26941,7 +27167,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/7/_type", + "path": "$/value/7/_type", "position": Object { "column": 20, "line": 854, @@ -26961,13 +27187,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[6].thumbnail._type", + "jsonPath": "$['value'][6]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/6/thumbnail/_type", + "path": "$/value/6/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -26987,7 +27213,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[6]._type", + "jsonPath": "$['value'][6]['_type']", "jsonPosition": Object { "column": 21, "line": 154, @@ -26997,7 +27223,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/6/_type", + "path": "$/value/6/_type", "position": Object { "column": 20, "line": 854, @@ -27017,13 +27243,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[5].thumbnail._type", + "jsonPath": "$['value'][5]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/5/thumbnail/_type", + "path": "$/value/5/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -27043,7 +27269,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[5]._type", + "jsonPath": "$['value'][5]['_type']", "jsonPosition": Object { "column": 21, "line": 131, @@ -27053,7 +27279,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/5/_type", + "path": "$/value/5/_type", "position": Object { "column": 20, "line": 854, @@ -27073,13 +27299,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[4].thumbnail._type", + "jsonPath": "$['value'][4]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/4/thumbnail/_type", + "path": "$/value/4/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -27099,7 +27325,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[4]._type", + "jsonPath": "$['value'][4]['_type']", "jsonPosition": Object { "column": 21, "line": 108, @@ -27109,7 +27335,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/4/_type", + "path": "$/value/4/_type", "position": Object { "column": 20, "line": 854, @@ -27129,13 +27355,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[3].thumbnail._type", + "jsonPath": "$['value'][3]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/3/thumbnail/_type", + "path": "$/value/3/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -27155,7 +27381,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[3]._type", + "jsonPath": "$['value'][3]['_type']", "jsonPosition": Object { "column": 21, "line": 85, @@ -27165,7 +27391,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/3/_type", + "path": "$/value/3/_type", "position": Object { "column": 20, "line": 854, @@ -27185,13 +27411,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[2].thumbnail._type", + "jsonPath": "$['value'][2]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/2/thumbnail/_type", + "path": "$/value/2/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -27211,7 +27437,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[2]._type", + "jsonPath": "$['value'][2]['_type']", "jsonPosition": Object { "column": 21, "line": 62, @@ -27221,7 +27447,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/2/_type", + "path": "$/value/2/_type", "position": Object { "column": 20, "line": 854, @@ -27241,13 +27467,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[1].thumbnail._type", + "jsonPath": "$['value'][1]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/1/thumbnail/_type", + "path": "$/value/1/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -27267,7 +27493,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[1]._type", + "jsonPath": "$['value'][1]['_type']", "jsonPosition": Object { "column": 21, "line": 39, @@ -27277,7 +27503,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/1/_type", + "path": "$/value/1/_type", "position": Object { "column": 20, "line": 854, @@ -27297,13 +27523,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[0].thumbnail._type", + "jsonPath": "$['value'][0]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/0/thumbnail/_type", + "path": "$/value/0/thumbnail/_type", "position": Object { "column": 20, "line": 854, @@ -27323,7 +27549,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[0]._type", + "jsonPath": "$['value'][0]['_type']", "jsonPosition": Object { "column": 21, "line": 16, @@ -27333,7 +27559,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/0/_type", + "path": "$/value/0/_type", "position": Object { "column": 20, "line": 854, @@ -27374,140 +27600,140 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.visuallySimilarImages.value[0].thumbnail._type", + "jsonPath": "$['visuallySimilarImages']['value'][0]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageDetailRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "visuallySimilarImages/value/0/thumbnail/_type", + "path": "$/visuallySimilarImages/value/0/thumbnail/_type", "position": Object { "column": 20, "line": 854, }, "similarJsonPaths": Array [ - "$.visuallySimilarImages.value[1].thumbnail._type", - "$.visuallySimilarImages.value[2].thumbnail._type", - "$.visuallySimilarImages.value[3].thumbnail._type", - "$.visuallySimilarImages.value[4].thumbnail._type", - "$.visuallySimilarImages.value[5].thumbnail._type", - "$.visuallySimilarImages.value[6].thumbnail._type", - "$.visuallySimilarImages.value[7].thumbnail._type", - "$.visuallySimilarImages.value[8].thumbnail._type", - "$.visuallySimilarImages.value[9].thumbnail._type", - "$.visuallySimilarImages.value[10].thumbnail._type", - "$.visuallySimilarImages.value[11].thumbnail._type", - "$.visuallySimilarImages.value[12].thumbnail._type", - "$.visuallySimilarImages.value[13].thumbnail._type", - "$.visuallySimilarImages.value[14].thumbnail._type", - "$.visuallySimilarImages.value[15].thumbnail._type", - "$.visuallySimilarImages.value[16].thumbnail._type", - "$.visuallySimilarImages.value[17].thumbnail._type", - "$.visuallySimilarImages.value[18].thumbnail._type", - "$.visuallySimilarImages.value[19].thumbnail._type", - "$.visuallySimilarImages.value[20].thumbnail._type", - "$.visuallySimilarImages.value[21].thumbnail._type", - "$.visuallySimilarImages.value[22].thumbnail._type", - "$.visuallySimilarImages.value[23].thumbnail._type", - "$.visuallySimilarImages.value[24].thumbnail._type", - "$.visuallySimilarImages.value[25].thumbnail._type", - "$.visuallySimilarImages.value[26].thumbnail._type", - "$.visuallySimilarImages.value[27].thumbnail._type", - "$.visuallySimilarImages.value[28].thumbnail._type", - "$.visuallySimilarImages.value[29].thumbnail._type", - "$.visuallySimilarImages.value[30].thumbnail._type", - "$.visuallySimilarImages.value[31].thumbnail._type", - "$.visuallySimilarImages.value[32].thumbnail._type", - "$.visuallySimilarImages.value[33].thumbnail._type", - "$.visuallySimilarImages.value[34].thumbnail._type", - "$.visuallySimilarImages.value[35].thumbnail._type", - "$.visuallySimilarImages.value[36].thumbnail._type", - "$.visuallySimilarImages.value[37].thumbnail._type", - "$.visuallySimilarImages.value[38].thumbnail._type", - "$.visuallySimilarImages.value[39].thumbnail._type", - "$.visuallySimilarImages.value[40].thumbnail._type", - "$.visuallySimilarImages.value[41].thumbnail._type", - "$.visuallySimilarImages.value[42].thumbnail._type", - "$.visuallySimilarImages.value[43].thumbnail._type", - "$.visuallySimilarImages.value[44].thumbnail._type", - "$.visuallySimilarImages.value[45].thumbnail._type", - "$.visuallySimilarImages.value[46].thumbnail._type", - "$.visuallySimilarImages.value[47].thumbnail._type", - "$.visuallySimilarImages.value[48].thumbnail._type", - "$.visuallySimilarImages.value[49].thumbnail._type", - "$.visuallySimilarImages.value[50].thumbnail._type", - "$.visuallySimilarImages.value[51].thumbnail._type", - "$.visuallySimilarImages.value[52].thumbnail._type", - "$.visuallySimilarImages.value[53].thumbnail._type", - "$.visuallySimilarImages.value[54].thumbnail._type", - "$.visuallySimilarImages.value[55].thumbnail._type", - "$.visuallySimilarImages.value[56].thumbnail._type", - "$.visuallySimilarImages.value[57].thumbnail._type", - "$.visuallySimilarImages.value[58].thumbnail._type", - "$.visuallySimilarImages.value[59].thumbnail._type", - "$.visuallySimilarImages.value[60].thumbnail._type", + "$['visuallySimilarImages']['value'][1]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][2]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][3]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][4]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][5]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][6]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][7]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][8]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][9]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][10]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][11]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][12]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][13]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][14]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][15]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][16]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][17]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][18]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][19]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][20]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][21]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][22]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][23]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][24]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][25]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][26]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][27]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][28]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][29]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][30]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][31]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][32]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][33]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][34]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][35]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][36]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][37]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][38]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][39]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][40]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][41]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][42]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][43]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][44]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][45]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][46]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][47]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][48]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][49]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][50]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][51]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][52]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][53]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][54]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][55]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][56]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][57]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][58]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][59]['thumbnail']['_type']", + "$['visuallySimilarImages']['value'][60]['thumbnail']['_type']", ], "similarPaths": Array [ - "visuallySimilarImages/value/1/thumbnail/_type", - "visuallySimilarImages/value/2/thumbnail/_type", - "visuallySimilarImages/value/3/thumbnail/_type", - "visuallySimilarImages/value/4/thumbnail/_type", - "visuallySimilarImages/value/5/thumbnail/_type", - "visuallySimilarImages/value/6/thumbnail/_type", - "visuallySimilarImages/value/7/thumbnail/_type", - "visuallySimilarImages/value/8/thumbnail/_type", - "visuallySimilarImages/value/9/thumbnail/_type", - "visuallySimilarImages/value/10/thumbnail/_type", - "visuallySimilarImages/value/11/thumbnail/_type", - "visuallySimilarImages/value/12/thumbnail/_type", - "visuallySimilarImages/value/13/thumbnail/_type", - "visuallySimilarImages/value/14/thumbnail/_type", - "visuallySimilarImages/value/15/thumbnail/_type", - "visuallySimilarImages/value/16/thumbnail/_type", - "visuallySimilarImages/value/17/thumbnail/_type", - "visuallySimilarImages/value/18/thumbnail/_type", - "visuallySimilarImages/value/19/thumbnail/_type", - "visuallySimilarImages/value/20/thumbnail/_type", - "visuallySimilarImages/value/21/thumbnail/_type", - "visuallySimilarImages/value/22/thumbnail/_type", - "visuallySimilarImages/value/23/thumbnail/_type", - "visuallySimilarImages/value/24/thumbnail/_type", - "visuallySimilarImages/value/25/thumbnail/_type", - "visuallySimilarImages/value/26/thumbnail/_type", - "visuallySimilarImages/value/27/thumbnail/_type", - "visuallySimilarImages/value/28/thumbnail/_type", - "visuallySimilarImages/value/29/thumbnail/_type", - "visuallySimilarImages/value/30/thumbnail/_type", - "visuallySimilarImages/value/31/thumbnail/_type", - "visuallySimilarImages/value/32/thumbnail/_type", - "visuallySimilarImages/value/33/thumbnail/_type", - "visuallySimilarImages/value/34/thumbnail/_type", - "visuallySimilarImages/value/35/thumbnail/_type", - "visuallySimilarImages/value/36/thumbnail/_type", - "visuallySimilarImages/value/37/thumbnail/_type", - "visuallySimilarImages/value/38/thumbnail/_type", - "visuallySimilarImages/value/39/thumbnail/_type", - "visuallySimilarImages/value/40/thumbnail/_type", - "visuallySimilarImages/value/41/thumbnail/_type", - "visuallySimilarImages/value/42/thumbnail/_type", - "visuallySimilarImages/value/43/thumbnail/_type", - "visuallySimilarImages/value/44/thumbnail/_type", - "visuallySimilarImages/value/45/thumbnail/_type", - "visuallySimilarImages/value/46/thumbnail/_type", - "visuallySimilarImages/value/47/thumbnail/_type", - "visuallySimilarImages/value/48/thumbnail/_type", - "visuallySimilarImages/value/49/thumbnail/_type", - "visuallySimilarImages/value/50/thumbnail/_type", - "visuallySimilarImages/value/51/thumbnail/_type", - "visuallySimilarImages/value/52/thumbnail/_type", - "visuallySimilarImages/value/53/thumbnail/_type", - "visuallySimilarImages/value/54/thumbnail/_type", - "visuallySimilarImages/value/55/thumbnail/_type", - "visuallySimilarImages/value/56/thumbnail/_type", - "visuallySimilarImages/value/57/thumbnail/_type", - "visuallySimilarImages/value/58/thumbnail/_type", - "visuallySimilarImages/value/59/thumbnail/_type", - "visuallySimilarImages/value/60/thumbnail/_type", + "$/visuallySimilarImages/value/1/thumbnail/_type", + "$/visuallySimilarImages/value/2/thumbnail/_type", + "$/visuallySimilarImages/value/3/thumbnail/_type", + "$/visuallySimilarImages/value/4/thumbnail/_type", + "$/visuallySimilarImages/value/5/thumbnail/_type", + "$/visuallySimilarImages/value/6/thumbnail/_type", + "$/visuallySimilarImages/value/7/thumbnail/_type", + "$/visuallySimilarImages/value/8/thumbnail/_type", + "$/visuallySimilarImages/value/9/thumbnail/_type", + "$/visuallySimilarImages/value/10/thumbnail/_type", + "$/visuallySimilarImages/value/11/thumbnail/_type", + "$/visuallySimilarImages/value/12/thumbnail/_type", + "$/visuallySimilarImages/value/13/thumbnail/_type", + "$/visuallySimilarImages/value/14/thumbnail/_type", + "$/visuallySimilarImages/value/15/thumbnail/_type", + "$/visuallySimilarImages/value/16/thumbnail/_type", + "$/visuallySimilarImages/value/17/thumbnail/_type", + "$/visuallySimilarImages/value/18/thumbnail/_type", + "$/visuallySimilarImages/value/19/thumbnail/_type", + "$/visuallySimilarImages/value/20/thumbnail/_type", + "$/visuallySimilarImages/value/21/thumbnail/_type", + "$/visuallySimilarImages/value/22/thumbnail/_type", + "$/visuallySimilarImages/value/23/thumbnail/_type", + "$/visuallySimilarImages/value/24/thumbnail/_type", + "$/visuallySimilarImages/value/25/thumbnail/_type", + "$/visuallySimilarImages/value/26/thumbnail/_type", + "$/visuallySimilarImages/value/27/thumbnail/_type", + "$/visuallySimilarImages/value/28/thumbnail/_type", + "$/visuallySimilarImages/value/29/thumbnail/_type", + "$/visuallySimilarImages/value/30/thumbnail/_type", + "$/visuallySimilarImages/value/31/thumbnail/_type", + "$/visuallySimilarImages/value/32/thumbnail/_type", + "$/visuallySimilarImages/value/33/thumbnail/_type", + "$/visuallySimilarImages/value/34/thumbnail/_type", + "$/visuallySimilarImages/value/35/thumbnail/_type", + "$/visuallySimilarImages/value/36/thumbnail/_type", + "$/visuallySimilarImages/value/37/thumbnail/_type", + "$/visuallySimilarImages/value/38/thumbnail/_type", + "$/visuallySimilarImages/value/39/thumbnail/_type", + "$/visuallySimilarImages/value/40/thumbnail/_type", + "$/visuallySimilarImages/value/41/thumbnail/_type", + "$/visuallySimilarImages/value/42/thumbnail/_type", + "$/visuallySimilarImages/value/43/thumbnail/_type", + "$/visuallySimilarImages/value/44/thumbnail/_type", + "$/visuallySimilarImages/value/45/thumbnail/_type", + "$/visuallySimilarImages/value/46/thumbnail/_type", + "$/visuallySimilarImages/value/47/thumbnail/_type", + "$/visuallySimilarImages/value/48/thumbnail/_type", + "$/visuallySimilarImages/value/49/thumbnail/_type", + "$/visuallySimilarImages/value/50/thumbnail/_type", + "$/visuallySimilarImages/value/51/thumbnail/_type", + "$/visuallySimilarImages/value/52/thumbnail/_type", + "$/visuallySimilarImages/value/53/thumbnail/_type", + "$/visuallySimilarImages/value/54/thumbnail/_type", + "$/visuallySimilarImages/value/55/thumbnail/_type", + "$/visuallySimilarImages/value/56/thumbnail/_type", + "$/visuallySimilarImages/value/57/thumbnail/_type", + "$/visuallySimilarImages/value/58/thumbnail/_type", + "$/visuallySimilarImages/value/59/thumbnail/_type", + "$/visuallySimilarImages/value/60/thumbnail/_type", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/ImageSearch.json", @@ -27524,140 +27750,140 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.visuallySimilarImages.value[0]._type", + "jsonPath": "$['visuallySimilarImages']['value'][0]['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageDetailRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "visuallySimilarImages/value/0/_type", + "path": "$/visuallySimilarImages/value/0/_type", "position": Object { "column": 20, "line": 854, }, "similarJsonPaths": Array [ - "$.visuallySimilarImages.value[1]._type", - "$.visuallySimilarImages.value[2]._type", - "$.visuallySimilarImages.value[3]._type", - "$.visuallySimilarImages.value[4]._type", - "$.visuallySimilarImages.value[5]._type", - "$.visuallySimilarImages.value[6]._type", - "$.visuallySimilarImages.value[7]._type", - "$.visuallySimilarImages.value[8]._type", - "$.visuallySimilarImages.value[9]._type", - "$.visuallySimilarImages.value[10]._type", - "$.visuallySimilarImages.value[11]._type", - "$.visuallySimilarImages.value[12]._type", - "$.visuallySimilarImages.value[13]._type", - "$.visuallySimilarImages.value[14]._type", - "$.visuallySimilarImages.value[15]._type", - "$.visuallySimilarImages.value[16]._type", - "$.visuallySimilarImages.value[17]._type", - "$.visuallySimilarImages.value[18]._type", - "$.visuallySimilarImages.value[19]._type", - "$.visuallySimilarImages.value[20]._type", - "$.visuallySimilarImages.value[21]._type", - "$.visuallySimilarImages.value[22]._type", - "$.visuallySimilarImages.value[23]._type", - "$.visuallySimilarImages.value[24]._type", - "$.visuallySimilarImages.value[25]._type", - "$.visuallySimilarImages.value[26]._type", - "$.visuallySimilarImages.value[27]._type", - "$.visuallySimilarImages.value[28]._type", - "$.visuallySimilarImages.value[29]._type", - "$.visuallySimilarImages.value[30]._type", - "$.visuallySimilarImages.value[31]._type", - "$.visuallySimilarImages.value[32]._type", - "$.visuallySimilarImages.value[33]._type", - "$.visuallySimilarImages.value[34]._type", - "$.visuallySimilarImages.value[35]._type", - "$.visuallySimilarImages.value[36]._type", - "$.visuallySimilarImages.value[37]._type", - "$.visuallySimilarImages.value[38]._type", - "$.visuallySimilarImages.value[39]._type", - "$.visuallySimilarImages.value[40]._type", - "$.visuallySimilarImages.value[41]._type", - "$.visuallySimilarImages.value[42]._type", - "$.visuallySimilarImages.value[43]._type", - "$.visuallySimilarImages.value[44]._type", - "$.visuallySimilarImages.value[45]._type", - "$.visuallySimilarImages.value[46]._type", - "$.visuallySimilarImages.value[47]._type", - "$.visuallySimilarImages.value[48]._type", - "$.visuallySimilarImages.value[49]._type", - "$.visuallySimilarImages.value[50]._type", - "$.visuallySimilarImages.value[51]._type", - "$.visuallySimilarImages.value[52]._type", - "$.visuallySimilarImages.value[53]._type", - "$.visuallySimilarImages.value[54]._type", - "$.visuallySimilarImages.value[55]._type", - "$.visuallySimilarImages.value[56]._type", - "$.visuallySimilarImages.value[57]._type", - "$.visuallySimilarImages.value[58]._type", - "$.visuallySimilarImages.value[59]._type", - "$.visuallySimilarImages.value[60]._type", + "$['visuallySimilarImages']['value'][1]['_type']", + "$['visuallySimilarImages']['value'][2]['_type']", + "$['visuallySimilarImages']['value'][3]['_type']", + "$['visuallySimilarImages']['value'][4]['_type']", + "$['visuallySimilarImages']['value'][5]['_type']", + "$['visuallySimilarImages']['value'][6]['_type']", + "$['visuallySimilarImages']['value'][7]['_type']", + "$['visuallySimilarImages']['value'][8]['_type']", + "$['visuallySimilarImages']['value'][9]['_type']", + "$['visuallySimilarImages']['value'][10]['_type']", + "$['visuallySimilarImages']['value'][11]['_type']", + "$['visuallySimilarImages']['value'][12]['_type']", + "$['visuallySimilarImages']['value'][13]['_type']", + "$['visuallySimilarImages']['value'][14]['_type']", + "$['visuallySimilarImages']['value'][15]['_type']", + "$['visuallySimilarImages']['value'][16]['_type']", + "$['visuallySimilarImages']['value'][17]['_type']", + "$['visuallySimilarImages']['value'][18]['_type']", + "$['visuallySimilarImages']['value'][19]['_type']", + "$['visuallySimilarImages']['value'][20]['_type']", + "$['visuallySimilarImages']['value'][21]['_type']", + "$['visuallySimilarImages']['value'][22]['_type']", + "$['visuallySimilarImages']['value'][23]['_type']", + "$['visuallySimilarImages']['value'][24]['_type']", + "$['visuallySimilarImages']['value'][25]['_type']", + "$['visuallySimilarImages']['value'][26]['_type']", + "$['visuallySimilarImages']['value'][27]['_type']", + "$['visuallySimilarImages']['value'][28]['_type']", + "$['visuallySimilarImages']['value'][29]['_type']", + "$['visuallySimilarImages']['value'][30]['_type']", + "$['visuallySimilarImages']['value'][31]['_type']", + "$['visuallySimilarImages']['value'][32]['_type']", + "$['visuallySimilarImages']['value'][33]['_type']", + "$['visuallySimilarImages']['value'][34]['_type']", + "$['visuallySimilarImages']['value'][35]['_type']", + "$['visuallySimilarImages']['value'][36]['_type']", + "$['visuallySimilarImages']['value'][37]['_type']", + "$['visuallySimilarImages']['value'][38]['_type']", + "$['visuallySimilarImages']['value'][39]['_type']", + "$['visuallySimilarImages']['value'][40]['_type']", + "$['visuallySimilarImages']['value'][41]['_type']", + "$['visuallySimilarImages']['value'][42]['_type']", + "$['visuallySimilarImages']['value'][43]['_type']", + "$['visuallySimilarImages']['value'][44]['_type']", + "$['visuallySimilarImages']['value'][45]['_type']", + "$['visuallySimilarImages']['value'][46]['_type']", + "$['visuallySimilarImages']['value'][47]['_type']", + "$['visuallySimilarImages']['value'][48]['_type']", + "$['visuallySimilarImages']['value'][49]['_type']", + "$['visuallySimilarImages']['value'][50]['_type']", + "$['visuallySimilarImages']['value'][51]['_type']", + "$['visuallySimilarImages']['value'][52]['_type']", + "$['visuallySimilarImages']['value'][53]['_type']", + "$['visuallySimilarImages']['value'][54]['_type']", + "$['visuallySimilarImages']['value'][55]['_type']", + "$['visuallySimilarImages']['value'][56]['_type']", + "$['visuallySimilarImages']['value'][57]['_type']", + "$['visuallySimilarImages']['value'][58]['_type']", + "$['visuallySimilarImages']['value'][59]['_type']", + "$['visuallySimilarImages']['value'][60]['_type']", ], "similarPaths": Array [ - "visuallySimilarImages/value/1/_type", - "visuallySimilarImages/value/2/_type", - "visuallySimilarImages/value/3/_type", - "visuallySimilarImages/value/4/_type", - "visuallySimilarImages/value/5/_type", - "visuallySimilarImages/value/6/_type", - "visuallySimilarImages/value/7/_type", - "visuallySimilarImages/value/8/_type", - "visuallySimilarImages/value/9/_type", - "visuallySimilarImages/value/10/_type", - "visuallySimilarImages/value/11/_type", - "visuallySimilarImages/value/12/_type", - "visuallySimilarImages/value/13/_type", - "visuallySimilarImages/value/14/_type", - "visuallySimilarImages/value/15/_type", - "visuallySimilarImages/value/16/_type", - "visuallySimilarImages/value/17/_type", - "visuallySimilarImages/value/18/_type", - "visuallySimilarImages/value/19/_type", - "visuallySimilarImages/value/20/_type", - "visuallySimilarImages/value/21/_type", - "visuallySimilarImages/value/22/_type", - "visuallySimilarImages/value/23/_type", - "visuallySimilarImages/value/24/_type", - "visuallySimilarImages/value/25/_type", - "visuallySimilarImages/value/26/_type", - "visuallySimilarImages/value/27/_type", - "visuallySimilarImages/value/28/_type", - "visuallySimilarImages/value/29/_type", - "visuallySimilarImages/value/30/_type", - "visuallySimilarImages/value/31/_type", - "visuallySimilarImages/value/32/_type", - "visuallySimilarImages/value/33/_type", - "visuallySimilarImages/value/34/_type", - "visuallySimilarImages/value/35/_type", - "visuallySimilarImages/value/36/_type", - "visuallySimilarImages/value/37/_type", - "visuallySimilarImages/value/38/_type", - "visuallySimilarImages/value/39/_type", - "visuallySimilarImages/value/40/_type", - "visuallySimilarImages/value/41/_type", - "visuallySimilarImages/value/42/_type", - "visuallySimilarImages/value/43/_type", - "visuallySimilarImages/value/44/_type", - "visuallySimilarImages/value/45/_type", - "visuallySimilarImages/value/46/_type", - "visuallySimilarImages/value/47/_type", - "visuallySimilarImages/value/48/_type", - "visuallySimilarImages/value/49/_type", - "visuallySimilarImages/value/50/_type", - "visuallySimilarImages/value/51/_type", - "visuallySimilarImages/value/52/_type", - "visuallySimilarImages/value/53/_type", - "visuallySimilarImages/value/54/_type", - "visuallySimilarImages/value/55/_type", - "visuallySimilarImages/value/56/_type", - "visuallySimilarImages/value/57/_type", - "visuallySimilarImages/value/58/_type", - "visuallySimilarImages/value/59/_type", - "visuallySimilarImages/value/60/_type", + "$/visuallySimilarImages/value/1/_type", + "$/visuallySimilarImages/value/2/_type", + "$/visuallySimilarImages/value/3/_type", + "$/visuallySimilarImages/value/4/_type", + "$/visuallySimilarImages/value/5/_type", + "$/visuallySimilarImages/value/6/_type", + "$/visuallySimilarImages/value/7/_type", + "$/visuallySimilarImages/value/8/_type", + "$/visuallySimilarImages/value/9/_type", + "$/visuallySimilarImages/value/10/_type", + "$/visuallySimilarImages/value/11/_type", + "$/visuallySimilarImages/value/12/_type", + "$/visuallySimilarImages/value/13/_type", + "$/visuallySimilarImages/value/14/_type", + "$/visuallySimilarImages/value/15/_type", + "$/visuallySimilarImages/value/16/_type", + "$/visuallySimilarImages/value/17/_type", + "$/visuallySimilarImages/value/18/_type", + "$/visuallySimilarImages/value/19/_type", + "$/visuallySimilarImages/value/20/_type", + "$/visuallySimilarImages/value/21/_type", + "$/visuallySimilarImages/value/22/_type", + "$/visuallySimilarImages/value/23/_type", + "$/visuallySimilarImages/value/24/_type", + "$/visuallySimilarImages/value/25/_type", + "$/visuallySimilarImages/value/26/_type", + "$/visuallySimilarImages/value/27/_type", + "$/visuallySimilarImages/value/28/_type", + "$/visuallySimilarImages/value/29/_type", + "$/visuallySimilarImages/value/30/_type", + "$/visuallySimilarImages/value/31/_type", + "$/visuallySimilarImages/value/32/_type", + "$/visuallySimilarImages/value/33/_type", + "$/visuallySimilarImages/value/34/_type", + "$/visuallySimilarImages/value/35/_type", + "$/visuallySimilarImages/value/36/_type", + "$/visuallySimilarImages/value/37/_type", + "$/visuallySimilarImages/value/38/_type", + "$/visuallySimilarImages/value/39/_type", + "$/visuallySimilarImages/value/40/_type", + "$/visuallySimilarImages/value/41/_type", + "$/visuallySimilarImages/value/42/_type", + "$/visuallySimilarImages/value/43/_type", + "$/visuallySimilarImages/value/44/_type", + "$/visuallySimilarImages/value/45/_type", + "$/visuallySimilarImages/value/46/_type", + "$/visuallySimilarImages/value/47/_type", + "$/visuallySimilarImages/value/48/_type", + "$/visuallySimilarImages/value/49/_type", + "$/visuallySimilarImages/value/50/_type", + "$/visuallySimilarImages/value/51/_type", + "$/visuallySimilarImages/value/52/_type", + "$/visuallySimilarImages/value/53/_type", + "$/visuallySimilarImages/value/54/_type", + "$/visuallySimilarImages/value/55/_type", + "$/visuallySimilarImages/value/56/_type", + "$/visuallySimilarImages/value/57/_type", + "$/visuallySimilarImages/value/58/_type", + "$/visuallySimilarImages/value/59/_type", + "$/visuallySimilarImages/value/60/_type", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/ImageSearch.json", @@ -27674,108 +27900,108 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.relatedSearches.value[0].thumbnail._type", + "jsonPath": "$['relatedSearches']['value'][0]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageDetailRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "relatedSearches/value/0/thumbnail/_type", + "path": "$/relatedSearches/value/0/thumbnail/_type", "position": Object { "column": 20, "line": 854, }, "similarJsonPaths": Array [ - "$.relatedSearches.value[1].thumbnail._type", - "$.relatedSearches.value[2].thumbnail._type", - "$.relatedSearches.value[3].thumbnail._type", - "$.relatedSearches.value[4].thumbnail._type", - "$.relatedSearches.value[5].thumbnail._type", - "$.relatedSearches.value[6].thumbnail._type", - "$.relatedSearches.value[7].thumbnail._type", - "$.relatedSearches.value[8].thumbnail._type", - "$.relatedSearches.value[9].thumbnail._type", - "$.relatedSearches.value[10].thumbnail._type", - "$.relatedSearches.value[11].thumbnail._type", - "$.relatedSearches.value[12].thumbnail._type", - "$.relatedSearches.value[13].thumbnail._type", - "$.relatedSearches.value[14].thumbnail._type", - "$.relatedSearches.value[15].thumbnail._type", - "$.relatedSearches.value[16].thumbnail._type", - "$.relatedSearches.value[17].thumbnail._type", - "$.relatedSearches.value[18].thumbnail._type", - "$.relatedSearches.value[19].thumbnail._type", - "$.relatedSearches.value[20].thumbnail._type", - "$.relatedSearches.value[21].thumbnail._type", - "$.relatedSearches.value[22].thumbnail._type", - "$.relatedSearches.value[23].thumbnail._type", - "$.relatedSearches.value[24].thumbnail._type", - "$.relatedSearches.value[25].thumbnail._type", - "$.relatedSearches.value[26].thumbnail._type", - "$.relatedSearches.value[27].thumbnail._type", - "$.relatedSearches.value[28].thumbnail._type", - "$.relatedSearches.value[29].thumbnail._type", - "$.relatedSearches.value[30].thumbnail._type", - "$.relatedSearches.value[31].thumbnail._type", - "$.relatedSearches.value[32].thumbnail._type", - "$.relatedSearches.value[33].thumbnail._type", - "$.relatedSearches.value[34].thumbnail._type", - "$.relatedSearches.value[35].thumbnail._type", - "$.relatedSearches.value[36].thumbnail._type", - "$.relatedSearches.value[37].thumbnail._type", - "$.relatedSearches.value[38].thumbnail._type", - "$.relatedSearches.value[39].thumbnail._type", - "$.relatedSearches.value[40].thumbnail._type", - "$.relatedSearches.value[41].thumbnail._type", - "$.relatedSearches.value[42].thumbnail._type", - "$.relatedSearches.value[43].thumbnail._type", - "$.relatedSearches.value[44].thumbnail._type", + "$['relatedSearches']['value'][1]['thumbnail']['_type']", + "$['relatedSearches']['value'][2]['thumbnail']['_type']", + "$['relatedSearches']['value'][3]['thumbnail']['_type']", + "$['relatedSearches']['value'][4]['thumbnail']['_type']", + "$['relatedSearches']['value'][5]['thumbnail']['_type']", + "$['relatedSearches']['value'][6]['thumbnail']['_type']", + "$['relatedSearches']['value'][7]['thumbnail']['_type']", + "$['relatedSearches']['value'][8]['thumbnail']['_type']", + "$['relatedSearches']['value'][9]['thumbnail']['_type']", + "$['relatedSearches']['value'][10]['thumbnail']['_type']", + "$['relatedSearches']['value'][11]['thumbnail']['_type']", + "$['relatedSearches']['value'][12]['thumbnail']['_type']", + "$['relatedSearches']['value'][13]['thumbnail']['_type']", + "$['relatedSearches']['value'][14]['thumbnail']['_type']", + "$['relatedSearches']['value'][15]['thumbnail']['_type']", + "$['relatedSearches']['value'][16]['thumbnail']['_type']", + "$['relatedSearches']['value'][17]['thumbnail']['_type']", + "$['relatedSearches']['value'][18]['thumbnail']['_type']", + "$['relatedSearches']['value'][19]['thumbnail']['_type']", + "$['relatedSearches']['value'][20]['thumbnail']['_type']", + "$['relatedSearches']['value'][21]['thumbnail']['_type']", + "$['relatedSearches']['value'][22]['thumbnail']['_type']", + "$['relatedSearches']['value'][23]['thumbnail']['_type']", + "$['relatedSearches']['value'][24]['thumbnail']['_type']", + "$['relatedSearches']['value'][25]['thumbnail']['_type']", + "$['relatedSearches']['value'][26]['thumbnail']['_type']", + "$['relatedSearches']['value'][27]['thumbnail']['_type']", + "$['relatedSearches']['value'][28]['thumbnail']['_type']", + "$['relatedSearches']['value'][29]['thumbnail']['_type']", + "$['relatedSearches']['value'][30]['thumbnail']['_type']", + "$['relatedSearches']['value'][31]['thumbnail']['_type']", + "$['relatedSearches']['value'][32]['thumbnail']['_type']", + "$['relatedSearches']['value'][33]['thumbnail']['_type']", + "$['relatedSearches']['value'][34]['thumbnail']['_type']", + "$['relatedSearches']['value'][35]['thumbnail']['_type']", + "$['relatedSearches']['value'][36]['thumbnail']['_type']", + "$['relatedSearches']['value'][37]['thumbnail']['_type']", + "$['relatedSearches']['value'][38]['thumbnail']['_type']", + "$['relatedSearches']['value'][39]['thumbnail']['_type']", + "$['relatedSearches']['value'][40]['thumbnail']['_type']", + "$['relatedSearches']['value'][41]['thumbnail']['_type']", + "$['relatedSearches']['value'][42]['thumbnail']['_type']", + "$['relatedSearches']['value'][43]['thumbnail']['_type']", + "$['relatedSearches']['value'][44]['thumbnail']['_type']", ], "similarPaths": Array [ - "relatedSearches/value/1/thumbnail/_type", - "relatedSearches/value/2/thumbnail/_type", - "relatedSearches/value/3/thumbnail/_type", - "relatedSearches/value/4/thumbnail/_type", - "relatedSearches/value/5/thumbnail/_type", - "relatedSearches/value/6/thumbnail/_type", - "relatedSearches/value/7/thumbnail/_type", - "relatedSearches/value/8/thumbnail/_type", - "relatedSearches/value/9/thumbnail/_type", - "relatedSearches/value/10/thumbnail/_type", - "relatedSearches/value/11/thumbnail/_type", - "relatedSearches/value/12/thumbnail/_type", - "relatedSearches/value/13/thumbnail/_type", - "relatedSearches/value/14/thumbnail/_type", - "relatedSearches/value/15/thumbnail/_type", - "relatedSearches/value/16/thumbnail/_type", - "relatedSearches/value/17/thumbnail/_type", - "relatedSearches/value/18/thumbnail/_type", - "relatedSearches/value/19/thumbnail/_type", - "relatedSearches/value/20/thumbnail/_type", - "relatedSearches/value/21/thumbnail/_type", - "relatedSearches/value/22/thumbnail/_type", - "relatedSearches/value/23/thumbnail/_type", - "relatedSearches/value/24/thumbnail/_type", - "relatedSearches/value/25/thumbnail/_type", - "relatedSearches/value/26/thumbnail/_type", - "relatedSearches/value/27/thumbnail/_type", - "relatedSearches/value/28/thumbnail/_type", - "relatedSearches/value/29/thumbnail/_type", - "relatedSearches/value/30/thumbnail/_type", - "relatedSearches/value/31/thumbnail/_type", - "relatedSearches/value/32/thumbnail/_type", - "relatedSearches/value/33/thumbnail/_type", - "relatedSearches/value/34/thumbnail/_type", - "relatedSearches/value/35/thumbnail/_type", - "relatedSearches/value/36/thumbnail/_type", - "relatedSearches/value/37/thumbnail/_type", - "relatedSearches/value/38/thumbnail/_type", - "relatedSearches/value/39/thumbnail/_type", - "relatedSearches/value/40/thumbnail/_type", - "relatedSearches/value/41/thumbnail/_type", - "relatedSearches/value/42/thumbnail/_type", - "relatedSearches/value/43/thumbnail/_type", - "relatedSearches/value/44/thumbnail/_type", + "$/relatedSearches/value/1/thumbnail/_type", + "$/relatedSearches/value/2/thumbnail/_type", + "$/relatedSearches/value/3/thumbnail/_type", + "$/relatedSearches/value/4/thumbnail/_type", + "$/relatedSearches/value/5/thumbnail/_type", + "$/relatedSearches/value/6/thumbnail/_type", + "$/relatedSearches/value/7/thumbnail/_type", + "$/relatedSearches/value/8/thumbnail/_type", + "$/relatedSearches/value/9/thumbnail/_type", + "$/relatedSearches/value/10/thumbnail/_type", + "$/relatedSearches/value/11/thumbnail/_type", + "$/relatedSearches/value/12/thumbnail/_type", + "$/relatedSearches/value/13/thumbnail/_type", + "$/relatedSearches/value/14/thumbnail/_type", + "$/relatedSearches/value/15/thumbnail/_type", + "$/relatedSearches/value/16/thumbnail/_type", + "$/relatedSearches/value/17/thumbnail/_type", + "$/relatedSearches/value/18/thumbnail/_type", + "$/relatedSearches/value/19/thumbnail/_type", + "$/relatedSearches/value/20/thumbnail/_type", + "$/relatedSearches/value/21/thumbnail/_type", + "$/relatedSearches/value/22/thumbnail/_type", + "$/relatedSearches/value/23/thumbnail/_type", + "$/relatedSearches/value/24/thumbnail/_type", + "$/relatedSearches/value/25/thumbnail/_type", + "$/relatedSearches/value/26/thumbnail/_type", + "$/relatedSearches/value/27/thumbnail/_type", + "$/relatedSearches/value/28/thumbnail/_type", + "$/relatedSearches/value/29/thumbnail/_type", + "$/relatedSearches/value/30/thumbnail/_type", + "$/relatedSearches/value/31/thumbnail/_type", + "$/relatedSearches/value/32/thumbnail/_type", + "$/relatedSearches/value/33/thumbnail/_type", + "$/relatedSearches/value/34/thumbnail/_type", + "$/relatedSearches/value/35/thumbnail/_type", + "$/relatedSearches/value/36/thumbnail/_type", + "$/relatedSearches/value/37/thumbnail/_type", + "$/relatedSearches/value/38/thumbnail/_type", + "$/relatedSearches/value/39/thumbnail/_type", + "$/relatedSearches/value/40/thumbnail/_type", + "$/relatedSearches/value/41/thumbnail/_type", + "$/relatedSearches/value/42/thumbnail/_type", + "$/relatedSearches/value/43/thumbnail/_type", + "$/relatedSearches/value/44/thumbnail/_type", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/ImageSearch.json", @@ -27792,100 +28018,100 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.pagesIncluding.value[0].thumbnail._type", + "jsonPath": "$['pagesIncluding']['value'][0]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageDetailRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "pagesIncluding/value/0/thumbnail/_type", + "path": "$/pagesIncluding/value/0/thumbnail/_type", "position": Object { "column": 20, "line": 854, }, "similarJsonPaths": Array [ - "$.pagesIncluding.value[1].thumbnail._type", - "$.pagesIncluding.value[2].thumbnail._type", - "$.pagesIncluding.value[3].thumbnail._type", - "$.pagesIncluding.value[4].thumbnail._type", - "$.pagesIncluding.value[5].thumbnail._type", - "$.pagesIncluding.value[6].thumbnail._type", - "$.pagesIncluding.value[7].thumbnail._type", - "$.pagesIncluding.value[8].thumbnail._type", - "$.pagesIncluding.value[9].thumbnail._type", - "$.pagesIncluding.value[10].thumbnail._type", - "$.pagesIncluding.value[11].thumbnail._type", - "$.pagesIncluding.value[12].thumbnail._type", - "$.pagesIncluding.value[13].thumbnail._type", - "$.pagesIncluding.value[14].thumbnail._type", - "$.pagesIncluding.value[15].thumbnail._type", - "$.pagesIncluding.value[16].thumbnail._type", - "$.pagesIncluding.value[17].thumbnail._type", - "$.pagesIncluding.value[18].thumbnail._type", - "$.pagesIncluding.value[19].thumbnail._type", - "$.pagesIncluding.value[20].thumbnail._type", - "$.pagesIncluding.value[21].thumbnail._type", - "$.pagesIncluding.value[22].thumbnail._type", - "$.pagesIncluding.value[23].thumbnail._type", - "$.pagesIncluding.value[24].thumbnail._type", - "$.pagesIncluding.value[25].thumbnail._type", - "$.pagesIncluding.value[26].thumbnail._type", - "$.pagesIncluding.value[27].thumbnail._type", - "$.pagesIncluding.value[28].thumbnail._type", - "$.pagesIncluding.value[29].thumbnail._type", - "$.pagesIncluding.value[30].thumbnail._type", - "$.pagesIncluding.value[31].thumbnail._type", - "$.pagesIncluding.value[32].thumbnail._type", - "$.pagesIncluding.value[33].thumbnail._type", - "$.pagesIncluding.value[34].thumbnail._type", - "$.pagesIncluding.value[35].thumbnail._type", - "$.pagesIncluding.value[36].thumbnail._type", - "$.pagesIncluding.value[37].thumbnail._type", - "$.pagesIncluding.value[38].thumbnail._type", - "$.pagesIncluding.value[39].thumbnail._type", - "$.pagesIncluding.value[40].thumbnail._type", + "$['pagesIncluding']['value'][1]['thumbnail']['_type']", + "$['pagesIncluding']['value'][2]['thumbnail']['_type']", + "$['pagesIncluding']['value'][3]['thumbnail']['_type']", + "$['pagesIncluding']['value'][4]['thumbnail']['_type']", + "$['pagesIncluding']['value'][5]['thumbnail']['_type']", + "$['pagesIncluding']['value'][6]['thumbnail']['_type']", + "$['pagesIncluding']['value'][7]['thumbnail']['_type']", + "$['pagesIncluding']['value'][8]['thumbnail']['_type']", + "$['pagesIncluding']['value'][9]['thumbnail']['_type']", + "$['pagesIncluding']['value'][10]['thumbnail']['_type']", + "$['pagesIncluding']['value'][11]['thumbnail']['_type']", + "$['pagesIncluding']['value'][12]['thumbnail']['_type']", + "$['pagesIncluding']['value'][13]['thumbnail']['_type']", + "$['pagesIncluding']['value'][14]['thumbnail']['_type']", + "$['pagesIncluding']['value'][15]['thumbnail']['_type']", + "$['pagesIncluding']['value'][16]['thumbnail']['_type']", + "$['pagesIncluding']['value'][17]['thumbnail']['_type']", + "$['pagesIncluding']['value'][18]['thumbnail']['_type']", + "$['pagesIncluding']['value'][19]['thumbnail']['_type']", + "$['pagesIncluding']['value'][20]['thumbnail']['_type']", + "$['pagesIncluding']['value'][21]['thumbnail']['_type']", + "$['pagesIncluding']['value'][22]['thumbnail']['_type']", + "$['pagesIncluding']['value'][23]['thumbnail']['_type']", + "$['pagesIncluding']['value'][24]['thumbnail']['_type']", + "$['pagesIncluding']['value'][25]['thumbnail']['_type']", + "$['pagesIncluding']['value'][26]['thumbnail']['_type']", + "$['pagesIncluding']['value'][27]['thumbnail']['_type']", + "$['pagesIncluding']['value'][28]['thumbnail']['_type']", + "$['pagesIncluding']['value'][29]['thumbnail']['_type']", + "$['pagesIncluding']['value'][30]['thumbnail']['_type']", + "$['pagesIncluding']['value'][31]['thumbnail']['_type']", + "$['pagesIncluding']['value'][32]['thumbnail']['_type']", + "$['pagesIncluding']['value'][33]['thumbnail']['_type']", + "$['pagesIncluding']['value'][34]['thumbnail']['_type']", + "$['pagesIncluding']['value'][35]['thumbnail']['_type']", + "$['pagesIncluding']['value'][36]['thumbnail']['_type']", + "$['pagesIncluding']['value'][37]['thumbnail']['_type']", + "$['pagesIncluding']['value'][38]['thumbnail']['_type']", + "$['pagesIncluding']['value'][39]['thumbnail']['_type']", + "$['pagesIncluding']['value'][40]['thumbnail']['_type']", ], "similarPaths": Array [ - "pagesIncluding/value/1/thumbnail/_type", - "pagesIncluding/value/2/thumbnail/_type", - "pagesIncluding/value/3/thumbnail/_type", - "pagesIncluding/value/4/thumbnail/_type", - "pagesIncluding/value/5/thumbnail/_type", - "pagesIncluding/value/6/thumbnail/_type", - "pagesIncluding/value/7/thumbnail/_type", - "pagesIncluding/value/8/thumbnail/_type", - "pagesIncluding/value/9/thumbnail/_type", - "pagesIncluding/value/10/thumbnail/_type", - "pagesIncluding/value/11/thumbnail/_type", - "pagesIncluding/value/12/thumbnail/_type", - "pagesIncluding/value/13/thumbnail/_type", - "pagesIncluding/value/14/thumbnail/_type", - "pagesIncluding/value/15/thumbnail/_type", - "pagesIncluding/value/16/thumbnail/_type", - "pagesIncluding/value/17/thumbnail/_type", - "pagesIncluding/value/18/thumbnail/_type", - "pagesIncluding/value/19/thumbnail/_type", - "pagesIncluding/value/20/thumbnail/_type", - "pagesIncluding/value/21/thumbnail/_type", - "pagesIncluding/value/22/thumbnail/_type", - "pagesIncluding/value/23/thumbnail/_type", - "pagesIncluding/value/24/thumbnail/_type", - "pagesIncluding/value/25/thumbnail/_type", - "pagesIncluding/value/26/thumbnail/_type", - "pagesIncluding/value/27/thumbnail/_type", - "pagesIncluding/value/28/thumbnail/_type", - "pagesIncluding/value/29/thumbnail/_type", - "pagesIncluding/value/30/thumbnail/_type", - "pagesIncluding/value/31/thumbnail/_type", - "pagesIncluding/value/32/thumbnail/_type", - "pagesIncluding/value/33/thumbnail/_type", - "pagesIncluding/value/34/thumbnail/_type", - "pagesIncluding/value/35/thumbnail/_type", - "pagesIncluding/value/36/thumbnail/_type", - "pagesIncluding/value/37/thumbnail/_type", - "pagesIncluding/value/38/thumbnail/_type", - "pagesIncluding/value/39/thumbnail/_type", - "pagesIncluding/value/40/thumbnail/_type", + "$/pagesIncluding/value/1/thumbnail/_type", + "$/pagesIncluding/value/2/thumbnail/_type", + "$/pagesIncluding/value/3/thumbnail/_type", + "$/pagesIncluding/value/4/thumbnail/_type", + "$/pagesIncluding/value/5/thumbnail/_type", + "$/pagesIncluding/value/6/thumbnail/_type", + "$/pagesIncluding/value/7/thumbnail/_type", + "$/pagesIncluding/value/8/thumbnail/_type", + "$/pagesIncluding/value/9/thumbnail/_type", + "$/pagesIncluding/value/10/thumbnail/_type", + "$/pagesIncluding/value/11/thumbnail/_type", + "$/pagesIncluding/value/12/thumbnail/_type", + "$/pagesIncluding/value/13/thumbnail/_type", + "$/pagesIncluding/value/14/thumbnail/_type", + "$/pagesIncluding/value/15/thumbnail/_type", + "$/pagesIncluding/value/16/thumbnail/_type", + "$/pagesIncluding/value/17/thumbnail/_type", + "$/pagesIncluding/value/18/thumbnail/_type", + "$/pagesIncluding/value/19/thumbnail/_type", + "$/pagesIncluding/value/20/thumbnail/_type", + "$/pagesIncluding/value/21/thumbnail/_type", + "$/pagesIncluding/value/22/thumbnail/_type", + "$/pagesIncluding/value/23/thumbnail/_type", + "$/pagesIncluding/value/24/thumbnail/_type", + "$/pagesIncluding/value/25/thumbnail/_type", + "$/pagesIncluding/value/26/thumbnail/_type", + "$/pagesIncluding/value/27/thumbnail/_type", + "$/pagesIncluding/value/28/thumbnail/_type", + "$/pagesIncluding/value/29/thumbnail/_type", + "$/pagesIncluding/value/30/thumbnail/_type", + "$/pagesIncluding/value/31/thumbnail/_type", + "$/pagesIncluding/value/32/thumbnail/_type", + "$/pagesIncluding/value/33/thumbnail/_type", + "$/pagesIncluding/value/34/thumbnail/_type", + "$/pagesIncluding/value/35/thumbnail/_type", + "$/pagesIncluding/value/36/thumbnail/_type", + "$/pagesIncluding/value/37/thumbnail/_type", + "$/pagesIncluding/value/38/thumbnail/_type", + "$/pagesIncluding/value/39/thumbnail/_type", + "$/pagesIncluding/value/40/thumbnail/_type", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/ImageSearch.json", @@ -27902,100 +28128,100 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.pagesIncluding.value[0]._type", + "jsonPath": "$['pagesIncluding']['value'][0]['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageDetailRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "pagesIncluding/value/0/_type", + "path": "$/pagesIncluding/value/0/_type", "position": Object { "column": 20, "line": 854, }, "similarJsonPaths": Array [ - "$.pagesIncluding.value[1]._type", - "$.pagesIncluding.value[2]._type", - "$.pagesIncluding.value[3]._type", - "$.pagesIncluding.value[4]._type", - "$.pagesIncluding.value[5]._type", - "$.pagesIncluding.value[6]._type", - "$.pagesIncluding.value[7]._type", - "$.pagesIncluding.value[8]._type", - "$.pagesIncluding.value[9]._type", - "$.pagesIncluding.value[10]._type", - "$.pagesIncluding.value[11]._type", - "$.pagesIncluding.value[12]._type", - "$.pagesIncluding.value[13]._type", - "$.pagesIncluding.value[14]._type", - "$.pagesIncluding.value[15]._type", - "$.pagesIncluding.value[16]._type", - "$.pagesIncluding.value[17]._type", - "$.pagesIncluding.value[18]._type", - "$.pagesIncluding.value[19]._type", - "$.pagesIncluding.value[20]._type", - "$.pagesIncluding.value[21]._type", - "$.pagesIncluding.value[22]._type", - "$.pagesIncluding.value[23]._type", - "$.pagesIncluding.value[24]._type", - "$.pagesIncluding.value[25]._type", - "$.pagesIncluding.value[26]._type", - "$.pagesIncluding.value[27]._type", - "$.pagesIncluding.value[28]._type", - "$.pagesIncluding.value[29]._type", - "$.pagesIncluding.value[30]._type", - "$.pagesIncluding.value[31]._type", - "$.pagesIncluding.value[32]._type", - "$.pagesIncluding.value[33]._type", - "$.pagesIncluding.value[34]._type", - "$.pagesIncluding.value[35]._type", - "$.pagesIncluding.value[36]._type", - "$.pagesIncluding.value[37]._type", - "$.pagesIncluding.value[38]._type", - "$.pagesIncluding.value[39]._type", - "$.pagesIncluding.value[40]._type", + "$['pagesIncluding']['value'][1]['_type']", + "$['pagesIncluding']['value'][2]['_type']", + "$['pagesIncluding']['value'][3]['_type']", + "$['pagesIncluding']['value'][4]['_type']", + "$['pagesIncluding']['value'][5]['_type']", + "$['pagesIncluding']['value'][6]['_type']", + "$['pagesIncluding']['value'][7]['_type']", + "$['pagesIncluding']['value'][8]['_type']", + "$['pagesIncluding']['value'][9]['_type']", + "$['pagesIncluding']['value'][10]['_type']", + "$['pagesIncluding']['value'][11]['_type']", + "$['pagesIncluding']['value'][12]['_type']", + "$['pagesIncluding']['value'][13]['_type']", + "$['pagesIncluding']['value'][14]['_type']", + "$['pagesIncluding']['value'][15]['_type']", + "$['pagesIncluding']['value'][16]['_type']", + "$['pagesIncluding']['value'][17]['_type']", + "$['pagesIncluding']['value'][18]['_type']", + "$['pagesIncluding']['value'][19]['_type']", + "$['pagesIncluding']['value'][20]['_type']", + "$['pagesIncluding']['value'][21]['_type']", + "$['pagesIncluding']['value'][22]['_type']", + "$['pagesIncluding']['value'][23]['_type']", + "$['pagesIncluding']['value'][24]['_type']", + "$['pagesIncluding']['value'][25]['_type']", + "$['pagesIncluding']['value'][26]['_type']", + "$['pagesIncluding']['value'][27]['_type']", + "$['pagesIncluding']['value'][28]['_type']", + "$['pagesIncluding']['value'][29]['_type']", + "$['pagesIncluding']['value'][30]['_type']", + "$['pagesIncluding']['value'][31]['_type']", + "$['pagesIncluding']['value'][32]['_type']", + "$['pagesIncluding']['value'][33]['_type']", + "$['pagesIncluding']['value'][34]['_type']", + "$['pagesIncluding']['value'][35]['_type']", + "$['pagesIncluding']['value'][36]['_type']", + "$['pagesIncluding']['value'][37]['_type']", + "$['pagesIncluding']['value'][38]['_type']", + "$['pagesIncluding']['value'][39]['_type']", + "$['pagesIncluding']['value'][40]['_type']", ], "similarPaths": Array [ - "pagesIncluding/value/1/_type", - "pagesIncluding/value/2/_type", - "pagesIncluding/value/3/_type", - "pagesIncluding/value/4/_type", - "pagesIncluding/value/5/_type", - "pagesIncluding/value/6/_type", - "pagesIncluding/value/7/_type", - "pagesIncluding/value/8/_type", - "pagesIncluding/value/9/_type", - "pagesIncluding/value/10/_type", - "pagesIncluding/value/11/_type", - "pagesIncluding/value/12/_type", - "pagesIncluding/value/13/_type", - "pagesIncluding/value/14/_type", - "pagesIncluding/value/15/_type", - "pagesIncluding/value/16/_type", - "pagesIncluding/value/17/_type", - "pagesIncluding/value/18/_type", - "pagesIncluding/value/19/_type", - "pagesIncluding/value/20/_type", - "pagesIncluding/value/21/_type", - "pagesIncluding/value/22/_type", - "pagesIncluding/value/23/_type", - "pagesIncluding/value/24/_type", - "pagesIncluding/value/25/_type", - "pagesIncluding/value/26/_type", - "pagesIncluding/value/27/_type", - "pagesIncluding/value/28/_type", - "pagesIncluding/value/29/_type", - "pagesIncluding/value/30/_type", - "pagesIncluding/value/31/_type", - "pagesIncluding/value/32/_type", - "pagesIncluding/value/33/_type", - "pagesIncluding/value/34/_type", - "pagesIncluding/value/35/_type", - "pagesIncluding/value/36/_type", - "pagesIncluding/value/37/_type", - "pagesIncluding/value/38/_type", - "pagesIncluding/value/39/_type", - "pagesIncluding/value/40/_type", + "$/pagesIncluding/value/1/_type", + "$/pagesIncluding/value/2/_type", + "$/pagesIncluding/value/3/_type", + "$/pagesIncluding/value/4/_type", + "$/pagesIncluding/value/5/_type", + "$/pagesIncluding/value/6/_type", + "$/pagesIncluding/value/7/_type", + "$/pagesIncluding/value/8/_type", + "$/pagesIncluding/value/9/_type", + "$/pagesIncluding/value/10/_type", + "$/pagesIncluding/value/11/_type", + "$/pagesIncluding/value/12/_type", + "$/pagesIncluding/value/13/_type", + "$/pagesIncluding/value/14/_type", + "$/pagesIncluding/value/15/_type", + "$/pagesIncluding/value/16/_type", + "$/pagesIncluding/value/17/_type", + "$/pagesIncluding/value/18/_type", + "$/pagesIncluding/value/19/_type", + "$/pagesIncluding/value/20/_type", + "$/pagesIncluding/value/21/_type", + "$/pagesIncluding/value/22/_type", + "$/pagesIncluding/value/23/_type", + "$/pagesIncluding/value/24/_type", + "$/pagesIncluding/value/25/_type", + "$/pagesIncluding/value/26/_type", + "$/pagesIncluding/value/27/_type", + "$/pagesIncluding/value/28/_type", + "$/pagesIncluding/value/29/_type", + "$/pagesIncluding/value/30/_type", + "$/pagesIncluding/value/31/_type", + "$/pagesIncluding/value/32/_type", + "$/pagesIncluding/value/33/_type", + "$/pagesIncluding/value/34/_type", + "$/pagesIncluding/value/35/_type", + "$/pagesIncluding/value/36/_type", + "$/pagesIncluding/value/37/_type", + "$/pagesIncluding/value/38/_type", + "$/pagesIncluding/value/39/_type", + "$/pagesIncluding/value/40/_type", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/ImageSearch.json", @@ -28033,58 +28259,58 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.categories[4].tiles[0].image.thumbnail._type", + "jsonPath": "$['categories'][4]['tiles'][0]['image']['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageTrendingRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "categories/4/tiles/0/image/thumbnail/_type", + "path": "$/categories/4/tiles/0/image/thumbnail/_type", "position": Object { "column": 20, "line": 854, }, "similarJsonPaths": Array [ - "$.categories[4].tiles[1].image.thumbnail._type", - "$.categories[4].tiles[2].image.thumbnail._type", - "$.categories[4].tiles[3].image.thumbnail._type", - "$.categories[4].tiles[4].image.thumbnail._type", - "$.categories[4].tiles[5].image.thumbnail._type", - "$.categories[4].tiles[6].image.thumbnail._type", - "$.categories[4].tiles[7].image.thumbnail._type", - "$.categories[4].tiles[8].image.thumbnail._type", - "$.categories[4].tiles[9].image.thumbnail._type", - "$.categories[4].tiles[10].image.thumbnail._type", - "$.categories[4].tiles[11].image.thumbnail._type", - "$.categories[4].tiles[12].image.thumbnail._type", - "$.categories[4].tiles[13].image.thumbnail._type", - "$.categories[4].tiles[14].image.thumbnail._type", - "$.categories[4].tiles[15].image.thumbnail._type", - "$.categories[4].tiles[16].image.thumbnail._type", - "$.categories[4].tiles[17].image.thumbnail._type", - "$.categories[4].tiles[18].image.thumbnail._type", - "$.categories[4].tiles[19].image.thumbnail._type", + "$['categories'][4]['tiles'][1]['image']['thumbnail']['_type']", + "$['categories'][4]['tiles'][2]['image']['thumbnail']['_type']", + "$['categories'][4]['tiles'][3]['image']['thumbnail']['_type']", + "$['categories'][4]['tiles'][4]['image']['thumbnail']['_type']", + "$['categories'][4]['tiles'][5]['image']['thumbnail']['_type']", + "$['categories'][4]['tiles'][6]['image']['thumbnail']['_type']", + "$['categories'][4]['tiles'][7]['image']['thumbnail']['_type']", + "$['categories'][4]['tiles'][8]['image']['thumbnail']['_type']", + "$['categories'][4]['tiles'][9]['image']['thumbnail']['_type']", + "$['categories'][4]['tiles'][10]['image']['thumbnail']['_type']", + "$['categories'][4]['tiles'][11]['image']['thumbnail']['_type']", + "$['categories'][4]['tiles'][12]['image']['thumbnail']['_type']", + "$['categories'][4]['tiles'][13]['image']['thumbnail']['_type']", + "$['categories'][4]['tiles'][14]['image']['thumbnail']['_type']", + "$['categories'][4]['tiles'][15]['image']['thumbnail']['_type']", + "$['categories'][4]['tiles'][16]['image']['thumbnail']['_type']", + "$['categories'][4]['tiles'][17]['image']['thumbnail']['_type']", + "$['categories'][4]['tiles'][18]['image']['thumbnail']['_type']", + "$['categories'][4]['tiles'][19]['image']['thumbnail']['_type']", ], "similarPaths": Array [ - "categories/4/tiles/1/image/thumbnail/_type", - "categories/4/tiles/2/image/thumbnail/_type", - "categories/4/tiles/3/image/thumbnail/_type", - "categories/4/tiles/4/image/thumbnail/_type", - "categories/4/tiles/5/image/thumbnail/_type", - "categories/4/tiles/6/image/thumbnail/_type", - "categories/4/tiles/7/image/thumbnail/_type", - "categories/4/tiles/8/image/thumbnail/_type", - "categories/4/tiles/9/image/thumbnail/_type", - "categories/4/tiles/10/image/thumbnail/_type", - "categories/4/tiles/11/image/thumbnail/_type", - "categories/4/tiles/12/image/thumbnail/_type", - "categories/4/tiles/13/image/thumbnail/_type", - "categories/4/tiles/14/image/thumbnail/_type", - "categories/4/tiles/15/image/thumbnail/_type", - "categories/4/tiles/16/image/thumbnail/_type", - "categories/4/tiles/17/image/thumbnail/_type", - "categories/4/tiles/18/image/thumbnail/_type", - "categories/4/tiles/19/image/thumbnail/_type", + "$/categories/4/tiles/1/image/thumbnail/_type", + "$/categories/4/tiles/2/image/thumbnail/_type", + "$/categories/4/tiles/3/image/thumbnail/_type", + "$/categories/4/tiles/4/image/thumbnail/_type", + "$/categories/4/tiles/5/image/thumbnail/_type", + "$/categories/4/tiles/6/image/thumbnail/_type", + "$/categories/4/tiles/7/image/thumbnail/_type", + "$/categories/4/tiles/8/image/thumbnail/_type", + "$/categories/4/tiles/9/image/thumbnail/_type", + "$/categories/4/tiles/10/image/thumbnail/_type", + "$/categories/4/tiles/11/image/thumbnail/_type", + "$/categories/4/tiles/12/image/thumbnail/_type", + "$/categories/4/tiles/13/image/thumbnail/_type", + "$/categories/4/tiles/14/image/thumbnail/_type", + "$/categories/4/tiles/15/image/thumbnail/_type", + "$/categories/4/tiles/16/image/thumbnail/_type", + "$/categories/4/tiles/17/image/thumbnail/_type", + "$/categories/4/tiles/18/image/thumbnail/_type", + "$/categories/4/tiles/19/image/thumbnail/_type", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/ImageSearch.json", @@ -28101,58 +28327,58 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.categories[4].tiles[0].image._type", + "jsonPath": "$['categories'][4]['tiles'][0]['image']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageTrendingRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "categories/4/tiles/0/image/_type", + "path": "$/categories/4/tiles/0/image/_type", "position": Object { "column": 20, "line": 854, }, "similarJsonPaths": Array [ - "$.categories[4].tiles[1].image._type", - "$.categories[4].tiles[2].image._type", - "$.categories[4].tiles[3].image._type", - "$.categories[4].tiles[4].image._type", - "$.categories[4].tiles[5].image._type", - "$.categories[4].tiles[6].image._type", - "$.categories[4].tiles[7].image._type", - "$.categories[4].tiles[8].image._type", - "$.categories[4].tiles[9].image._type", - "$.categories[4].tiles[10].image._type", - "$.categories[4].tiles[11].image._type", - "$.categories[4].tiles[12].image._type", - "$.categories[4].tiles[13].image._type", - "$.categories[4].tiles[14].image._type", - "$.categories[4].tiles[15].image._type", - "$.categories[4].tiles[16].image._type", - "$.categories[4].tiles[17].image._type", - "$.categories[4].tiles[18].image._type", - "$.categories[4].tiles[19].image._type", + "$['categories'][4]['tiles'][1]['image']['_type']", + "$['categories'][4]['tiles'][2]['image']['_type']", + "$['categories'][4]['tiles'][3]['image']['_type']", + "$['categories'][4]['tiles'][4]['image']['_type']", + "$['categories'][4]['tiles'][5]['image']['_type']", + "$['categories'][4]['tiles'][6]['image']['_type']", + "$['categories'][4]['tiles'][7]['image']['_type']", + "$['categories'][4]['tiles'][8]['image']['_type']", + "$['categories'][4]['tiles'][9]['image']['_type']", + "$['categories'][4]['tiles'][10]['image']['_type']", + "$['categories'][4]['tiles'][11]['image']['_type']", + "$['categories'][4]['tiles'][12]['image']['_type']", + "$['categories'][4]['tiles'][13]['image']['_type']", + "$['categories'][4]['tiles'][14]['image']['_type']", + "$['categories'][4]['tiles'][15]['image']['_type']", + "$['categories'][4]['tiles'][16]['image']['_type']", + "$['categories'][4]['tiles'][17]['image']['_type']", + "$['categories'][4]['tiles'][18]['image']['_type']", + "$['categories'][4]['tiles'][19]['image']['_type']", ], "similarPaths": Array [ - "categories/4/tiles/1/image/_type", - "categories/4/tiles/2/image/_type", - "categories/4/tiles/3/image/_type", - "categories/4/tiles/4/image/_type", - "categories/4/tiles/5/image/_type", - "categories/4/tiles/6/image/_type", - "categories/4/tiles/7/image/_type", - "categories/4/tiles/8/image/_type", - "categories/4/tiles/9/image/_type", - "categories/4/tiles/10/image/_type", - "categories/4/tiles/11/image/_type", - "categories/4/tiles/12/image/_type", - "categories/4/tiles/13/image/_type", - "categories/4/tiles/14/image/_type", - "categories/4/tiles/15/image/_type", - "categories/4/tiles/16/image/_type", - "categories/4/tiles/17/image/_type", - "categories/4/tiles/18/image/_type", - "categories/4/tiles/19/image/_type", + "$/categories/4/tiles/1/image/_type", + "$/categories/4/tiles/2/image/_type", + "$/categories/4/tiles/3/image/_type", + "$/categories/4/tiles/4/image/_type", + "$/categories/4/tiles/5/image/_type", + "$/categories/4/tiles/6/image/_type", + "$/categories/4/tiles/7/image/_type", + "$/categories/4/tiles/8/image/_type", + "$/categories/4/tiles/9/image/_type", + "$/categories/4/tiles/10/image/_type", + "$/categories/4/tiles/11/image/_type", + "$/categories/4/tiles/12/image/_type", + "$/categories/4/tiles/13/image/_type", + "$/categories/4/tiles/14/image/_type", + "$/categories/4/tiles/15/image/_type", + "$/categories/4/tiles/16/image/_type", + "$/categories/4/tiles/17/image/_type", + "$/categories/4/tiles/18/image/_type", + "$/categories/4/tiles/19/image/_type", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/ImageSearch.json", @@ -28169,36 +28395,36 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.categories[3].tiles[0].image.thumbnail._type", + "jsonPath": "$['categories'][3]['tiles'][0]['image']['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageTrendingRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "categories/3/tiles/0/image/thumbnail/_type", + "path": "$/categories/3/tiles/0/image/thumbnail/_type", "position": Object { "column": 20, "line": 854, }, "similarJsonPaths": Array [ - "$.categories[3].tiles[1].image.thumbnail._type", - "$.categories[3].tiles[2].image.thumbnail._type", - "$.categories[3].tiles[3].image.thumbnail._type", - "$.categories[3].tiles[4].image.thumbnail._type", - "$.categories[3].tiles[5].image.thumbnail._type", - "$.categories[3].tiles[6].image.thumbnail._type", - "$.categories[3].tiles[7].image.thumbnail._type", - "$.categories[3].tiles[8].image.thumbnail._type", + "$['categories'][3]['tiles'][1]['image']['thumbnail']['_type']", + "$['categories'][3]['tiles'][2]['image']['thumbnail']['_type']", + "$['categories'][3]['tiles'][3]['image']['thumbnail']['_type']", + "$['categories'][3]['tiles'][4]['image']['thumbnail']['_type']", + "$['categories'][3]['tiles'][5]['image']['thumbnail']['_type']", + "$['categories'][3]['tiles'][6]['image']['thumbnail']['_type']", + "$['categories'][3]['tiles'][7]['image']['thumbnail']['_type']", + "$['categories'][3]['tiles'][8]['image']['thumbnail']['_type']", ], "similarPaths": Array [ - "categories/3/tiles/1/image/thumbnail/_type", - "categories/3/tiles/2/image/thumbnail/_type", - "categories/3/tiles/3/image/thumbnail/_type", - "categories/3/tiles/4/image/thumbnail/_type", - "categories/3/tiles/5/image/thumbnail/_type", - "categories/3/tiles/6/image/thumbnail/_type", - "categories/3/tiles/7/image/thumbnail/_type", - "categories/3/tiles/8/image/thumbnail/_type", + "$/categories/3/tiles/1/image/thumbnail/_type", + "$/categories/3/tiles/2/image/thumbnail/_type", + "$/categories/3/tiles/3/image/thumbnail/_type", + "$/categories/3/tiles/4/image/thumbnail/_type", + "$/categories/3/tiles/5/image/thumbnail/_type", + "$/categories/3/tiles/6/image/thumbnail/_type", + "$/categories/3/tiles/7/image/thumbnail/_type", + "$/categories/3/tiles/8/image/thumbnail/_type", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/ImageSearch.json", @@ -28215,36 +28441,36 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.categories[3].tiles[0].image._type", + "jsonPath": "$['categories'][3]['tiles'][0]['image']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageTrendingRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "categories/3/tiles/0/image/_type", + "path": "$/categories/3/tiles/0/image/_type", "position": Object { "column": 20, "line": 854, }, "similarJsonPaths": Array [ - "$.categories[3].tiles[1].image._type", - "$.categories[3].tiles[2].image._type", - "$.categories[3].tiles[3].image._type", - "$.categories[3].tiles[4].image._type", - "$.categories[3].tiles[5].image._type", - "$.categories[3].tiles[6].image._type", - "$.categories[3].tiles[7].image._type", - "$.categories[3].tiles[8].image._type", + "$['categories'][3]['tiles'][1]['image']['_type']", + "$['categories'][3]['tiles'][2]['image']['_type']", + "$['categories'][3]['tiles'][3]['image']['_type']", + "$['categories'][3]['tiles'][4]['image']['_type']", + "$['categories'][3]['tiles'][5]['image']['_type']", + "$['categories'][3]['tiles'][6]['image']['_type']", + "$['categories'][3]['tiles'][7]['image']['_type']", + "$['categories'][3]['tiles'][8]['image']['_type']", ], "similarPaths": Array [ - "categories/3/tiles/1/image/_type", - "categories/3/tiles/2/image/_type", - "categories/3/tiles/3/image/_type", - "categories/3/tiles/4/image/_type", - "categories/3/tiles/5/image/_type", - "categories/3/tiles/6/image/_type", - "categories/3/tiles/7/image/_type", - "categories/3/tiles/8/image/_type", + "$/categories/3/tiles/1/image/_type", + "$/categories/3/tiles/2/image/_type", + "$/categories/3/tiles/3/image/_type", + "$/categories/3/tiles/4/image/_type", + "$/categories/3/tiles/5/image/_type", + "$/categories/3/tiles/6/image/_type", + "$/categories/3/tiles/7/image/_type", + "$/categories/3/tiles/8/image/_type", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/ImageSearch.json", @@ -28261,36 +28487,36 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.categories[2].tiles[0].image.thumbnail._type", + "jsonPath": "$['categories'][2]['tiles'][0]['image']['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageTrendingRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "categories/2/tiles/0/image/thumbnail/_type", + "path": "$/categories/2/tiles/0/image/thumbnail/_type", "position": Object { "column": 20, "line": 854, }, "similarJsonPaths": Array [ - "$.categories[2].tiles[1].image.thumbnail._type", - "$.categories[2].tiles[2].image.thumbnail._type", - "$.categories[2].tiles[3].image.thumbnail._type", - "$.categories[2].tiles[4].image.thumbnail._type", - "$.categories[2].tiles[5].image.thumbnail._type", - "$.categories[2].tiles[6].image.thumbnail._type", - "$.categories[2].tiles[7].image.thumbnail._type", - "$.categories[2].tiles[8].image.thumbnail._type", + "$['categories'][2]['tiles'][1]['image']['thumbnail']['_type']", + "$['categories'][2]['tiles'][2]['image']['thumbnail']['_type']", + "$['categories'][2]['tiles'][3]['image']['thumbnail']['_type']", + "$['categories'][2]['tiles'][4]['image']['thumbnail']['_type']", + "$['categories'][2]['tiles'][5]['image']['thumbnail']['_type']", + "$['categories'][2]['tiles'][6]['image']['thumbnail']['_type']", + "$['categories'][2]['tiles'][7]['image']['thumbnail']['_type']", + "$['categories'][2]['tiles'][8]['image']['thumbnail']['_type']", ], "similarPaths": Array [ - "categories/2/tiles/1/image/thumbnail/_type", - "categories/2/tiles/2/image/thumbnail/_type", - "categories/2/tiles/3/image/thumbnail/_type", - "categories/2/tiles/4/image/thumbnail/_type", - "categories/2/tiles/5/image/thumbnail/_type", - "categories/2/tiles/6/image/thumbnail/_type", - "categories/2/tiles/7/image/thumbnail/_type", - "categories/2/tiles/8/image/thumbnail/_type", + "$/categories/2/tiles/1/image/thumbnail/_type", + "$/categories/2/tiles/2/image/thumbnail/_type", + "$/categories/2/tiles/3/image/thumbnail/_type", + "$/categories/2/tiles/4/image/thumbnail/_type", + "$/categories/2/tiles/5/image/thumbnail/_type", + "$/categories/2/tiles/6/image/thumbnail/_type", + "$/categories/2/tiles/7/image/thumbnail/_type", + "$/categories/2/tiles/8/image/thumbnail/_type", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/ImageSearch.json", @@ -28307,36 +28533,36 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.categories[2].tiles[0].image._type", + "jsonPath": "$['categories'][2]['tiles'][0]['image']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageTrendingRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "categories/2/tiles/0/image/_type", + "path": "$/categories/2/tiles/0/image/_type", "position": Object { "column": 20, "line": 854, }, "similarJsonPaths": Array [ - "$.categories[2].tiles[1].image._type", - "$.categories[2].tiles[2].image._type", - "$.categories[2].tiles[3].image._type", - "$.categories[2].tiles[4].image._type", - "$.categories[2].tiles[5].image._type", - "$.categories[2].tiles[6].image._type", - "$.categories[2].tiles[7].image._type", - "$.categories[2].tiles[8].image._type", + "$['categories'][2]['tiles'][1]['image']['_type']", + "$['categories'][2]['tiles'][2]['image']['_type']", + "$['categories'][2]['tiles'][3]['image']['_type']", + "$['categories'][2]['tiles'][4]['image']['_type']", + "$['categories'][2]['tiles'][5]['image']['_type']", + "$['categories'][2]['tiles'][6]['image']['_type']", + "$['categories'][2]['tiles'][7]['image']['_type']", + "$['categories'][2]['tiles'][8]['image']['_type']", ], "similarPaths": Array [ - "categories/2/tiles/1/image/_type", - "categories/2/tiles/2/image/_type", - "categories/2/tiles/3/image/_type", - "categories/2/tiles/4/image/_type", - "categories/2/tiles/5/image/_type", - "categories/2/tiles/6/image/_type", - "categories/2/tiles/7/image/_type", - "categories/2/tiles/8/image/_type", + "$/categories/2/tiles/1/image/_type", + "$/categories/2/tiles/2/image/_type", + "$/categories/2/tiles/3/image/_type", + "$/categories/2/tiles/4/image/_type", + "$/categories/2/tiles/5/image/_type", + "$/categories/2/tiles/6/image/_type", + "$/categories/2/tiles/7/image/_type", + "$/categories/2/tiles/8/image/_type", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/ImageSearch.json", @@ -28353,36 +28579,36 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.categories[1].tiles[0].image.thumbnail._type", + "jsonPath": "$['categories'][1]['tiles'][0]['image']['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageTrendingRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "categories/1/tiles/0/image/thumbnail/_type", + "path": "$/categories/1/tiles/0/image/thumbnail/_type", "position": Object { "column": 20, "line": 854, }, "similarJsonPaths": Array [ - "$.categories[1].tiles[1].image.thumbnail._type", - "$.categories[1].tiles[2].image.thumbnail._type", - "$.categories[1].tiles[3].image.thumbnail._type", - "$.categories[1].tiles[4].image.thumbnail._type", - "$.categories[1].tiles[5].image.thumbnail._type", - "$.categories[1].tiles[6].image.thumbnail._type", - "$.categories[1].tiles[7].image.thumbnail._type", - "$.categories[1].tiles[8].image.thumbnail._type", + "$['categories'][1]['tiles'][1]['image']['thumbnail']['_type']", + "$['categories'][1]['tiles'][2]['image']['thumbnail']['_type']", + "$['categories'][1]['tiles'][3]['image']['thumbnail']['_type']", + "$['categories'][1]['tiles'][4]['image']['thumbnail']['_type']", + "$['categories'][1]['tiles'][5]['image']['thumbnail']['_type']", + "$['categories'][1]['tiles'][6]['image']['thumbnail']['_type']", + "$['categories'][1]['tiles'][7]['image']['thumbnail']['_type']", + "$['categories'][1]['tiles'][8]['image']['thumbnail']['_type']", ], "similarPaths": Array [ - "categories/1/tiles/1/image/thumbnail/_type", - "categories/1/tiles/2/image/thumbnail/_type", - "categories/1/tiles/3/image/thumbnail/_type", - "categories/1/tiles/4/image/thumbnail/_type", - "categories/1/tiles/5/image/thumbnail/_type", - "categories/1/tiles/6/image/thumbnail/_type", - "categories/1/tiles/7/image/thumbnail/_type", - "categories/1/tiles/8/image/thumbnail/_type", + "$/categories/1/tiles/1/image/thumbnail/_type", + "$/categories/1/tiles/2/image/thumbnail/_type", + "$/categories/1/tiles/3/image/thumbnail/_type", + "$/categories/1/tiles/4/image/thumbnail/_type", + "$/categories/1/tiles/5/image/thumbnail/_type", + "$/categories/1/tiles/6/image/thumbnail/_type", + "$/categories/1/tiles/7/image/thumbnail/_type", + "$/categories/1/tiles/8/image/thumbnail/_type", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/ImageSearch.json", @@ -28399,36 +28625,36 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.categories[1].tiles[0].image._type", + "jsonPath": "$['categories'][1]['tiles'][0]['image']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageTrendingRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "categories/1/tiles/0/image/_type", + "path": "$/categories/1/tiles/0/image/_type", "position": Object { "column": 20, "line": 854, }, "similarJsonPaths": Array [ - "$.categories[1].tiles[1].image._type", - "$.categories[1].tiles[2].image._type", - "$.categories[1].tiles[3].image._type", - "$.categories[1].tiles[4].image._type", - "$.categories[1].tiles[5].image._type", - "$.categories[1].tiles[6].image._type", - "$.categories[1].tiles[7].image._type", - "$.categories[1].tiles[8].image._type", + "$['categories'][1]['tiles'][1]['image']['_type']", + "$['categories'][1]['tiles'][2]['image']['_type']", + "$['categories'][1]['tiles'][3]['image']['_type']", + "$['categories'][1]['tiles'][4]['image']['_type']", + "$['categories'][1]['tiles'][5]['image']['_type']", + "$['categories'][1]['tiles'][6]['image']['_type']", + "$['categories'][1]['tiles'][7]['image']['_type']", + "$['categories'][1]['tiles'][8]['image']['_type']", ], "similarPaths": Array [ - "categories/1/tiles/1/image/_type", - "categories/1/tiles/2/image/_type", - "categories/1/tiles/3/image/_type", - "categories/1/tiles/4/image/_type", - "categories/1/tiles/5/image/_type", - "categories/1/tiles/6/image/_type", - "categories/1/tiles/7/image/_type", - "categories/1/tiles/8/image/_type", + "$/categories/1/tiles/1/image/_type", + "$/categories/1/tiles/2/image/_type", + "$/categories/1/tiles/3/image/_type", + "$/categories/1/tiles/4/image/_type", + "$/categories/1/tiles/5/image/_type", + "$/categories/1/tiles/6/image/_type", + "$/categories/1/tiles/7/image/_type", + "$/categories/1/tiles/8/image/_type", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/ImageSearch.json", @@ -28445,36 +28671,36 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.categories[0].tiles[0].image.thumbnail._type", + "jsonPath": "$['categories'][0]['tiles'][0]['image']['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageTrendingRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "categories/0/tiles/0/image/thumbnail/_type", + "path": "$/categories/0/tiles/0/image/thumbnail/_type", "position": Object { "column": 20, "line": 854, }, "similarJsonPaths": Array [ - "$.categories[0].tiles[1].image.thumbnail._type", - "$.categories[0].tiles[2].image.thumbnail._type", - "$.categories[0].tiles[3].image.thumbnail._type", - "$.categories[0].tiles[4].image.thumbnail._type", - "$.categories[0].tiles[5].image.thumbnail._type", - "$.categories[0].tiles[6].image.thumbnail._type", - "$.categories[0].tiles[7].image.thumbnail._type", - "$.categories[0].tiles[8].image.thumbnail._type", + "$['categories'][0]['tiles'][1]['image']['thumbnail']['_type']", + "$['categories'][0]['tiles'][2]['image']['thumbnail']['_type']", + "$['categories'][0]['tiles'][3]['image']['thumbnail']['_type']", + "$['categories'][0]['tiles'][4]['image']['thumbnail']['_type']", + "$['categories'][0]['tiles'][5]['image']['thumbnail']['_type']", + "$['categories'][0]['tiles'][6]['image']['thumbnail']['_type']", + "$['categories'][0]['tiles'][7]['image']['thumbnail']['_type']", + "$['categories'][0]['tiles'][8]['image']['thumbnail']['_type']", ], "similarPaths": Array [ - "categories/0/tiles/1/image/thumbnail/_type", - "categories/0/tiles/2/image/thumbnail/_type", - "categories/0/tiles/3/image/thumbnail/_type", - "categories/0/tiles/4/image/thumbnail/_type", - "categories/0/tiles/5/image/thumbnail/_type", - "categories/0/tiles/6/image/thumbnail/_type", - "categories/0/tiles/7/image/thumbnail/_type", - "categories/0/tiles/8/image/thumbnail/_type", + "$/categories/0/tiles/1/image/thumbnail/_type", + "$/categories/0/tiles/2/image/thumbnail/_type", + "$/categories/0/tiles/3/image/thumbnail/_type", + "$/categories/0/tiles/4/image/thumbnail/_type", + "$/categories/0/tiles/5/image/thumbnail/_type", + "$/categories/0/tiles/6/image/thumbnail/_type", + "$/categories/0/tiles/7/image/thumbnail/_type", + "$/categories/0/tiles/8/image/thumbnail/_type", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/ImageSearch.json", @@ -28491,36 +28717,36 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.categories[0].tiles[0].image._type", + "jsonPath": "$['categories'][0]['tiles'][0]['image']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/examples/SuccessfulImageTrendingRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "categories/0/tiles/0/image/_type", + "path": "$/categories/0/tiles/0/image/_type", "position": Object { "column": 20, "line": 854, }, "similarJsonPaths": Array [ - "$.categories[0].tiles[1].image._type", - "$.categories[0].tiles[2].image._type", - "$.categories[0].tiles[3].image._type", - "$.categories[0].tiles[4].image._type", - "$.categories[0].tiles[5].image._type", - "$.categories[0].tiles[6].image._type", - "$.categories[0].tiles[7].image._type", - "$.categories[0].tiles[8].image._type", + "$['categories'][0]['tiles'][1]['image']['_type']", + "$['categories'][0]['tiles'][2]['image']['_type']", + "$['categories'][0]['tiles'][3]['image']['_type']", + "$['categories'][0]['tiles'][4]['image']['_type']", + "$['categories'][0]['tiles'][5]['image']['_type']", + "$['categories'][0]['tiles'][6]['image']['_type']", + "$['categories'][0]['tiles'][7]['image']['_type']", + "$['categories'][0]['tiles'][8]['image']['_type']", ], "similarPaths": Array [ - "categories/0/tiles/1/image/_type", - "categories/0/tiles/2/image/_type", - "categories/0/tiles/3/image/_type", - "categories/0/tiles/4/image/_type", - "categories/0/tiles/5/image/_type", - "categories/0/tiles/6/image/_type", - "categories/0/tiles/7/image/_type", - "categories/0/tiles/8/image/_type", + "$/categories/0/tiles/1/image/_type", + "$/categories/0/tiles/2/image/_type", + "$/categories/0/tiles/3/image/_type", + "$/categories/0/tiles/4/image/_type", + "$/categories/0/tiles/5/image/_type", + "$/categories/0/tiles/6/image/_type", + "$/categories/0/tiles/7/image/_type", + "$/categories/0/tiles/8/image/_type", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/ImageSearch/stable/v1.0/ImageSearch.json", @@ -28552,13 +28778,13 @@ Array [ "code": "INVALID_FORMAT", "description": "The reference DateTime used for predicting datetime entities.", "directives": Object {}, - "jsonPath": "$.options.datetimeReference", + "jsonPath": "$['options']['datetimeReference']", "message": "Object didn't pass validation for format date-time: 2015-02-13T13:15:00", "params": Array [ "date-time", "2015-02-13T13:15:00", ], - "path": "options/datetimeReference", + "path": "$/options/datetimeReference", "position": Object { "column": 30, "line": 254, @@ -28578,13 +28804,13 @@ Array [ "code": "INVALID_FORMAT", "description": "The reference DateTime used for predicting datetime entities.", "directives": Object {}, - "jsonPath": "$.options.datetimeReference", + "jsonPath": "$['options']['datetimeReference']", "message": "Object didn't pass validation for format date-time: 2015-02-13T13:15:00", "params": Array [ "date-time", "2015-02-13T13:15:00", ], - "path": "options/datetimeReference", + "path": "$/options/datetimeReference", "position": Object { "column": 30, "line": 254, @@ -28610,13 +28836,13 @@ Array [ "details": Object { "code": "INVALID_TYPE", "directives": Object {}, - "jsonPath": "$.parameters[\\"bing-spell-check-subscription-key\\"]", + "jsonPath": "$['parameters']['bing-spell-check-subscription-key']", "message": "Expected type string but found type object", "params": Array [ "string", "object", ], - "path": "parameters/bing-spell-check-subscription-key", + "path": "$/parameters/bing-spell-check-subscription-key", "position": Object { "column": 11, "line": 157, @@ -28668,13 +28894,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a thing.", "directives": Object {}, - "jsonPath": "$.places.value[0].geo", + "jsonPath": "$['places']['value'][0]['geo']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/LocalSearch/stable/v1.0/examples/SuccessfulLocalSearchRequest.json", "message": "Additional properties not allowed: geo", "params": Array [ "geo", ], - "path": "places/value/0/geo", + "path": "$/places/value/0/geo", "position": Object { "column": 14, "line": 455, @@ -28686,13 +28912,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc.", "directives": Object {}, - "jsonPath": "$.places.value[0].geo", + "jsonPath": "$['places']['value'][0]['geo']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/LocalSearch/stable/v1.0/examples/SuccessfulLocalSearchRequest.json", "message": "Additional properties not allowed: geo", "params": Array [ "geo", ], - "path": "places/value/0/geo", + "path": "$/places/value/0/geo", "position": Object { "column": 21, "line": 522, @@ -28704,13 +28930,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an action.", "directives": Object {}, - "jsonPath": "$.places.value[0].geo", + "jsonPath": "$['places']['value'][0]['geo']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/LocalSearch/stable/v1.0/examples/SuccessfulLocalSearchRequest.json", "message": "Additional properties not allowed: geo", "params": Array [ "geo", ], - "path": "places/value/0/geo", + "path": "$/places/value/0/geo", "position": Object { "column": 15, "line": 481, @@ -28721,13 +28947,13 @@ Array [ Object { "code": "OBJECT_ADDITIONAL_PROPERTIES", "directives": Object {}, - "jsonPath": "$.places.value[0].geo", + "jsonPath": "$['places']['value'][0]['geo']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/LocalSearch/stable/v1.0/examples/SuccessfulLocalSearchRequest.json", "message": "Additional properties not allowed: geo", "params": Array [ "geo", ], - "path": "places/value/0/geo", + "path": "$/places/value/0/geo", "position": Object { "column": 21, "line": 803, @@ -28739,13 +28965,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a postal address.", "directives": Object {}, - "jsonPath": "$.places.value[0].address._type", + "jsonPath": "$['places']['value'][0]['address']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/LocalSearch/stable/v1.0/examples/SuccessfulLocalSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "places/value/0/address/_type", + "path": "$/places/value/0/address/_type", "position": Object { "column": 22, "line": 867, @@ -28757,13 +28983,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc.", "directives": Object {}, - "jsonPath": "$.places.value[0].geo", + "jsonPath": "$['places']['value'][0]['geo']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/LocalSearch/stable/v1.0/examples/SuccessfulLocalSearchRequest.json", "message": "Additional properties not allowed: geo", "params": Array [ "geo", ], - "path": "places/value/0/geo", + "path": "$/places/value/0/geo", "position": Object { "column": 19, "line": 731, @@ -28774,13 +29000,13 @@ Array [ Object { "code": "OBJECT_ADDITIONAL_PROPERTIES", "directives": Object {}, - "jsonPath": "$.places.value[0].geo", + "jsonPath": "$['places']['value'][0]['geo']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/LocalSearch/stable/v1.0/examples/SuccessfulLocalSearchRequest.json", "message": "Additional properties not allowed: geo", "params": Array [ "geo", ], - "path": "places/value/0/geo", + "path": "$/places/value/0/geo", "position": Object { "column": 24, "line": 832, @@ -28792,13 +29018,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a postal address.", "directives": Object {}, - "jsonPath": "$.places.value[0].geo", + "jsonPath": "$['places']['value'][0]['geo']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/LocalSearch/stable/v1.0/examples/SuccessfulLocalSearchRequest.json", "message": "Additional properties not allowed: geo", "params": Array [ "geo", ], - "path": "places/value/0/geo", + "path": "$/places/value/0/geo", "position": Object { "column": 22, "line": 867, @@ -28807,7 +29033,7 @@ Array [ "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/LocalSearch/stable/v1.0/LocalSearch.json", }, ], - "jsonPath": "$.places.value[0]", + "jsonPath": "$['places']['value'][0]", "jsonPosition": Object { "column": 25, "line": 21, @@ -28815,30 +29041,30 @@ Array [ "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/LocalSearch/stable/v1.0/examples/SuccessfulLocalSearchRequest.json", "message": "Data does not match any schemas from 'oneOf'", "params": Array [], - "path": "places/value/0", + "path": "$/places/value/0", "position": Object { "column": 20, "line": 377, }, "similarJsonPaths": Array [ - "$.places.value[1]", - "$.places.value[2]", - "$.places.value[3]", - "$.places.value[4]", - "$.places.value[6]", - "$.places.value[7]", - "$.places.value[8]", - "$.places.value[9]", + "$['places']['value'][1]", + "$['places']['value'][2]", + "$['places']['value'][3]", + "$['places']['value'][4]", + "$['places']['value'][6]", + "$['places']['value'][7]", + "$['places']['value'][8]", + "$['places']['value'][9]", ], "similarPaths": Array [ - "places/value/1", - "places/value/2", - "places/value/3", - "places/value/4", - "places/value/6", - "places/value/7", - "places/value/8", - "places/value/9", + "$/places/value/1", + "$/places/value/2", + "$/places/value/3", + "$/places/value/4", + "$/places/value/6", + "$/places/value/7", + "$/places/value/8", + "$/places/value/9", ], "title": "#/definitions/Places/properties/value/items", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/LocalSearch/stable/v1.0/LocalSearch.json", @@ -28859,13 +29085,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a thing.", "directives": Object {}, - "jsonPath": "$.places.value[5].address", + "jsonPath": "$['places']['value'][5]['address']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/LocalSearch/stable/v1.0/examples/SuccessfulLocalSearchRequest.json", "message": "Additional properties not allowed: address", "params": Array [ "address", ], - "path": "places/value/5/address", + "path": "$/places/value/5/address", "position": Object { "column": 14, "line": 455, @@ -28877,13 +29103,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc.", "directives": Object {}, - "jsonPath": "$.places.value[5].address", + "jsonPath": "$['places']['value'][5]['address']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/LocalSearch/stable/v1.0/examples/SuccessfulLocalSearchRequest.json", "message": "Additional properties not allowed: address", "params": Array [ "address", ], - "path": "places/value/5/address", + "path": "$/places/value/5/address", "position": Object { "column": 21, "line": 522, @@ -28895,13 +29121,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an action.", "directives": Object {}, - "jsonPath": "$.places.value[5].address", + "jsonPath": "$['places']['value'][5]['address']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/LocalSearch/stable/v1.0/examples/SuccessfulLocalSearchRequest.json", "message": "Additional properties not allowed: address", "params": Array [ "address", ], - "path": "places/value/5/address", + "path": "$/places/value/5/address", "position": Object { "column": 15, "line": 481, @@ -28912,13 +29138,13 @@ Array [ Object { "code": "OBJECT_ADDITIONAL_PROPERTIES", "directives": Object {}, - "jsonPath": "$.places.value[5].address", + "jsonPath": "$['places']['value'][5]['address']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/LocalSearch/stable/v1.0/examples/SuccessfulLocalSearchRequest.json", "message": "Additional properties not allowed: address", "params": Array [ "address", ], - "path": "places/value/5/address", + "path": "$/places/value/5/address", "position": Object { "column": 21, "line": 803, @@ -28930,13 +29156,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a postal address.", "directives": Object {}, - "jsonPath": "$.places.value[5].address._type", + "jsonPath": "$['places']['value'][5]['address']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/LocalSearch/stable/v1.0/examples/SuccessfulLocalSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "places/value/5/address/_type", + "path": "$/places/value/5/address/_type", "position": Object { "column": 22, "line": 867, @@ -28948,13 +29174,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc.", "directives": Object {}, - "jsonPath": "$.places.value[5].address", + "jsonPath": "$['places']['value'][5]['address']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/LocalSearch/stable/v1.0/examples/SuccessfulLocalSearchRequest.json", "message": "Additional properties not allowed: address", "params": Array [ "address", ], - "path": "places/value/5/address", + "path": "$/places/value/5/address", "position": Object { "column": 19, "line": 731, @@ -28965,13 +29191,13 @@ Array [ Object { "code": "OBJECT_ADDITIONAL_PROPERTIES", "directives": Object {}, - "jsonPath": "$.places.value[5].address", + "jsonPath": "$['places']['value'][5]['address']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/LocalSearch/stable/v1.0/examples/SuccessfulLocalSearchRequest.json", "message": "Additional properties not allowed: address", "params": Array [ "address", ], - "path": "places/value/5/address", + "path": "$/places/value/5/address", "position": Object { "column": 24, "line": 832, @@ -28983,13 +29209,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a postal address.", "directives": Object {}, - "jsonPath": "$.places.value[5].address", + "jsonPath": "$['places']['value'][5]['address']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/LocalSearch/stable/v1.0/examples/SuccessfulLocalSearchRequest.json", "message": "Additional properties not allowed: address", "params": Array [ "address", ], - "path": "places/value/5/address", + "path": "$/places/value/5/address", "position": Object { "column": 22, "line": 867, @@ -28998,7 +29224,7 @@ Array [ "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/LocalSearch/stable/v1.0/LocalSearch.json", }, ], - "jsonPath": "$.places.value[5]", + "jsonPath": "$['places']['value'][5]", "jsonPosition": Object { "column": 25, "line": 181, @@ -29006,7 +29232,7 @@ Array [ "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/LocalSearch/stable/v1.0/examples/SuccessfulLocalSearchRequest.json", "message": "Data does not match any schemas from 'oneOf'", "params": Array [], - "path": "places/value/5", + "path": "$/places/value/5", "position": Object { "column": 20, "line": 377, @@ -29026,7 +29252,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a local entity answer.", "directives": Object {}, - "jsonPath": "$.places.searchAction", + "jsonPath": "$['places']['searchAction']", "jsonPosition": Object { "column": 27, "line": 18, @@ -29036,7 +29262,7 @@ Array [ "params": Array [ "searchAction", ], - "path": "places/searchAction", + "path": "$/places/searchAction", "position": Object { "column": 15, "line": 362, @@ -29056,7 +29282,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a local entity answer.", "directives": Object {}, - "jsonPath": "$.places._type", + "jsonPath": "$['places']['_type']", "jsonPosition": Object { "column": 27, "line": 18, @@ -29066,7 +29292,7 @@ Array [ "params": Array [ "_type", ], - "path": "places/_type", + "path": "$/places/_type", "position": Object { "column": 15, "line": 362, @@ -29086,7 +29312,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines the query context that Bing used for the request.", "directives": Object {}, - "jsonPath": "$.queryContext._type", + "jsonPath": "$['queryContext']['_type']", "jsonPosition": Object { "column": 33, "line": 15, @@ -29096,7 +29322,7 @@ Array [ "params": Array [ "_type", ], - "path": "queryContext/_type", + "path": "$/queryContext/_type", "position": Object { "column": 21, "line": 315, @@ -29330,7 +29556,373 @@ exports[`validateExamples should not regress for file '/home/vsts/work/1/s/regre exports[`validateExamples should not regress for file '/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/TranslatorText/stable/v3.0/TranslatorText.json': returned results 1`] = ` Array [ Object { - "inner": [Error: couldn't understand path 0,alternatives], + "code": "OBJECT_ADDITIONAL_PROPERTIES", + "details": Object { + "code": "OBJECT_ADDITIONAL_PROPERTIES", + "directives": Object {}, + "jsonPath": "$[0]['alternatives']", + "message": "Additional properties not allowed: alternatives", + "params": Array [ + "alternatives", + ], + "path": "$/0/alternatives", + "position": Object { + "column": 16, + "line": 991, + }, + "title": "#/definitions/DetectResult/items", + "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/TranslatorText/stable/v3.0/TranslatorText.json", + }, + "operationId": "Translator_Detect", + "responseCode": "200", + "scenario": "Detect success example", + "severity": 0, + "source": "response", + }, + Object { + "code": "OBJECT_ADDITIONAL_PROPERTIES", + "details": Object { + "code": "OBJECT_ADDITIONAL_PROPERTIES", + "directives": Object {}, + "jsonPath": "$[0]['isTransliterationSupported']", + "message": "Additional properties not allowed: isTransliterationSupported", + "params": Array [ + "isTransliterationSupported", + ], + "path": "$/0/isTransliterationSupported", + "position": Object { + "column": 16, + "line": 991, + }, + "title": "#/definitions/DetectResult/items", + "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/TranslatorText/stable/v3.0/TranslatorText.json", + }, + "operationId": "Translator_Detect", + "responseCode": "200", + "scenario": "Detect success example", + "severity": 0, + "source": "response", + }, + Object { + "code": "OBJECT_ADDITIONAL_PROPERTIES", + "details": Object { + "code": "OBJECT_ADDITIONAL_PROPERTIES", + "directives": Object {}, + "jsonPath": "$[0]['isTranslationSupported']", + "message": "Additional properties not allowed: isTranslationSupported", + "params": Array [ + "isTranslationSupported", + ], + "path": "$/0/isTranslationSupported", + "position": Object { + "column": 16, + "line": 991, + }, + "title": "#/definitions/DetectResult/items", + "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/TranslatorText/stable/v3.0/TranslatorText.json", + }, + "operationId": "Translator_Detect", + "responseCode": "200", + "scenario": "Detect success example", + "severity": 0, + "source": "response", + }, + Object { + "code": "OBJECT_ADDITIONAL_PROPERTIES", + "details": Object { + "code": "OBJECT_ADDITIONAL_PROPERTIES", + "directives": Object {}, + "jsonPath": "$[0]['score']", + "message": "Additional properties not allowed: score", + "params": Array [ + "score", + ], + "path": "$/0/score", + "position": Object { + "column": 16, + "line": 991, + }, + "title": "#/definitions/DetectResult/items", + "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/TranslatorText/stable/v3.0/TranslatorText.json", + }, + "operationId": "Translator_Detect", + "responseCode": "200", + "scenario": "Detect success example", + "severity": 0, + "source": "response", + }, + Object { + "code": "OBJECT_ADDITIONAL_PROPERTIES", + "details": Object { + "code": "OBJECT_ADDITIONAL_PROPERTIES", + "directives": Object {}, + "jsonPath": "$[0]['language']", + "message": "Additional properties not allowed: language", + "params": Array [ + "language", + ], + "path": "$/0/language", + "position": Object { + "column": 16, + "line": 991, + }, + "title": "#/definitions/DetectResult/items", + "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/TranslatorText/stable/v3.0/TranslatorText.json", + }, + "operationId": "Translator_Detect", + "responseCode": "200", + "scenario": "Detect success example", + "severity": 0, + "source": "response", + }, + Object { + "code": "OBJECT_ADDITIONAL_PROPERTIES", + "details": Object { + "code": "OBJECT_ADDITIONAL_PROPERTIES", + "directives": Object {}, + "jsonPath": "$['translation']['zh-Hant']", + "jsonPosition": Object { + "column": 31, + "line": 13, + }, + "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/TranslatorText/stable/v3.0/examples/languagesSuccess.json", + "message": "Additional properties not allowed: zh-Hant", + "params": Array [ + "zh-Hant", + ], + "path": "$/translation/zh-Hant", + "position": Object { + "column": 24, + "line": 636, + }, + "title": "#/definitions/LanguagesResult/properties/translation", + "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/TranslatorText/stable/v3.0/TranslatorText.json", + }, + "operationId": "Translator_Languages", + "responseCode": "200", + "scenario": "Languages success example", + "severity": 0, + "source": "response", + }, + Object { + "code": "OBJECT_ADDITIONAL_PROPERTIES", + "details": Object { + "code": "OBJECT_ADDITIONAL_PROPERTIES", + "directives": Object {}, + "jsonPath": "$['translation']['zh-Hans']", + "jsonPosition": Object { + "column": 31, + "line": 13, + }, + "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/TranslatorText/stable/v3.0/examples/languagesSuccess.json", + "message": "Additional properties not allowed: zh-Hans", + "params": Array [ + "zh-Hans", + ], + "path": "$/translation/zh-Hans", + "position": Object { + "column": 24, + "line": 636, + }, + "title": "#/definitions/LanguagesResult/properties/translation", + "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/TranslatorText/stable/v3.0/TranslatorText.json", + }, + "operationId": "Translator_Languages", + "responseCode": "200", + "scenario": "Languages success example", + "severity": 0, + "source": "response", + }, + Object { + "code": "OBJECT_ADDITIONAL_PROPERTIES", + "details": Object { + "code": "OBJECT_ADDITIONAL_PROPERTIES", + "directives": Object {}, + "jsonPath": "$['translation']['th']", + "jsonPosition": Object { + "column": 31, + "line": 13, + }, + "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/TranslatorText/stable/v3.0/examples/languagesSuccess.json", + "message": "Additional properties not allowed: th", + "params": Array [ + "th", + ], + "path": "$/translation/th", + "position": Object { + "column": 24, + "line": 636, + }, + "title": "#/definitions/LanguagesResult/properties/translation", + "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/TranslatorText/stable/v3.0/TranslatorText.json", + }, + "operationId": "Translator_Languages", + "responseCode": "200", + "scenario": "Languages success example", + "severity": 0, + "source": "response", + }, + Object { + "code": "OBJECT_ADDITIONAL_PROPERTIES", + "details": Object { + "code": "OBJECT_ADDITIONAL_PROPERTIES", + "directives": Object {}, + "jsonPath": "$['translation']['ko']", + "jsonPosition": Object { + "column": 31, + "line": 13, + }, + "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/TranslatorText/stable/v3.0/examples/languagesSuccess.json", + "message": "Additional properties not allowed: ko", + "params": Array [ + "ko", + ], + "path": "$/translation/ko", + "position": Object { + "column": 24, + "line": 636, + }, + "title": "#/definitions/LanguagesResult/properties/translation", + "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/TranslatorText/stable/v3.0/TranslatorText.json", + }, + "operationId": "Translator_Languages", + "responseCode": "200", + "scenario": "Languages success example", + "severity": 0, + "source": "response", + }, + Object { + "code": "OBJECT_ADDITIONAL_PROPERTIES", + "details": Object { + "code": "OBJECT_ADDITIONAL_PROPERTIES", + "directives": Object {}, + "jsonPath": "$['translation']['ja']", + "jsonPosition": Object { + "column": 31, + "line": 13, + }, + "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/TranslatorText/stable/v3.0/examples/languagesSuccess.json", + "message": "Additional properties not allowed: ja", + "params": Array [ + "ja", + ], + "path": "$/translation/ja", + "position": Object { + "column": 24, + "line": 636, + }, + "title": "#/definitions/LanguagesResult/properties/translation", + "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/TranslatorText/stable/v3.0/TranslatorText.json", + }, + "operationId": "Translator_Languages", + "responseCode": "200", + "scenario": "Languages success example", + "severity": 0, + "source": "response", + }, + Object { + "code": "OBJECT_ADDITIONAL_PROPERTIES", + "details": Object { + "code": "OBJECT_ADDITIONAL_PROPERTIES", + "directives": Object {}, + "jsonPath": "$['translation']['ar']", + "jsonPosition": Object { + "column": 31, + "line": 13, + }, + "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/TranslatorText/stable/v3.0/examples/languagesSuccess.json", + "message": "Additional properties not allowed: ar", + "params": Array [ + "ar", + ], + "path": "$/translation/ar", + "position": Object { + "column": 24, + "line": 636, + }, + "title": "#/definitions/LanguagesResult/properties/translation", + "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/TranslatorText/stable/v3.0/TranslatorText.json", + }, + "operationId": "Translator_Languages", + "responseCode": "200", + "scenario": "Languages success example", + "severity": 0, + "source": "response", + }, + Object { + "code": "OBJECT_ADDITIONAL_PROPERTIES", + "details": Object { + "code": "OBJECT_ADDITIONAL_PROPERTIES", + "directives": Object {}, + "jsonPath": "$['translation']['af']", + "jsonPosition": Object { + "column": 31, + "line": 13, + }, + "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/TranslatorText/stable/v3.0/examples/languagesSuccess.json", + "message": "Additional properties not allowed: af", + "params": Array [ + "af", + ], + "path": "$/translation/af", + "position": Object { + "column": 24, + "line": 636, + }, + "title": "#/definitions/LanguagesResult/properties/translation", + "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/TranslatorText/stable/v3.0/TranslatorText.json", + }, + "operationId": "Translator_Languages", + "responseCode": "200", + "scenario": "Languages success example", + "severity": 0, + "source": "response", + }, + Object { + "code": "OBJECT_ADDITIONAL_PROPERTIES", + "details": Object { + "code": "OBJECT_ADDITIONAL_PROPERTIES", + "description": "Text needed for a translate request ", + "directives": Object {}, + "jsonPath": "$[0]['Text']", + "message": "Additional properties not allowed: Text", + "params": Array [ + "Text", + ], + "path": "$/0/Text", + "position": Object { + "column": 27, + "line": 1072, + }, + "title": "#/definitions/TranslateTextInput", + "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/TranslatorText/stable/v3.0/TranslatorText.json", + }, + "operationId": "Translator_Translate", + "responseCode": "ALL", + "scenario": "Translate success example", + "severity": 0, + "source": "request", + }, + Object { + "code": "REQUIRED_PARAMETER_EXAMPLE_NOT_FOUND", + "details": Object { + "code": "REQUIRED_PARAMETER_EXAMPLE_NOT_FOUND", + "directives": Object {}, + "id": "OAV105", + "message": "In operation \\"Translator_Transliterate\\", parameter texts is required in the swagger spec but is not present in the provided example parameter values.", + "path": "", + "position": Object { + "column": 11, + "line": 594, + }, + "title": "{\\"path\\":[\\"\\"],\\"position\\":{\\"line\\":1,\\"column\\":1},\\"url\\":\\"/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/TranslatorText/stable/v3.0/examples/transliterateSuccess.json\\"}", + "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/TranslatorText/stable/v3.0/TranslatorText.json", + }, + "operationId": "Translator_Transliterate", + "responseCode": "ALL", + "scenario": "Transliterate success example", + "severity": 0, + "source": "request", }, ] `; @@ -29366,7 +29958,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video answer.", "directives": Object {}, - "jsonPath": "$.instrumentation", + "jsonPath": "$['instrumentation']", "jsonPosition": Object { "column": 21, "line": 8, @@ -29376,7 +29968,7 @@ Array [ "params": Array [ "instrumentation", ], - "path": "instrumentation", + "path": "$/instrumentation", "position": Object { "column": 15, "line": 651, @@ -29396,7 +29988,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video answer.", "directives": Object {}, - "jsonPath": "$.readLink", + "jsonPath": "$['readLink']", "jsonPosition": Object { "column": 21, "line": 8, @@ -29406,7 +29998,7 @@ Array [ "params": Array [ "readLink", ], - "path": "readLink", + "path": "$/readLink", "position": Object { "column": 15, "line": 651, @@ -29426,7 +30018,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video answer.", "directives": Object {}, - "jsonPath": "$.relatedSearches", + "jsonPath": "$['relatedSearches']", "jsonPosition": Object { "column": 21, "line": 8, @@ -29436,7 +30028,7 @@ Array [ "params": Array [ "relatedSearches", ], - "path": "relatedSearches", + "path": "$/relatedSearches", "position": Object { "column": 15, "line": 651, @@ -29456,26 +30048,26 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.pivotSuggestions[0].suggestions[0].thumbnail._type", + "jsonPath": "$['pivotSuggestions'][0]['suggestions'][0]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "pivotSuggestions/0/suggestions/0/thumbnail/_type", + "path": "$/pivotSuggestions/0/suggestions/0/thumbnail/_type", "position": Object { "column": 20, "line": 906, }, "similarJsonPaths": Array [ - "$.pivotSuggestions[0].suggestions[1].thumbnail._type", - "$.pivotSuggestions[0].suggestions[2].thumbnail._type", - "$.pivotSuggestions[0].suggestions[3].thumbnail._type", + "$['pivotSuggestions'][0]['suggestions'][1]['thumbnail']['_type']", + "$['pivotSuggestions'][0]['suggestions'][2]['thumbnail']['_type']", + "$['pivotSuggestions'][0]['suggestions'][3]['thumbnail']['_type']", ], "similarPaths": Array [ - "pivotSuggestions/0/suggestions/1/thumbnail/_type", - "pivotSuggestions/0/suggestions/2/thumbnail/_type", - "pivotSuggestions/0/suggestions/3/thumbnail/_type", + "$/pivotSuggestions/0/suggestions/1/thumbnail/_type", + "$/pivotSuggestions/0/suggestions/2/thumbnail/_type", + "$/pivotSuggestions/0/suggestions/3/thumbnail/_type", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/VideoSearch.json", @@ -29492,98 +30084,98 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.queryExpansions[0].thumbnail._type", + "jsonPath": "$['queryExpansions'][0]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "queryExpansions/0/thumbnail/_type", + "path": "$/queryExpansions/0/thumbnail/_type", "position": Object { "column": 20, "line": 906, }, "similarJsonPaths": Array [ - "$.queryExpansions[1].thumbnail._type", - "$.queryExpansions[2].thumbnail._type", - "$.queryExpansions[3].thumbnail._type", - "$.queryExpansions[4].thumbnail._type", - "$.queryExpansions[5].thumbnail._type", - "$.queryExpansions[6].thumbnail._type", - "$.queryExpansions[7].thumbnail._type", - "$.queryExpansions[8].thumbnail._type", - "$.queryExpansions[9].thumbnail._type", - "$.queryExpansions[10].thumbnail._type", - "$.queryExpansions[11].thumbnail._type", - "$.queryExpansions[12].thumbnail._type", - "$.queryExpansions[13].thumbnail._type", - "$.queryExpansions[14].thumbnail._type", - "$.queryExpansions[15].thumbnail._type", - "$.queryExpansions[16].thumbnail._type", - "$.queryExpansions[17].thumbnail._type", - "$.queryExpansions[18].thumbnail._type", - "$.queryExpansions[19].thumbnail._type", - "$.queryExpansions[20].thumbnail._type", - "$.queryExpansions[21].thumbnail._type", - "$.queryExpansions[22].thumbnail._type", - "$.queryExpansions[23].thumbnail._type", - "$.queryExpansions[24].thumbnail._type", - "$.queryExpansions[25].thumbnail._type", - "$.queryExpansions[26].thumbnail._type", - "$.queryExpansions[27].thumbnail._type", - "$.queryExpansions[28].thumbnail._type", - "$.queryExpansions[29].thumbnail._type", - "$.queryExpansions[30].thumbnail._type", - "$.queryExpansions[31].thumbnail._type", - "$.queryExpansions[32].thumbnail._type", - "$.queryExpansions[33].thumbnail._type", - "$.queryExpansions[34].thumbnail._type", - "$.queryExpansions[35].thumbnail._type", - "$.queryExpansions[36].thumbnail._type", - "$.queryExpansions[37].thumbnail._type", - "$.queryExpansions[38].thumbnail._type", - "$.queryExpansions[39].thumbnail._type", + "$['queryExpansions'][1]['thumbnail']['_type']", + "$['queryExpansions'][2]['thumbnail']['_type']", + "$['queryExpansions'][3]['thumbnail']['_type']", + "$['queryExpansions'][4]['thumbnail']['_type']", + "$['queryExpansions'][5]['thumbnail']['_type']", + "$['queryExpansions'][6]['thumbnail']['_type']", + "$['queryExpansions'][7]['thumbnail']['_type']", + "$['queryExpansions'][8]['thumbnail']['_type']", + "$['queryExpansions'][9]['thumbnail']['_type']", + "$['queryExpansions'][10]['thumbnail']['_type']", + "$['queryExpansions'][11]['thumbnail']['_type']", + "$['queryExpansions'][12]['thumbnail']['_type']", + "$['queryExpansions'][13]['thumbnail']['_type']", + "$['queryExpansions'][14]['thumbnail']['_type']", + "$['queryExpansions'][15]['thumbnail']['_type']", + "$['queryExpansions'][16]['thumbnail']['_type']", + "$['queryExpansions'][17]['thumbnail']['_type']", + "$['queryExpansions'][18]['thumbnail']['_type']", + "$['queryExpansions'][19]['thumbnail']['_type']", + "$['queryExpansions'][20]['thumbnail']['_type']", + "$['queryExpansions'][21]['thumbnail']['_type']", + "$['queryExpansions'][22]['thumbnail']['_type']", + "$['queryExpansions'][23]['thumbnail']['_type']", + "$['queryExpansions'][24]['thumbnail']['_type']", + "$['queryExpansions'][25]['thumbnail']['_type']", + "$['queryExpansions'][26]['thumbnail']['_type']", + "$['queryExpansions'][27]['thumbnail']['_type']", + "$['queryExpansions'][28]['thumbnail']['_type']", + "$['queryExpansions'][29]['thumbnail']['_type']", + "$['queryExpansions'][30]['thumbnail']['_type']", + "$['queryExpansions'][31]['thumbnail']['_type']", + "$['queryExpansions'][32]['thumbnail']['_type']", + "$['queryExpansions'][33]['thumbnail']['_type']", + "$['queryExpansions'][34]['thumbnail']['_type']", + "$['queryExpansions'][35]['thumbnail']['_type']", + "$['queryExpansions'][36]['thumbnail']['_type']", + "$['queryExpansions'][37]['thumbnail']['_type']", + "$['queryExpansions'][38]['thumbnail']['_type']", + "$['queryExpansions'][39]['thumbnail']['_type']", ], "similarPaths": Array [ - "queryExpansions/1/thumbnail/_type", - "queryExpansions/2/thumbnail/_type", - "queryExpansions/3/thumbnail/_type", - "queryExpansions/4/thumbnail/_type", - "queryExpansions/5/thumbnail/_type", - "queryExpansions/6/thumbnail/_type", - "queryExpansions/7/thumbnail/_type", - "queryExpansions/8/thumbnail/_type", - "queryExpansions/9/thumbnail/_type", - "queryExpansions/10/thumbnail/_type", - "queryExpansions/11/thumbnail/_type", - "queryExpansions/12/thumbnail/_type", - "queryExpansions/13/thumbnail/_type", - "queryExpansions/14/thumbnail/_type", - "queryExpansions/15/thumbnail/_type", - "queryExpansions/16/thumbnail/_type", - "queryExpansions/17/thumbnail/_type", - "queryExpansions/18/thumbnail/_type", - "queryExpansions/19/thumbnail/_type", - "queryExpansions/20/thumbnail/_type", - "queryExpansions/21/thumbnail/_type", - "queryExpansions/22/thumbnail/_type", - "queryExpansions/23/thumbnail/_type", - "queryExpansions/24/thumbnail/_type", - "queryExpansions/25/thumbnail/_type", - "queryExpansions/26/thumbnail/_type", - "queryExpansions/27/thumbnail/_type", - "queryExpansions/28/thumbnail/_type", - "queryExpansions/29/thumbnail/_type", - "queryExpansions/30/thumbnail/_type", - "queryExpansions/31/thumbnail/_type", - "queryExpansions/32/thumbnail/_type", - "queryExpansions/33/thumbnail/_type", - "queryExpansions/34/thumbnail/_type", - "queryExpansions/35/thumbnail/_type", - "queryExpansions/36/thumbnail/_type", - "queryExpansions/37/thumbnail/_type", - "queryExpansions/38/thumbnail/_type", - "queryExpansions/39/thumbnail/_type", + "$/queryExpansions/1/thumbnail/_type", + "$/queryExpansions/2/thumbnail/_type", + "$/queryExpansions/3/thumbnail/_type", + "$/queryExpansions/4/thumbnail/_type", + "$/queryExpansions/5/thumbnail/_type", + "$/queryExpansions/6/thumbnail/_type", + "$/queryExpansions/7/thumbnail/_type", + "$/queryExpansions/8/thumbnail/_type", + "$/queryExpansions/9/thumbnail/_type", + "$/queryExpansions/10/thumbnail/_type", + "$/queryExpansions/11/thumbnail/_type", + "$/queryExpansions/12/thumbnail/_type", + "$/queryExpansions/13/thumbnail/_type", + "$/queryExpansions/14/thumbnail/_type", + "$/queryExpansions/15/thumbnail/_type", + "$/queryExpansions/16/thumbnail/_type", + "$/queryExpansions/17/thumbnail/_type", + "$/queryExpansions/18/thumbnail/_type", + "$/queryExpansions/19/thumbnail/_type", + "$/queryExpansions/20/thumbnail/_type", + "$/queryExpansions/21/thumbnail/_type", + "$/queryExpansions/22/thumbnail/_type", + "$/queryExpansions/23/thumbnail/_type", + "$/queryExpansions/24/thumbnail/_type", + "$/queryExpansions/25/thumbnail/_type", + "$/queryExpansions/26/thumbnail/_type", + "$/queryExpansions/27/thumbnail/_type", + "$/queryExpansions/28/thumbnail/_type", + "$/queryExpansions/29/thumbnail/_type", + "$/queryExpansions/30/thumbnail/_type", + "$/queryExpansions/31/thumbnail/_type", + "$/queryExpansions/32/thumbnail/_type", + "$/queryExpansions/33/thumbnail/_type", + "$/queryExpansions/34/thumbnail/_type", + "$/queryExpansions/35/thumbnail/_type", + "$/queryExpansions/36/thumbnail/_type", + "$/queryExpansions/37/thumbnail/_type", + "$/queryExpansions/38/thumbnail/_type", + "$/queryExpansions/39/thumbnail/_type", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/VideoSearch.json", @@ -29600,13 +30192,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[34].thumbnail._type", + "jsonPath": "$['value'][34]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/34/thumbnail/_type", + "path": "$/value/34/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -29626,7 +30218,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[34]._type", + "jsonPath": "$['value'][34]['_type']", "jsonPosition": Object { "column": 21, "line": 1154, @@ -29636,7 +30228,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/34/_type", + "path": "$/value/34/_type", "position": Object { "column": 20, "line": 723, @@ -29656,7 +30248,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[34].duration", + "jsonPath": "$['value'][34]['duration']", "jsonPosition": Object { "column": 21, "line": 1154, @@ -29666,7 +30258,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/34/duration", + "path": "$/value/34/duration", "position": Object { "column": 20, "line": 723, @@ -29686,7 +30278,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[34].hostPageDisplayUrl", + "jsonPath": "$['value'][34]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 1154, @@ -29696,7 +30288,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/34/hostPageDisplayUrl", + "path": "$/value/34/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -29716,7 +30308,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[34].encodingFormat", + "jsonPath": "$['value'][34]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 1154, @@ -29726,7 +30318,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/34/encodingFormat", + "path": "$/value/34/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -29746,7 +30338,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[34].isAccessibleForFree", + "jsonPath": "$['value'][34]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 1154, @@ -29756,7 +30348,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/34/isAccessibleForFree", + "path": "$/value/34/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -29776,7 +30368,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[34].creator", + "jsonPath": "$['value'][34]['creator']", "jsonPosition": Object { "column": 21, "line": 1154, @@ -29786,7 +30378,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/34/creator", + "path": "$/value/34/creator", "position": Object { "column": 20, "line": 723, @@ -29806,7 +30398,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[34].publisher", + "jsonPath": "$['value'][34]['publisher']", "jsonPosition": Object { "column": 21, "line": 1154, @@ -29816,7 +30408,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/34/publisher", + "path": "$/value/34/publisher", "position": Object { "column": 20, "line": 723, @@ -29836,7 +30428,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[34].datePublished", + "jsonPath": "$['value'][34]['datePublished']", "jsonPosition": Object { "column": 21, "line": 1154, @@ -29846,7 +30438,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/34/datePublished", + "path": "$/value/34/datePublished", "position": Object { "column": 20, "line": 723, @@ -29866,13 +30458,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[33].thumbnail._type", + "jsonPath": "$['value'][33]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/33/thumbnail/_type", + "path": "$/value/33/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -29892,7 +30484,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[33]._type", + "jsonPath": "$['value'][33]['_type']", "jsonPosition": Object { "column": 21, "line": 1121, @@ -29902,7 +30494,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/33/_type", + "path": "$/value/33/_type", "position": Object { "column": 20, "line": 723, @@ -29922,7 +30514,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[33].duration", + "jsonPath": "$['value'][33]['duration']", "jsonPosition": Object { "column": 21, "line": 1121, @@ -29932,7 +30524,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/33/duration", + "path": "$/value/33/duration", "position": Object { "column": 20, "line": 723, @@ -29952,7 +30544,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[33].hostPageDisplayUrl", + "jsonPath": "$['value'][33]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 1121, @@ -29962,7 +30554,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/33/hostPageDisplayUrl", + "path": "$/value/33/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -29982,7 +30574,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[33].encodingFormat", + "jsonPath": "$['value'][33]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 1121, @@ -29992,7 +30584,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/33/encodingFormat", + "path": "$/value/33/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -30012,7 +30604,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[33].isAccessibleForFree", + "jsonPath": "$['value'][33]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 1121, @@ -30022,7 +30614,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/33/isAccessibleForFree", + "path": "$/value/33/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -30042,7 +30634,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[33].creator", + "jsonPath": "$['value'][33]['creator']", "jsonPosition": Object { "column": 21, "line": 1121, @@ -30052,7 +30644,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/33/creator", + "path": "$/value/33/creator", "position": Object { "column": 20, "line": 723, @@ -30072,7 +30664,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[33].publisher", + "jsonPath": "$['value'][33]['publisher']", "jsonPosition": Object { "column": 21, "line": 1121, @@ -30082,7 +30674,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/33/publisher", + "path": "$/value/33/publisher", "position": Object { "column": 20, "line": 723, @@ -30102,7 +30694,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[33].datePublished", + "jsonPath": "$['value'][33]['datePublished']", "jsonPosition": Object { "column": 21, "line": 1121, @@ -30112,7 +30704,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/33/datePublished", + "path": "$/value/33/datePublished", "position": Object { "column": 20, "line": 723, @@ -30132,13 +30724,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[32].thumbnail._type", + "jsonPath": "$['value'][32]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/32/thumbnail/_type", + "path": "$/value/32/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -30158,7 +30750,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[32]._type", + "jsonPath": "$['value'][32]['_type']", "jsonPosition": Object { "column": 21, "line": 1087, @@ -30168,7 +30760,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/32/_type", + "path": "$/value/32/_type", "position": Object { "column": 20, "line": 723, @@ -30188,7 +30780,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[32].duration", + "jsonPath": "$['value'][32]['duration']", "jsonPosition": Object { "column": 21, "line": 1087, @@ -30198,7 +30790,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/32/duration", + "path": "$/value/32/duration", "position": Object { "column": 20, "line": 723, @@ -30218,7 +30810,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[32].hostPageDisplayUrl", + "jsonPath": "$['value'][32]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 1087, @@ -30228,7 +30820,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/32/hostPageDisplayUrl", + "path": "$/value/32/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -30248,7 +30840,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[32].encodingFormat", + "jsonPath": "$['value'][32]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 1087, @@ -30258,7 +30850,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/32/encodingFormat", + "path": "$/value/32/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -30278,7 +30870,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[32].isAccessibleForFree", + "jsonPath": "$['value'][32]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 1087, @@ -30288,7 +30880,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/32/isAccessibleForFree", + "path": "$/value/32/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -30308,7 +30900,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[32].creator", + "jsonPath": "$['value'][32]['creator']", "jsonPosition": Object { "column": 21, "line": 1087, @@ -30318,7 +30910,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/32/creator", + "path": "$/value/32/creator", "position": Object { "column": 20, "line": 723, @@ -30338,7 +30930,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[32].publisher", + "jsonPath": "$['value'][32]['publisher']", "jsonPosition": Object { "column": 21, "line": 1087, @@ -30348,7 +30940,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/32/publisher", + "path": "$/value/32/publisher", "position": Object { "column": 20, "line": 723, @@ -30368,7 +30960,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[32].datePublished", + "jsonPath": "$['value'][32]['datePublished']", "jsonPosition": Object { "column": 21, "line": 1087, @@ -30378,7 +30970,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/32/datePublished", + "path": "$/value/32/datePublished", "position": Object { "column": 20, "line": 723, @@ -30398,13 +30990,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[31].thumbnail._type", + "jsonPath": "$['value'][31]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/31/thumbnail/_type", + "path": "$/value/31/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -30424,7 +31016,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[31]._type", + "jsonPath": "$['value'][31]['_type']", "jsonPosition": Object { "column": 21, "line": 1053, @@ -30434,7 +31026,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/31/_type", + "path": "$/value/31/_type", "position": Object { "column": 20, "line": 723, @@ -30454,7 +31046,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[31].duration", + "jsonPath": "$['value'][31]['duration']", "jsonPosition": Object { "column": 21, "line": 1053, @@ -30464,7 +31056,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/31/duration", + "path": "$/value/31/duration", "position": Object { "column": 20, "line": 723, @@ -30484,7 +31076,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[31].hostPageDisplayUrl", + "jsonPath": "$['value'][31]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 1053, @@ -30494,7 +31086,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/31/hostPageDisplayUrl", + "path": "$/value/31/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -30514,7 +31106,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[31].encodingFormat", + "jsonPath": "$['value'][31]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 1053, @@ -30524,7 +31116,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/31/encodingFormat", + "path": "$/value/31/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -30544,7 +31136,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[31].isAccessibleForFree", + "jsonPath": "$['value'][31]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 1053, @@ -30554,7 +31146,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/31/isAccessibleForFree", + "path": "$/value/31/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -30574,7 +31166,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[31].creator", + "jsonPath": "$['value'][31]['creator']", "jsonPosition": Object { "column": 21, "line": 1053, @@ -30584,7 +31176,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/31/creator", + "path": "$/value/31/creator", "position": Object { "column": 20, "line": 723, @@ -30604,7 +31196,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[31].publisher", + "jsonPath": "$['value'][31]['publisher']", "jsonPosition": Object { "column": 21, "line": 1053, @@ -30614,7 +31206,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/31/publisher", + "path": "$/value/31/publisher", "position": Object { "column": 20, "line": 723, @@ -30634,7 +31226,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[31].datePublished", + "jsonPath": "$['value'][31]['datePublished']", "jsonPosition": Object { "column": 21, "line": 1053, @@ -30644,7 +31236,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/31/datePublished", + "path": "$/value/31/datePublished", "position": Object { "column": 20, "line": 723, @@ -30664,13 +31256,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[30].thumbnail._type", + "jsonPath": "$['value'][30]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/30/thumbnail/_type", + "path": "$/value/30/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -30690,7 +31282,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[30]._type", + "jsonPath": "$['value'][30]['_type']", "jsonPosition": Object { "column": 21, "line": 1019, @@ -30700,7 +31292,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/30/_type", + "path": "$/value/30/_type", "position": Object { "column": 20, "line": 723, @@ -30720,7 +31312,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[30].duration", + "jsonPath": "$['value'][30]['duration']", "jsonPosition": Object { "column": 21, "line": 1019, @@ -30730,7 +31322,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/30/duration", + "path": "$/value/30/duration", "position": Object { "column": 20, "line": 723, @@ -30750,7 +31342,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[30].hostPageDisplayUrl", + "jsonPath": "$['value'][30]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 1019, @@ -30760,7 +31352,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/30/hostPageDisplayUrl", + "path": "$/value/30/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -30780,7 +31372,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[30].encodingFormat", + "jsonPath": "$['value'][30]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 1019, @@ -30790,7 +31382,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/30/encodingFormat", + "path": "$/value/30/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -30810,7 +31402,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[30].isAccessibleForFree", + "jsonPath": "$['value'][30]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 1019, @@ -30820,7 +31412,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/30/isAccessibleForFree", + "path": "$/value/30/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -30840,7 +31432,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[30].creator", + "jsonPath": "$['value'][30]['creator']", "jsonPosition": Object { "column": 21, "line": 1019, @@ -30850,7 +31442,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/30/creator", + "path": "$/value/30/creator", "position": Object { "column": 20, "line": 723, @@ -30870,7 +31462,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[30].publisher", + "jsonPath": "$['value'][30]['publisher']", "jsonPosition": Object { "column": 21, "line": 1019, @@ -30880,7 +31472,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/30/publisher", + "path": "$/value/30/publisher", "position": Object { "column": 20, "line": 723, @@ -30900,7 +31492,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[30].datePublished", + "jsonPath": "$['value'][30]['datePublished']", "jsonPosition": Object { "column": 21, "line": 1019, @@ -30910,7 +31502,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/30/datePublished", + "path": "$/value/30/datePublished", "position": Object { "column": 20, "line": 723, @@ -30930,13 +31522,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[29].thumbnail._type", + "jsonPath": "$['value'][29]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/29/thumbnail/_type", + "path": "$/value/29/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -30956,7 +31548,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[29]._type", + "jsonPath": "$['value'][29]['_type']", "jsonPosition": Object { "column": 21, "line": 985, @@ -30966,7 +31558,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/29/_type", + "path": "$/value/29/_type", "position": Object { "column": 20, "line": 723, @@ -30986,7 +31578,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[29].duration", + "jsonPath": "$['value'][29]['duration']", "jsonPosition": Object { "column": 21, "line": 985, @@ -30996,7 +31588,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/29/duration", + "path": "$/value/29/duration", "position": Object { "column": 20, "line": 723, @@ -31016,7 +31608,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[29].hostPageDisplayUrl", + "jsonPath": "$['value'][29]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 985, @@ -31026,7 +31618,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/29/hostPageDisplayUrl", + "path": "$/value/29/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -31046,7 +31638,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[29].encodingFormat", + "jsonPath": "$['value'][29]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 985, @@ -31056,7 +31648,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/29/encodingFormat", + "path": "$/value/29/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -31076,7 +31668,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[29].isAccessibleForFree", + "jsonPath": "$['value'][29]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 985, @@ -31086,7 +31678,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/29/isAccessibleForFree", + "path": "$/value/29/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -31106,7 +31698,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[29].creator", + "jsonPath": "$['value'][29]['creator']", "jsonPosition": Object { "column": 21, "line": 985, @@ -31116,7 +31708,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/29/creator", + "path": "$/value/29/creator", "position": Object { "column": 20, "line": 723, @@ -31136,7 +31728,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[29].publisher", + "jsonPath": "$['value'][29]['publisher']", "jsonPosition": Object { "column": 21, "line": 985, @@ -31146,7 +31738,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/29/publisher", + "path": "$/value/29/publisher", "position": Object { "column": 20, "line": 723, @@ -31166,7 +31758,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[29].datePublished", + "jsonPath": "$['value'][29]['datePublished']", "jsonPosition": Object { "column": 21, "line": 985, @@ -31176,7 +31768,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/29/datePublished", + "path": "$/value/29/datePublished", "position": Object { "column": 20, "line": 723, @@ -31196,13 +31788,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[28].thumbnail._type", + "jsonPath": "$['value'][28]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/28/thumbnail/_type", + "path": "$/value/28/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -31222,7 +31814,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[28]._type", + "jsonPath": "$['value'][28]['_type']", "jsonPosition": Object { "column": 21, "line": 951, @@ -31232,7 +31824,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/28/_type", + "path": "$/value/28/_type", "position": Object { "column": 20, "line": 723, @@ -31252,7 +31844,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[28].duration", + "jsonPath": "$['value'][28]['duration']", "jsonPosition": Object { "column": 21, "line": 951, @@ -31262,7 +31854,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/28/duration", + "path": "$/value/28/duration", "position": Object { "column": 20, "line": 723, @@ -31282,7 +31874,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[28].hostPageDisplayUrl", + "jsonPath": "$['value'][28]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 951, @@ -31292,7 +31884,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/28/hostPageDisplayUrl", + "path": "$/value/28/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -31312,7 +31904,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[28].encodingFormat", + "jsonPath": "$['value'][28]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 951, @@ -31322,7 +31914,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/28/encodingFormat", + "path": "$/value/28/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -31342,7 +31934,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[28].isAccessibleForFree", + "jsonPath": "$['value'][28]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 951, @@ -31352,7 +31944,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/28/isAccessibleForFree", + "path": "$/value/28/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -31372,7 +31964,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[28].creator", + "jsonPath": "$['value'][28]['creator']", "jsonPosition": Object { "column": 21, "line": 951, @@ -31382,7 +31974,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/28/creator", + "path": "$/value/28/creator", "position": Object { "column": 20, "line": 723, @@ -31402,7 +31994,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[28].publisher", + "jsonPath": "$['value'][28]['publisher']", "jsonPosition": Object { "column": 21, "line": 951, @@ -31412,7 +32004,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/28/publisher", + "path": "$/value/28/publisher", "position": Object { "column": 20, "line": 723, @@ -31432,7 +32024,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[28].datePublished", + "jsonPath": "$['value'][28]['datePublished']", "jsonPosition": Object { "column": 21, "line": 951, @@ -31442,7 +32034,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/28/datePublished", + "path": "$/value/28/datePublished", "position": Object { "column": 20, "line": 723, @@ -31462,13 +32054,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[27].thumbnail._type", + "jsonPath": "$['value'][27]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/27/thumbnail/_type", + "path": "$/value/27/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -31488,7 +32080,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[27]._type", + "jsonPath": "$['value'][27]['_type']", "jsonPosition": Object { "column": 21, "line": 917, @@ -31498,7 +32090,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/27/_type", + "path": "$/value/27/_type", "position": Object { "column": 20, "line": 723, @@ -31518,7 +32110,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[27].duration", + "jsonPath": "$['value'][27]['duration']", "jsonPosition": Object { "column": 21, "line": 917, @@ -31528,7 +32120,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/27/duration", + "path": "$/value/27/duration", "position": Object { "column": 20, "line": 723, @@ -31548,7 +32140,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[27].hostPageDisplayUrl", + "jsonPath": "$['value'][27]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 917, @@ -31558,7 +32150,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/27/hostPageDisplayUrl", + "path": "$/value/27/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -31578,7 +32170,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[27].encodingFormat", + "jsonPath": "$['value'][27]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 917, @@ -31588,7 +32180,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/27/encodingFormat", + "path": "$/value/27/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -31608,7 +32200,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[27].isAccessibleForFree", + "jsonPath": "$['value'][27]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 917, @@ -31618,7 +32210,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/27/isAccessibleForFree", + "path": "$/value/27/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -31638,7 +32230,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[27].creator", + "jsonPath": "$['value'][27]['creator']", "jsonPosition": Object { "column": 21, "line": 917, @@ -31648,7 +32240,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/27/creator", + "path": "$/value/27/creator", "position": Object { "column": 20, "line": 723, @@ -31668,7 +32260,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[27].publisher", + "jsonPath": "$['value'][27]['publisher']", "jsonPosition": Object { "column": 21, "line": 917, @@ -31678,7 +32270,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/27/publisher", + "path": "$/value/27/publisher", "position": Object { "column": 20, "line": 723, @@ -31698,7 +32290,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[27].datePublished", + "jsonPath": "$['value'][27]['datePublished']", "jsonPosition": Object { "column": 21, "line": 917, @@ -31708,7 +32300,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/27/datePublished", + "path": "$/value/27/datePublished", "position": Object { "column": 20, "line": 723, @@ -31728,13 +32320,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[26].thumbnail._type", + "jsonPath": "$['value'][26]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/26/thumbnail/_type", + "path": "$/value/26/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -31754,7 +32346,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[26]._type", + "jsonPath": "$['value'][26]['_type']", "jsonPosition": Object { "column": 21, "line": 883, @@ -31764,7 +32356,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/26/_type", + "path": "$/value/26/_type", "position": Object { "column": 20, "line": 723, @@ -31784,7 +32376,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[26].duration", + "jsonPath": "$['value'][26]['duration']", "jsonPosition": Object { "column": 21, "line": 883, @@ -31794,7 +32386,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/26/duration", + "path": "$/value/26/duration", "position": Object { "column": 20, "line": 723, @@ -31814,7 +32406,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[26].hostPageDisplayUrl", + "jsonPath": "$['value'][26]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 883, @@ -31824,7 +32416,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/26/hostPageDisplayUrl", + "path": "$/value/26/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -31844,7 +32436,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[26].encodingFormat", + "jsonPath": "$['value'][26]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 883, @@ -31854,7 +32446,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/26/encodingFormat", + "path": "$/value/26/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -31874,7 +32466,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[26].isAccessibleForFree", + "jsonPath": "$['value'][26]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 883, @@ -31884,7 +32476,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/26/isAccessibleForFree", + "path": "$/value/26/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -31904,7 +32496,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[26].creator", + "jsonPath": "$['value'][26]['creator']", "jsonPosition": Object { "column": 21, "line": 883, @@ -31914,7 +32506,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/26/creator", + "path": "$/value/26/creator", "position": Object { "column": 20, "line": 723, @@ -31934,7 +32526,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[26].publisher", + "jsonPath": "$['value'][26]['publisher']", "jsonPosition": Object { "column": 21, "line": 883, @@ -31944,7 +32536,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/26/publisher", + "path": "$/value/26/publisher", "position": Object { "column": 20, "line": 723, @@ -31964,7 +32556,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[26].datePublished", + "jsonPath": "$['value'][26]['datePublished']", "jsonPosition": Object { "column": 21, "line": 883, @@ -31974,7 +32566,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/26/datePublished", + "path": "$/value/26/datePublished", "position": Object { "column": 20, "line": 723, @@ -31994,13 +32586,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[25].thumbnail._type", + "jsonPath": "$['value'][25]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/25/thumbnail/_type", + "path": "$/value/25/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -32020,7 +32612,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[25]._type", + "jsonPath": "$['value'][25]['_type']", "jsonPosition": Object { "column": 21, "line": 849, @@ -32030,7 +32622,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/25/_type", + "path": "$/value/25/_type", "position": Object { "column": 20, "line": 723, @@ -32050,7 +32642,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[25].duration", + "jsonPath": "$['value'][25]['duration']", "jsonPosition": Object { "column": 21, "line": 849, @@ -32060,7 +32652,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/25/duration", + "path": "$/value/25/duration", "position": Object { "column": 20, "line": 723, @@ -32080,7 +32672,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[25].hostPageDisplayUrl", + "jsonPath": "$['value'][25]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 849, @@ -32090,7 +32682,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/25/hostPageDisplayUrl", + "path": "$/value/25/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -32110,7 +32702,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[25].encodingFormat", + "jsonPath": "$['value'][25]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 849, @@ -32120,7 +32712,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/25/encodingFormat", + "path": "$/value/25/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -32140,7 +32732,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[25].isAccessibleForFree", + "jsonPath": "$['value'][25]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 849, @@ -32150,7 +32742,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/25/isAccessibleForFree", + "path": "$/value/25/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -32170,7 +32762,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[25].creator", + "jsonPath": "$['value'][25]['creator']", "jsonPosition": Object { "column": 21, "line": 849, @@ -32180,7 +32772,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/25/creator", + "path": "$/value/25/creator", "position": Object { "column": 20, "line": 723, @@ -32200,7 +32792,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[25].publisher", + "jsonPath": "$['value'][25]['publisher']", "jsonPosition": Object { "column": 21, "line": 849, @@ -32210,7 +32802,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/25/publisher", + "path": "$/value/25/publisher", "position": Object { "column": 20, "line": 723, @@ -32230,7 +32822,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[25].datePublished", + "jsonPath": "$['value'][25]['datePublished']", "jsonPosition": Object { "column": 21, "line": 849, @@ -32240,7 +32832,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/25/datePublished", + "path": "$/value/25/datePublished", "position": Object { "column": 20, "line": 723, @@ -32260,13 +32852,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[24].thumbnail._type", + "jsonPath": "$['value'][24]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/24/thumbnail/_type", + "path": "$/value/24/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -32286,7 +32878,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[24]._type", + "jsonPath": "$['value'][24]['_type']", "jsonPosition": Object { "column": 21, "line": 815, @@ -32296,7 +32888,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/24/_type", + "path": "$/value/24/_type", "position": Object { "column": 20, "line": 723, @@ -32316,7 +32908,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[24].duration", + "jsonPath": "$['value'][24]['duration']", "jsonPosition": Object { "column": 21, "line": 815, @@ -32326,7 +32918,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/24/duration", + "path": "$/value/24/duration", "position": Object { "column": 20, "line": 723, @@ -32346,7 +32938,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[24].hostPageDisplayUrl", + "jsonPath": "$['value'][24]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 815, @@ -32356,7 +32948,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/24/hostPageDisplayUrl", + "path": "$/value/24/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -32376,7 +32968,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[24].encodingFormat", + "jsonPath": "$['value'][24]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 815, @@ -32386,7 +32978,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/24/encodingFormat", + "path": "$/value/24/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -32406,7 +32998,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[24].isAccessibleForFree", + "jsonPath": "$['value'][24]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 815, @@ -32416,7 +33008,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/24/isAccessibleForFree", + "path": "$/value/24/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -32436,7 +33028,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[24].creator", + "jsonPath": "$['value'][24]['creator']", "jsonPosition": Object { "column": 21, "line": 815, @@ -32446,7 +33038,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/24/creator", + "path": "$/value/24/creator", "position": Object { "column": 20, "line": 723, @@ -32466,7 +33058,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[24].publisher", + "jsonPath": "$['value'][24]['publisher']", "jsonPosition": Object { "column": 21, "line": 815, @@ -32476,7 +33068,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/24/publisher", + "path": "$/value/24/publisher", "position": Object { "column": 20, "line": 723, @@ -32496,7 +33088,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[24].datePublished", + "jsonPath": "$['value'][24]['datePublished']", "jsonPosition": Object { "column": 21, "line": 815, @@ -32506,7 +33098,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/24/datePublished", + "path": "$/value/24/datePublished", "position": Object { "column": 20, "line": 723, @@ -32526,13 +33118,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[23].thumbnail._type", + "jsonPath": "$['value'][23]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/23/thumbnail/_type", + "path": "$/value/23/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -32552,7 +33144,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[23]._type", + "jsonPath": "$['value'][23]['_type']", "jsonPosition": Object { "column": 21, "line": 781, @@ -32562,7 +33154,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/23/_type", + "path": "$/value/23/_type", "position": Object { "column": 20, "line": 723, @@ -32582,7 +33174,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[23].duration", + "jsonPath": "$['value'][23]['duration']", "jsonPosition": Object { "column": 21, "line": 781, @@ -32592,7 +33184,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/23/duration", + "path": "$/value/23/duration", "position": Object { "column": 20, "line": 723, @@ -32612,7 +33204,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[23].hostPageDisplayUrl", + "jsonPath": "$['value'][23]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 781, @@ -32622,7 +33214,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/23/hostPageDisplayUrl", + "path": "$/value/23/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -32642,7 +33234,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[23].encodingFormat", + "jsonPath": "$['value'][23]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 781, @@ -32652,7 +33244,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/23/encodingFormat", + "path": "$/value/23/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -32672,7 +33264,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[23].isAccessibleForFree", + "jsonPath": "$['value'][23]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 781, @@ -32682,7 +33274,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/23/isAccessibleForFree", + "path": "$/value/23/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -32702,7 +33294,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[23].creator", + "jsonPath": "$['value'][23]['creator']", "jsonPosition": Object { "column": 21, "line": 781, @@ -32712,7 +33304,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/23/creator", + "path": "$/value/23/creator", "position": Object { "column": 20, "line": 723, @@ -32732,7 +33324,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[23].publisher", + "jsonPath": "$['value'][23]['publisher']", "jsonPosition": Object { "column": 21, "line": 781, @@ -32742,7 +33334,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/23/publisher", + "path": "$/value/23/publisher", "position": Object { "column": 20, "line": 723, @@ -32762,7 +33354,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[23].datePublished", + "jsonPath": "$['value'][23]['datePublished']", "jsonPosition": Object { "column": 21, "line": 781, @@ -32772,7 +33364,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/23/datePublished", + "path": "$/value/23/datePublished", "position": Object { "column": 20, "line": 723, @@ -32792,13 +33384,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[22].thumbnail._type", + "jsonPath": "$['value'][22]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/22/thumbnail/_type", + "path": "$/value/22/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -32818,7 +33410,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[22]._type", + "jsonPath": "$['value'][22]['_type']", "jsonPosition": Object { "column": 21, "line": 747, @@ -32828,7 +33420,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/22/_type", + "path": "$/value/22/_type", "position": Object { "column": 20, "line": 723, @@ -32848,7 +33440,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[22].duration", + "jsonPath": "$['value'][22]['duration']", "jsonPosition": Object { "column": 21, "line": 747, @@ -32858,7 +33450,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/22/duration", + "path": "$/value/22/duration", "position": Object { "column": 20, "line": 723, @@ -32878,7 +33470,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[22].hostPageDisplayUrl", + "jsonPath": "$['value'][22]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 747, @@ -32888,7 +33480,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/22/hostPageDisplayUrl", + "path": "$/value/22/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -32908,7 +33500,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[22].encodingFormat", + "jsonPath": "$['value'][22]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 747, @@ -32918,7 +33510,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/22/encodingFormat", + "path": "$/value/22/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -32938,7 +33530,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[22].isAccessibleForFree", + "jsonPath": "$['value'][22]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 747, @@ -32948,7 +33540,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/22/isAccessibleForFree", + "path": "$/value/22/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -32968,7 +33560,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[22].creator", + "jsonPath": "$['value'][22]['creator']", "jsonPosition": Object { "column": 21, "line": 747, @@ -32978,7 +33570,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/22/creator", + "path": "$/value/22/creator", "position": Object { "column": 20, "line": 723, @@ -32998,7 +33590,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[22].publisher", + "jsonPath": "$['value'][22]['publisher']", "jsonPosition": Object { "column": 21, "line": 747, @@ -33008,7 +33600,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/22/publisher", + "path": "$/value/22/publisher", "position": Object { "column": 20, "line": 723, @@ -33028,7 +33620,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[22].datePublished", + "jsonPath": "$['value'][22]['datePublished']", "jsonPosition": Object { "column": 21, "line": 747, @@ -33038,7 +33630,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/22/datePublished", + "path": "$/value/22/datePublished", "position": Object { "column": 20, "line": 723, @@ -33058,13 +33650,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[21].thumbnail._type", + "jsonPath": "$['value'][21]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/21/thumbnail/_type", + "path": "$/value/21/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -33084,7 +33676,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[21]._type", + "jsonPath": "$['value'][21]['_type']", "jsonPosition": Object { "column": 21, "line": 713, @@ -33094,7 +33686,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/21/_type", + "path": "$/value/21/_type", "position": Object { "column": 20, "line": 723, @@ -33114,7 +33706,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[21].duration", + "jsonPath": "$['value'][21]['duration']", "jsonPosition": Object { "column": 21, "line": 713, @@ -33124,7 +33716,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/21/duration", + "path": "$/value/21/duration", "position": Object { "column": 20, "line": 723, @@ -33144,7 +33736,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[21].hostPageDisplayUrl", + "jsonPath": "$['value'][21]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 713, @@ -33154,7 +33746,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/21/hostPageDisplayUrl", + "path": "$/value/21/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -33174,7 +33766,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[21].encodingFormat", + "jsonPath": "$['value'][21]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 713, @@ -33184,7 +33776,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/21/encodingFormat", + "path": "$/value/21/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -33204,7 +33796,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[21].isAccessibleForFree", + "jsonPath": "$['value'][21]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 713, @@ -33214,7 +33806,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/21/isAccessibleForFree", + "path": "$/value/21/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -33234,7 +33826,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[21].creator", + "jsonPath": "$['value'][21]['creator']", "jsonPosition": Object { "column": 21, "line": 713, @@ -33244,7 +33836,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/21/creator", + "path": "$/value/21/creator", "position": Object { "column": 20, "line": 723, @@ -33264,7 +33856,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[21].publisher", + "jsonPath": "$['value'][21]['publisher']", "jsonPosition": Object { "column": 21, "line": 713, @@ -33274,7 +33866,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/21/publisher", + "path": "$/value/21/publisher", "position": Object { "column": 20, "line": 723, @@ -33294,7 +33886,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[21].datePublished", + "jsonPath": "$['value'][21]['datePublished']", "jsonPosition": Object { "column": 21, "line": 713, @@ -33304,7 +33896,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/21/datePublished", + "path": "$/value/21/datePublished", "position": Object { "column": 20, "line": 723, @@ -33324,13 +33916,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[20].thumbnail._type", + "jsonPath": "$['value'][20]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/20/thumbnail/_type", + "path": "$/value/20/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -33350,7 +33942,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[20]._type", + "jsonPath": "$['value'][20]['_type']", "jsonPosition": Object { "column": 21, "line": 679, @@ -33360,7 +33952,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/20/_type", + "path": "$/value/20/_type", "position": Object { "column": 20, "line": 723, @@ -33380,7 +33972,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[20].duration", + "jsonPath": "$['value'][20]['duration']", "jsonPosition": Object { "column": 21, "line": 679, @@ -33390,7 +33982,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/20/duration", + "path": "$/value/20/duration", "position": Object { "column": 20, "line": 723, @@ -33410,7 +34002,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[20].hostPageDisplayUrl", + "jsonPath": "$['value'][20]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 679, @@ -33420,7 +34012,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/20/hostPageDisplayUrl", + "path": "$/value/20/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -33440,7 +34032,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[20].encodingFormat", + "jsonPath": "$['value'][20]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 679, @@ -33450,7 +34042,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/20/encodingFormat", + "path": "$/value/20/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -33470,7 +34062,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[20].isAccessibleForFree", + "jsonPath": "$['value'][20]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 679, @@ -33480,7 +34072,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/20/isAccessibleForFree", + "path": "$/value/20/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -33500,7 +34092,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[20].creator", + "jsonPath": "$['value'][20]['creator']", "jsonPosition": Object { "column": 21, "line": 679, @@ -33510,7 +34102,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/20/creator", + "path": "$/value/20/creator", "position": Object { "column": 20, "line": 723, @@ -33530,7 +34122,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[20].publisher", + "jsonPath": "$['value'][20]['publisher']", "jsonPosition": Object { "column": 21, "line": 679, @@ -33540,7 +34132,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/20/publisher", + "path": "$/value/20/publisher", "position": Object { "column": 20, "line": 723, @@ -33560,7 +34152,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[20].datePublished", + "jsonPath": "$['value'][20]['datePublished']", "jsonPosition": Object { "column": 21, "line": 679, @@ -33570,7 +34162,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/20/datePublished", + "path": "$/value/20/datePublished", "position": Object { "column": 20, "line": 723, @@ -33590,13 +34182,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[19].thumbnail._type", + "jsonPath": "$['value'][19]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/19/thumbnail/_type", + "path": "$/value/19/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -33616,7 +34208,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[19]._type", + "jsonPath": "$['value'][19]['_type']", "jsonPosition": Object { "column": 21, "line": 645, @@ -33626,7 +34218,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/19/_type", + "path": "$/value/19/_type", "position": Object { "column": 20, "line": 723, @@ -33646,7 +34238,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[19].duration", + "jsonPath": "$['value'][19]['duration']", "jsonPosition": Object { "column": 21, "line": 645, @@ -33656,7 +34248,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/19/duration", + "path": "$/value/19/duration", "position": Object { "column": 20, "line": 723, @@ -33676,7 +34268,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[19].hostPageDisplayUrl", + "jsonPath": "$['value'][19]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 645, @@ -33686,7 +34278,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/19/hostPageDisplayUrl", + "path": "$/value/19/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -33706,7 +34298,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[19].encodingFormat", + "jsonPath": "$['value'][19]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 645, @@ -33716,7 +34308,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/19/encodingFormat", + "path": "$/value/19/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -33736,7 +34328,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[19].isAccessibleForFree", + "jsonPath": "$['value'][19]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 645, @@ -33746,7 +34338,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/19/isAccessibleForFree", + "path": "$/value/19/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -33766,7 +34358,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[19].creator", + "jsonPath": "$['value'][19]['creator']", "jsonPosition": Object { "column": 21, "line": 645, @@ -33776,7 +34368,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/19/creator", + "path": "$/value/19/creator", "position": Object { "column": 20, "line": 723, @@ -33796,7 +34388,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[19].publisher", + "jsonPath": "$['value'][19]['publisher']", "jsonPosition": Object { "column": 21, "line": 645, @@ -33806,7 +34398,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/19/publisher", + "path": "$/value/19/publisher", "position": Object { "column": 20, "line": 723, @@ -33826,7 +34418,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[19].datePublished", + "jsonPath": "$['value'][19]['datePublished']", "jsonPosition": Object { "column": 21, "line": 645, @@ -33836,7 +34428,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/19/datePublished", + "path": "$/value/19/datePublished", "position": Object { "column": 20, "line": 723, @@ -33856,13 +34448,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[18].thumbnail._type", + "jsonPath": "$['value'][18]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/18/thumbnail/_type", + "path": "$/value/18/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -33882,7 +34474,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[18]._type", + "jsonPath": "$['value'][18]['_type']", "jsonPosition": Object { "column": 21, "line": 611, @@ -33892,7 +34484,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/18/_type", + "path": "$/value/18/_type", "position": Object { "column": 20, "line": 723, @@ -33912,7 +34504,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[18].duration", + "jsonPath": "$['value'][18]['duration']", "jsonPosition": Object { "column": 21, "line": 611, @@ -33922,7 +34514,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/18/duration", + "path": "$/value/18/duration", "position": Object { "column": 20, "line": 723, @@ -33942,7 +34534,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[18].hostPageDisplayUrl", + "jsonPath": "$['value'][18]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 611, @@ -33952,7 +34544,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/18/hostPageDisplayUrl", + "path": "$/value/18/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -33972,7 +34564,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[18].encodingFormat", + "jsonPath": "$['value'][18]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 611, @@ -33982,7 +34574,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/18/encodingFormat", + "path": "$/value/18/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -34002,7 +34594,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[18].isAccessibleForFree", + "jsonPath": "$['value'][18]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 611, @@ -34012,7 +34604,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/18/isAccessibleForFree", + "path": "$/value/18/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -34032,7 +34624,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[18].creator", + "jsonPath": "$['value'][18]['creator']", "jsonPosition": Object { "column": 21, "line": 611, @@ -34042,7 +34634,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/18/creator", + "path": "$/value/18/creator", "position": Object { "column": 20, "line": 723, @@ -34062,7 +34654,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[18].publisher", + "jsonPath": "$['value'][18]['publisher']", "jsonPosition": Object { "column": 21, "line": 611, @@ -34072,7 +34664,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/18/publisher", + "path": "$/value/18/publisher", "position": Object { "column": 20, "line": 723, @@ -34092,7 +34684,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[18].datePublished", + "jsonPath": "$['value'][18]['datePublished']", "jsonPosition": Object { "column": 21, "line": 611, @@ -34102,7 +34694,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/18/datePublished", + "path": "$/value/18/datePublished", "position": Object { "column": 20, "line": 723, @@ -34122,13 +34714,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[17].thumbnail._type", + "jsonPath": "$['value'][17]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/17/thumbnail/_type", + "path": "$/value/17/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -34148,7 +34740,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[17]._type", + "jsonPath": "$['value'][17]['_type']", "jsonPosition": Object { "column": 21, "line": 577, @@ -34158,7 +34750,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/17/_type", + "path": "$/value/17/_type", "position": Object { "column": 20, "line": 723, @@ -34178,7 +34770,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[17].duration", + "jsonPath": "$['value'][17]['duration']", "jsonPosition": Object { "column": 21, "line": 577, @@ -34188,7 +34780,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/17/duration", + "path": "$/value/17/duration", "position": Object { "column": 20, "line": 723, @@ -34208,7 +34800,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[17].hostPageDisplayUrl", + "jsonPath": "$['value'][17]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 577, @@ -34218,7 +34810,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/17/hostPageDisplayUrl", + "path": "$/value/17/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -34238,7 +34830,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[17].encodingFormat", + "jsonPath": "$['value'][17]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 577, @@ -34248,7 +34840,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/17/encodingFormat", + "path": "$/value/17/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -34268,7 +34860,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[17].isAccessibleForFree", + "jsonPath": "$['value'][17]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 577, @@ -34278,7 +34870,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/17/isAccessibleForFree", + "path": "$/value/17/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -34298,7 +34890,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[17].creator", + "jsonPath": "$['value'][17]['creator']", "jsonPosition": Object { "column": 21, "line": 577, @@ -34308,7 +34900,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/17/creator", + "path": "$/value/17/creator", "position": Object { "column": 20, "line": 723, @@ -34328,7 +34920,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[17].publisher", + "jsonPath": "$['value'][17]['publisher']", "jsonPosition": Object { "column": 21, "line": 577, @@ -34338,7 +34930,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/17/publisher", + "path": "$/value/17/publisher", "position": Object { "column": 20, "line": 723, @@ -34358,7 +34950,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[17].datePublished", + "jsonPath": "$['value'][17]['datePublished']", "jsonPosition": Object { "column": 21, "line": 577, @@ -34368,7 +34960,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/17/datePublished", + "path": "$/value/17/datePublished", "position": Object { "column": 20, "line": 723, @@ -34388,13 +34980,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[16].thumbnail._type", + "jsonPath": "$['value'][16]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/16/thumbnail/_type", + "path": "$/value/16/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -34414,7 +35006,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[16]._type", + "jsonPath": "$['value'][16]['_type']", "jsonPosition": Object { "column": 21, "line": 543, @@ -34424,7 +35016,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/16/_type", + "path": "$/value/16/_type", "position": Object { "column": 20, "line": 723, @@ -34444,7 +35036,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[16].duration", + "jsonPath": "$['value'][16]['duration']", "jsonPosition": Object { "column": 21, "line": 543, @@ -34454,7 +35046,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/16/duration", + "path": "$/value/16/duration", "position": Object { "column": 20, "line": 723, @@ -34474,7 +35066,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[16].hostPageDisplayUrl", + "jsonPath": "$['value'][16]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 543, @@ -34484,7 +35076,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/16/hostPageDisplayUrl", + "path": "$/value/16/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -34504,7 +35096,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[16].encodingFormat", + "jsonPath": "$['value'][16]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 543, @@ -34514,7 +35106,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/16/encodingFormat", + "path": "$/value/16/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -34534,7 +35126,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[16].isAccessibleForFree", + "jsonPath": "$['value'][16]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 543, @@ -34544,7 +35136,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/16/isAccessibleForFree", + "path": "$/value/16/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -34564,7 +35156,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[16].creator", + "jsonPath": "$['value'][16]['creator']", "jsonPosition": Object { "column": 21, "line": 543, @@ -34574,7 +35166,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/16/creator", + "path": "$/value/16/creator", "position": Object { "column": 20, "line": 723, @@ -34594,7 +35186,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[16].publisher", + "jsonPath": "$['value'][16]['publisher']", "jsonPosition": Object { "column": 21, "line": 543, @@ -34604,7 +35196,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/16/publisher", + "path": "$/value/16/publisher", "position": Object { "column": 20, "line": 723, @@ -34624,7 +35216,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[16].datePublished", + "jsonPath": "$['value'][16]['datePublished']", "jsonPosition": Object { "column": 21, "line": 543, @@ -34634,7 +35226,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/16/datePublished", + "path": "$/value/16/datePublished", "position": Object { "column": 20, "line": 723, @@ -34654,13 +35246,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[15].thumbnail._type", + "jsonPath": "$['value'][15]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/15/thumbnail/_type", + "path": "$/value/15/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -34680,7 +35272,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[15]._type", + "jsonPath": "$['value'][15]['_type']", "jsonPosition": Object { "column": 21, "line": 509, @@ -34690,7 +35282,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/15/_type", + "path": "$/value/15/_type", "position": Object { "column": 20, "line": 723, @@ -34710,7 +35302,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[15].duration", + "jsonPath": "$['value'][15]['duration']", "jsonPosition": Object { "column": 21, "line": 509, @@ -34720,7 +35312,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/15/duration", + "path": "$/value/15/duration", "position": Object { "column": 20, "line": 723, @@ -34740,7 +35332,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[15].hostPageDisplayUrl", + "jsonPath": "$['value'][15]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 509, @@ -34750,7 +35342,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/15/hostPageDisplayUrl", + "path": "$/value/15/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -34770,7 +35362,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[15].encodingFormat", + "jsonPath": "$['value'][15]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 509, @@ -34780,7 +35372,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/15/encodingFormat", + "path": "$/value/15/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -34800,7 +35392,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[15].isAccessibleForFree", + "jsonPath": "$['value'][15]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 509, @@ -34810,7 +35402,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/15/isAccessibleForFree", + "path": "$/value/15/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -34830,7 +35422,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[15].creator", + "jsonPath": "$['value'][15]['creator']", "jsonPosition": Object { "column": 21, "line": 509, @@ -34840,7 +35432,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/15/creator", + "path": "$/value/15/creator", "position": Object { "column": 20, "line": 723, @@ -34860,7 +35452,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[15].publisher", + "jsonPath": "$['value'][15]['publisher']", "jsonPosition": Object { "column": 21, "line": 509, @@ -34870,7 +35462,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/15/publisher", + "path": "$/value/15/publisher", "position": Object { "column": 20, "line": 723, @@ -34890,7 +35482,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[15].datePublished", + "jsonPath": "$['value'][15]['datePublished']", "jsonPosition": Object { "column": 21, "line": 509, @@ -34900,7 +35492,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/15/datePublished", + "path": "$/value/15/datePublished", "position": Object { "column": 20, "line": 723, @@ -34920,13 +35512,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[14].thumbnail._type", + "jsonPath": "$['value'][14]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/14/thumbnail/_type", + "path": "$/value/14/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -34946,7 +35538,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[14]._type", + "jsonPath": "$['value'][14]['_type']", "jsonPosition": Object { "column": 21, "line": 482, @@ -34956,7 +35548,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/14/_type", + "path": "$/value/14/_type", "position": Object { "column": 20, "line": 723, @@ -34976,7 +35568,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[14].duration", + "jsonPath": "$['value'][14]['duration']", "jsonPosition": Object { "column": 21, "line": 482, @@ -34986,7 +35578,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/14/duration", + "path": "$/value/14/duration", "position": Object { "column": 20, "line": 723, @@ -35006,7 +35598,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[14].hostPageDisplayUrl", + "jsonPath": "$['value'][14]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 482, @@ -35016,7 +35608,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/14/hostPageDisplayUrl", + "path": "$/value/14/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -35036,7 +35628,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[14].encodingFormat", + "jsonPath": "$['value'][14]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 482, @@ -35046,7 +35638,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/14/encodingFormat", + "path": "$/value/14/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -35066,7 +35658,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[14].isAccessibleForFree", + "jsonPath": "$['value'][14]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 482, @@ -35076,7 +35668,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/14/isAccessibleForFree", + "path": "$/value/14/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -35096,7 +35688,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[14].publisher", + "jsonPath": "$['value'][14]['publisher']", "jsonPosition": Object { "column": 21, "line": 482, @@ -35106,7 +35698,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/14/publisher", + "path": "$/value/14/publisher", "position": Object { "column": 20, "line": 723, @@ -35126,13 +35718,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[13].thumbnail._type", + "jsonPath": "$['value'][13]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/13/thumbnail/_type", + "path": "$/value/13/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -35152,7 +35744,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[13]._type", + "jsonPath": "$['value'][13]['_type']", "jsonPosition": Object { "column": 21, "line": 448, @@ -35162,7 +35754,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/13/_type", + "path": "$/value/13/_type", "position": Object { "column": 20, "line": 723, @@ -35182,7 +35774,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[13].duration", + "jsonPath": "$['value'][13]['duration']", "jsonPosition": Object { "column": 21, "line": 448, @@ -35192,7 +35784,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/13/duration", + "path": "$/value/13/duration", "position": Object { "column": 20, "line": 723, @@ -35212,7 +35804,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[13].hostPageDisplayUrl", + "jsonPath": "$['value'][13]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 448, @@ -35222,7 +35814,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/13/hostPageDisplayUrl", + "path": "$/value/13/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -35242,7 +35834,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[13].encodingFormat", + "jsonPath": "$['value'][13]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 448, @@ -35252,7 +35844,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/13/encodingFormat", + "path": "$/value/13/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -35272,7 +35864,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[13].isAccessibleForFree", + "jsonPath": "$['value'][13]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 448, @@ -35282,7 +35874,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/13/isAccessibleForFree", + "path": "$/value/13/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -35302,7 +35894,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[13].creator", + "jsonPath": "$['value'][13]['creator']", "jsonPosition": Object { "column": 21, "line": 448, @@ -35312,7 +35904,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/13/creator", + "path": "$/value/13/creator", "position": Object { "column": 20, "line": 723, @@ -35332,7 +35924,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[13].publisher", + "jsonPath": "$['value'][13]['publisher']", "jsonPosition": Object { "column": 21, "line": 448, @@ -35342,7 +35934,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/13/publisher", + "path": "$/value/13/publisher", "position": Object { "column": 20, "line": 723, @@ -35362,7 +35954,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[13].datePublished", + "jsonPath": "$['value'][13]['datePublished']", "jsonPosition": Object { "column": 21, "line": 448, @@ -35372,7 +35964,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/13/datePublished", + "path": "$/value/13/datePublished", "position": Object { "column": 20, "line": 723, @@ -35392,13 +35984,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[12].thumbnail._type", + "jsonPath": "$['value'][12]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/12/thumbnail/_type", + "path": "$/value/12/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -35418,7 +36010,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[12]._type", + "jsonPath": "$['value'][12]['_type']", "jsonPosition": Object { "column": 21, "line": 414, @@ -35428,7 +36020,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/12/_type", + "path": "$/value/12/_type", "position": Object { "column": 20, "line": 723, @@ -35448,7 +36040,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[12].duration", + "jsonPath": "$['value'][12]['duration']", "jsonPosition": Object { "column": 21, "line": 414, @@ -35458,7 +36050,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/12/duration", + "path": "$/value/12/duration", "position": Object { "column": 20, "line": 723, @@ -35478,7 +36070,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[12].hostPageDisplayUrl", + "jsonPath": "$['value'][12]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 414, @@ -35488,7 +36080,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/12/hostPageDisplayUrl", + "path": "$/value/12/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -35508,7 +36100,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[12].encodingFormat", + "jsonPath": "$['value'][12]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 414, @@ -35518,7 +36110,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/12/encodingFormat", + "path": "$/value/12/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -35538,7 +36130,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[12].isAccessibleForFree", + "jsonPath": "$['value'][12]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 414, @@ -35548,7 +36140,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/12/isAccessibleForFree", + "path": "$/value/12/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -35568,7 +36160,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[12].creator", + "jsonPath": "$['value'][12]['creator']", "jsonPosition": Object { "column": 21, "line": 414, @@ -35578,7 +36170,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/12/creator", + "path": "$/value/12/creator", "position": Object { "column": 20, "line": 723, @@ -35598,7 +36190,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[12].publisher", + "jsonPath": "$['value'][12]['publisher']", "jsonPosition": Object { "column": 21, "line": 414, @@ -35608,7 +36200,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/12/publisher", + "path": "$/value/12/publisher", "position": Object { "column": 20, "line": 723, @@ -35628,7 +36220,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[12].datePublished", + "jsonPath": "$['value'][12]['datePublished']", "jsonPosition": Object { "column": 21, "line": 414, @@ -35638,7 +36230,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/12/datePublished", + "path": "$/value/12/datePublished", "position": Object { "column": 20, "line": 723, @@ -35658,13 +36250,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[11].thumbnail._type", + "jsonPath": "$['value'][11]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/11/thumbnail/_type", + "path": "$/value/11/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -35684,7 +36276,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[11]._type", + "jsonPath": "$['value'][11]['_type']", "jsonPosition": Object { "column": 21, "line": 380, @@ -35694,7 +36286,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/11/_type", + "path": "$/value/11/_type", "position": Object { "column": 20, "line": 723, @@ -35714,7 +36306,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[11].duration", + "jsonPath": "$['value'][11]['duration']", "jsonPosition": Object { "column": 21, "line": 380, @@ -35724,7 +36316,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/11/duration", + "path": "$/value/11/duration", "position": Object { "column": 20, "line": 723, @@ -35744,7 +36336,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[11].hostPageDisplayUrl", + "jsonPath": "$['value'][11]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 380, @@ -35754,7 +36346,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/11/hostPageDisplayUrl", + "path": "$/value/11/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -35774,7 +36366,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[11].encodingFormat", + "jsonPath": "$['value'][11]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 380, @@ -35784,7 +36376,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/11/encodingFormat", + "path": "$/value/11/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -35804,7 +36396,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[11].isAccessibleForFree", + "jsonPath": "$['value'][11]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 380, @@ -35814,7 +36406,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/11/isAccessibleForFree", + "path": "$/value/11/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -35834,7 +36426,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[11].creator", + "jsonPath": "$['value'][11]['creator']", "jsonPosition": Object { "column": 21, "line": 380, @@ -35844,7 +36436,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/11/creator", + "path": "$/value/11/creator", "position": Object { "column": 20, "line": 723, @@ -35864,7 +36456,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[11].publisher", + "jsonPath": "$['value'][11]['publisher']", "jsonPosition": Object { "column": 21, "line": 380, @@ -35874,7 +36466,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/11/publisher", + "path": "$/value/11/publisher", "position": Object { "column": 20, "line": 723, @@ -35894,7 +36486,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[11].datePublished", + "jsonPath": "$['value'][11]['datePublished']", "jsonPosition": Object { "column": 21, "line": 380, @@ -35904,7 +36496,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/11/datePublished", + "path": "$/value/11/datePublished", "position": Object { "column": 20, "line": 723, @@ -35924,13 +36516,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[10].thumbnail._type", + "jsonPath": "$['value'][10]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/10/thumbnail/_type", + "path": "$/value/10/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -35950,7 +36542,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[10]._type", + "jsonPath": "$['value'][10]['_type']", "jsonPosition": Object { "column": 21, "line": 346, @@ -35960,7 +36552,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/10/_type", + "path": "$/value/10/_type", "position": Object { "column": 20, "line": 723, @@ -35980,7 +36572,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[10].duration", + "jsonPath": "$['value'][10]['duration']", "jsonPosition": Object { "column": 21, "line": 346, @@ -35990,7 +36582,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/10/duration", + "path": "$/value/10/duration", "position": Object { "column": 20, "line": 723, @@ -36010,7 +36602,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[10].hostPageDisplayUrl", + "jsonPath": "$['value'][10]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 346, @@ -36020,7 +36612,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/10/hostPageDisplayUrl", + "path": "$/value/10/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -36040,7 +36632,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[10].encodingFormat", + "jsonPath": "$['value'][10]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 346, @@ -36050,7 +36642,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/10/encodingFormat", + "path": "$/value/10/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -36070,7 +36662,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[10].isAccessibleForFree", + "jsonPath": "$['value'][10]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 346, @@ -36080,7 +36672,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/10/isAccessibleForFree", + "path": "$/value/10/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -36100,7 +36692,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[10].creator", + "jsonPath": "$['value'][10]['creator']", "jsonPosition": Object { "column": 21, "line": 346, @@ -36110,7 +36702,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/10/creator", + "path": "$/value/10/creator", "position": Object { "column": 20, "line": 723, @@ -36130,7 +36722,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[10].publisher", + "jsonPath": "$['value'][10]['publisher']", "jsonPosition": Object { "column": 21, "line": 346, @@ -36140,7 +36732,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/10/publisher", + "path": "$/value/10/publisher", "position": Object { "column": 20, "line": 723, @@ -36160,7 +36752,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[10].datePublished", + "jsonPath": "$['value'][10]['datePublished']", "jsonPosition": Object { "column": 21, "line": 346, @@ -36170,7 +36762,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/10/datePublished", + "path": "$/value/10/datePublished", "position": Object { "column": 20, "line": 723, @@ -36190,13 +36782,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[9].thumbnail._type", + "jsonPath": "$['value'][9]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/9/thumbnail/_type", + "path": "$/value/9/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -36216,7 +36808,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[9]._type", + "jsonPath": "$['value'][9]['_type']", "jsonPosition": Object { "column": 21, "line": 312, @@ -36226,7 +36818,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/9/_type", + "path": "$/value/9/_type", "position": Object { "column": 20, "line": 723, @@ -36246,7 +36838,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[9].duration", + "jsonPath": "$['value'][9]['duration']", "jsonPosition": Object { "column": 21, "line": 312, @@ -36256,7 +36848,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/9/duration", + "path": "$/value/9/duration", "position": Object { "column": 20, "line": 723, @@ -36276,7 +36868,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[9].hostPageDisplayUrl", + "jsonPath": "$['value'][9]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 312, @@ -36286,7 +36878,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/9/hostPageDisplayUrl", + "path": "$/value/9/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -36306,7 +36898,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[9].encodingFormat", + "jsonPath": "$['value'][9]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 312, @@ -36316,7 +36908,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/9/encodingFormat", + "path": "$/value/9/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -36336,7 +36928,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[9].isAccessibleForFree", + "jsonPath": "$['value'][9]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 312, @@ -36346,7 +36938,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/9/isAccessibleForFree", + "path": "$/value/9/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -36366,7 +36958,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[9].creator", + "jsonPath": "$['value'][9]['creator']", "jsonPosition": Object { "column": 21, "line": 312, @@ -36376,7 +36968,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/9/creator", + "path": "$/value/9/creator", "position": Object { "column": 20, "line": 723, @@ -36396,7 +36988,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[9].publisher", + "jsonPath": "$['value'][9]['publisher']", "jsonPosition": Object { "column": 21, "line": 312, @@ -36406,7 +36998,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/9/publisher", + "path": "$/value/9/publisher", "position": Object { "column": 20, "line": 723, @@ -36426,7 +37018,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[9].datePublished", + "jsonPath": "$['value'][9]['datePublished']", "jsonPosition": Object { "column": 21, "line": 312, @@ -36436,7 +37028,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/9/datePublished", + "path": "$/value/9/datePublished", "position": Object { "column": 20, "line": 723, @@ -36456,13 +37048,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[8].thumbnail._type", + "jsonPath": "$['value'][8]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/8/thumbnail/_type", + "path": "$/value/8/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -36482,7 +37074,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[8]._type", + "jsonPath": "$['value'][8]['_type']", "jsonPosition": Object { "column": 21, "line": 278, @@ -36492,7 +37084,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/8/_type", + "path": "$/value/8/_type", "position": Object { "column": 20, "line": 723, @@ -36512,7 +37104,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[8].duration", + "jsonPath": "$['value'][8]['duration']", "jsonPosition": Object { "column": 21, "line": 278, @@ -36522,7 +37114,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/8/duration", + "path": "$/value/8/duration", "position": Object { "column": 20, "line": 723, @@ -36542,7 +37134,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[8].hostPageDisplayUrl", + "jsonPath": "$['value'][8]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 278, @@ -36552,7 +37144,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/8/hostPageDisplayUrl", + "path": "$/value/8/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -36572,7 +37164,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[8].encodingFormat", + "jsonPath": "$['value'][8]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 278, @@ -36582,7 +37174,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/8/encodingFormat", + "path": "$/value/8/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -36602,7 +37194,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[8].isAccessibleForFree", + "jsonPath": "$['value'][8]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 278, @@ -36612,7 +37204,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/8/isAccessibleForFree", + "path": "$/value/8/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -36632,7 +37224,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[8].creator", + "jsonPath": "$['value'][8]['creator']", "jsonPosition": Object { "column": 21, "line": 278, @@ -36642,7 +37234,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/8/creator", + "path": "$/value/8/creator", "position": Object { "column": 20, "line": 723, @@ -36662,7 +37254,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[8].publisher", + "jsonPath": "$['value'][8]['publisher']", "jsonPosition": Object { "column": 21, "line": 278, @@ -36672,7 +37264,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/8/publisher", + "path": "$/value/8/publisher", "position": Object { "column": 20, "line": 723, @@ -36692,7 +37284,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[8].datePublished", + "jsonPath": "$['value'][8]['datePublished']", "jsonPosition": Object { "column": 21, "line": 278, @@ -36702,7 +37294,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/8/datePublished", + "path": "$/value/8/datePublished", "position": Object { "column": 20, "line": 723, @@ -36722,13 +37314,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[7].thumbnail._type", + "jsonPath": "$['value'][7]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/7/thumbnail/_type", + "path": "$/value/7/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -36748,7 +37340,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[7]._type", + "jsonPath": "$['value'][7]['_type']", "jsonPosition": Object { "column": 21, "line": 244, @@ -36758,7 +37350,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/7/_type", + "path": "$/value/7/_type", "position": Object { "column": 20, "line": 723, @@ -36778,7 +37370,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[7].duration", + "jsonPath": "$['value'][7]['duration']", "jsonPosition": Object { "column": 21, "line": 244, @@ -36788,7 +37380,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/7/duration", + "path": "$/value/7/duration", "position": Object { "column": 20, "line": 723, @@ -36808,7 +37400,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[7].hostPageDisplayUrl", + "jsonPath": "$['value'][7]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 244, @@ -36818,7 +37410,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/7/hostPageDisplayUrl", + "path": "$/value/7/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -36838,7 +37430,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[7].encodingFormat", + "jsonPath": "$['value'][7]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 244, @@ -36848,7 +37440,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/7/encodingFormat", + "path": "$/value/7/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -36868,7 +37460,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[7].isAccessibleForFree", + "jsonPath": "$['value'][7]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 244, @@ -36878,7 +37470,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/7/isAccessibleForFree", + "path": "$/value/7/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -36898,7 +37490,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[7].creator", + "jsonPath": "$['value'][7]['creator']", "jsonPosition": Object { "column": 21, "line": 244, @@ -36908,7 +37500,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/7/creator", + "path": "$/value/7/creator", "position": Object { "column": 20, "line": 723, @@ -36928,7 +37520,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[7].publisher", + "jsonPath": "$['value'][7]['publisher']", "jsonPosition": Object { "column": 21, "line": 244, @@ -36938,7 +37530,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/7/publisher", + "path": "$/value/7/publisher", "position": Object { "column": 20, "line": 723, @@ -36958,7 +37550,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[7].datePublished", + "jsonPath": "$['value'][7]['datePublished']", "jsonPosition": Object { "column": 21, "line": 244, @@ -36968,7 +37560,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/7/datePublished", + "path": "$/value/7/datePublished", "position": Object { "column": 20, "line": 723, @@ -36988,13 +37580,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[6].thumbnail._type", + "jsonPath": "$['value'][6]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/6/thumbnail/_type", + "path": "$/value/6/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -37014,7 +37606,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[6]._type", + "jsonPath": "$['value'][6]['_type']", "jsonPosition": Object { "column": 21, "line": 210, @@ -37024,7 +37616,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/6/_type", + "path": "$/value/6/_type", "position": Object { "column": 20, "line": 723, @@ -37044,7 +37636,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[6].duration", + "jsonPath": "$['value'][6]['duration']", "jsonPosition": Object { "column": 21, "line": 210, @@ -37054,7 +37646,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/6/duration", + "path": "$/value/6/duration", "position": Object { "column": 20, "line": 723, @@ -37074,7 +37666,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[6].hostPageDisplayUrl", + "jsonPath": "$['value'][6]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 210, @@ -37084,7 +37676,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/6/hostPageDisplayUrl", + "path": "$/value/6/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -37104,7 +37696,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[6].encodingFormat", + "jsonPath": "$['value'][6]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 210, @@ -37114,7 +37706,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/6/encodingFormat", + "path": "$/value/6/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -37134,7 +37726,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[6].isAccessibleForFree", + "jsonPath": "$['value'][6]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 210, @@ -37144,7 +37736,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/6/isAccessibleForFree", + "path": "$/value/6/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -37164,7 +37756,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[6].creator", + "jsonPath": "$['value'][6]['creator']", "jsonPosition": Object { "column": 21, "line": 210, @@ -37174,7 +37766,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/6/creator", + "path": "$/value/6/creator", "position": Object { "column": 20, "line": 723, @@ -37194,7 +37786,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[6].publisher", + "jsonPath": "$['value'][6]['publisher']", "jsonPosition": Object { "column": 21, "line": 210, @@ -37204,7 +37796,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/6/publisher", + "path": "$/value/6/publisher", "position": Object { "column": 20, "line": 723, @@ -37224,7 +37816,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[6].datePublished", + "jsonPath": "$['value'][6]['datePublished']", "jsonPosition": Object { "column": 21, "line": 210, @@ -37234,7 +37826,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/6/datePublished", + "path": "$/value/6/datePublished", "position": Object { "column": 20, "line": 723, @@ -37254,13 +37846,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[5].thumbnail._type", + "jsonPath": "$['value'][5]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/5/thumbnail/_type", + "path": "$/value/5/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -37280,7 +37872,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[5]._type", + "jsonPath": "$['value'][5]['_type']", "jsonPosition": Object { "column": 21, "line": 176, @@ -37290,7 +37882,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/5/_type", + "path": "$/value/5/_type", "position": Object { "column": 20, "line": 723, @@ -37310,7 +37902,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[5].duration", + "jsonPath": "$['value'][5]['duration']", "jsonPosition": Object { "column": 21, "line": 176, @@ -37320,7 +37912,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/5/duration", + "path": "$/value/5/duration", "position": Object { "column": 20, "line": 723, @@ -37340,7 +37932,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[5].hostPageDisplayUrl", + "jsonPath": "$['value'][5]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 176, @@ -37350,7 +37942,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/5/hostPageDisplayUrl", + "path": "$/value/5/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -37370,7 +37962,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[5].encodingFormat", + "jsonPath": "$['value'][5]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 176, @@ -37380,7 +37972,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/5/encodingFormat", + "path": "$/value/5/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -37400,7 +37992,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[5].isAccessibleForFree", + "jsonPath": "$['value'][5]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 176, @@ -37410,7 +38002,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/5/isAccessibleForFree", + "path": "$/value/5/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -37430,7 +38022,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[5].creator", + "jsonPath": "$['value'][5]['creator']", "jsonPosition": Object { "column": 21, "line": 176, @@ -37440,7 +38032,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/5/creator", + "path": "$/value/5/creator", "position": Object { "column": 20, "line": 723, @@ -37460,7 +38052,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[5].publisher", + "jsonPath": "$['value'][5]['publisher']", "jsonPosition": Object { "column": 21, "line": 176, @@ -37470,7 +38062,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/5/publisher", + "path": "$/value/5/publisher", "position": Object { "column": 20, "line": 723, @@ -37490,7 +38082,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[5].datePublished", + "jsonPath": "$['value'][5]['datePublished']", "jsonPosition": Object { "column": 21, "line": 176, @@ -37500,7 +38092,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/5/datePublished", + "path": "$/value/5/datePublished", "position": Object { "column": 20, "line": 723, @@ -37520,13 +38112,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[4].thumbnail._type", + "jsonPath": "$['value'][4]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/4/thumbnail/_type", + "path": "$/value/4/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -37546,7 +38138,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[4]._type", + "jsonPath": "$['value'][4]['_type']", "jsonPosition": Object { "column": 21, "line": 142, @@ -37556,7 +38148,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/4/_type", + "path": "$/value/4/_type", "position": Object { "column": 20, "line": 723, @@ -37576,7 +38168,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[4].duration", + "jsonPath": "$['value'][4]['duration']", "jsonPosition": Object { "column": 21, "line": 142, @@ -37586,7 +38178,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/4/duration", + "path": "$/value/4/duration", "position": Object { "column": 20, "line": 723, @@ -37606,7 +38198,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[4].hostPageDisplayUrl", + "jsonPath": "$['value'][4]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 142, @@ -37616,7 +38208,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/4/hostPageDisplayUrl", + "path": "$/value/4/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -37636,7 +38228,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[4].encodingFormat", + "jsonPath": "$['value'][4]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 142, @@ -37646,7 +38238,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/4/encodingFormat", + "path": "$/value/4/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -37666,7 +38258,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[4].isAccessibleForFree", + "jsonPath": "$['value'][4]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 142, @@ -37676,7 +38268,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/4/isAccessibleForFree", + "path": "$/value/4/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -37696,7 +38288,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[4].creator", + "jsonPath": "$['value'][4]['creator']", "jsonPosition": Object { "column": 21, "line": 142, @@ -37706,7 +38298,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/4/creator", + "path": "$/value/4/creator", "position": Object { "column": 20, "line": 723, @@ -37726,7 +38318,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[4].publisher", + "jsonPath": "$['value'][4]['publisher']", "jsonPosition": Object { "column": 21, "line": 142, @@ -37736,7 +38328,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/4/publisher", + "path": "$/value/4/publisher", "position": Object { "column": 20, "line": 723, @@ -37756,7 +38348,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[4].datePublished", + "jsonPath": "$['value'][4]['datePublished']", "jsonPosition": Object { "column": 21, "line": 142, @@ -37766,7 +38358,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/4/datePublished", + "path": "$/value/4/datePublished", "position": Object { "column": 20, "line": 723, @@ -37786,13 +38378,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[3].thumbnail._type", + "jsonPath": "$['value'][3]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/3/thumbnail/_type", + "path": "$/value/3/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -37812,7 +38404,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[3]._type", + "jsonPath": "$['value'][3]['_type']", "jsonPosition": Object { "column": 21, "line": 109, @@ -37822,7 +38414,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/3/_type", + "path": "$/value/3/_type", "position": Object { "column": 20, "line": 723, @@ -37842,7 +38434,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[3].duration", + "jsonPath": "$['value'][3]['duration']", "jsonPosition": Object { "column": 21, "line": 109, @@ -37852,7 +38444,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/3/duration", + "path": "$/value/3/duration", "position": Object { "column": 20, "line": 723, @@ -37872,7 +38464,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[3].hostPageDisplayUrl", + "jsonPath": "$['value'][3]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 109, @@ -37882,7 +38474,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/3/hostPageDisplayUrl", + "path": "$/value/3/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -37902,7 +38494,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[3].encodingFormat", + "jsonPath": "$['value'][3]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 109, @@ -37912,7 +38504,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/3/encodingFormat", + "path": "$/value/3/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -37932,7 +38524,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[3].isAccessibleForFree", + "jsonPath": "$['value'][3]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 109, @@ -37942,7 +38534,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/3/isAccessibleForFree", + "path": "$/value/3/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -37962,7 +38554,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[3].creator", + "jsonPath": "$['value'][3]['creator']", "jsonPosition": Object { "column": 21, "line": 109, @@ -37972,7 +38564,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/3/creator", + "path": "$/value/3/creator", "position": Object { "column": 20, "line": 723, @@ -37992,7 +38584,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[3].publisher", + "jsonPath": "$['value'][3]['publisher']", "jsonPosition": Object { "column": 21, "line": 109, @@ -38002,7 +38594,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/3/publisher", + "path": "$/value/3/publisher", "position": Object { "column": 20, "line": 723, @@ -38022,7 +38614,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[3].datePublished", + "jsonPath": "$['value'][3]['datePublished']", "jsonPosition": Object { "column": 21, "line": 109, @@ -38032,7 +38624,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/3/datePublished", + "path": "$/value/3/datePublished", "position": Object { "column": 20, "line": 723, @@ -38052,13 +38644,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[2].thumbnail._type", + "jsonPath": "$['value'][2]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/2/thumbnail/_type", + "path": "$/value/2/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -38078,7 +38670,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[2]._type", + "jsonPath": "$['value'][2]['_type']", "jsonPosition": Object { "column": 21, "line": 75, @@ -38088,7 +38680,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/2/_type", + "path": "$/value/2/_type", "position": Object { "column": 20, "line": 723, @@ -38108,7 +38700,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[2].duration", + "jsonPath": "$['value'][2]['duration']", "jsonPosition": Object { "column": 21, "line": 75, @@ -38118,7 +38710,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/2/duration", + "path": "$/value/2/duration", "position": Object { "column": 20, "line": 723, @@ -38138,7 +38730,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[2].hostPageDisplayUrl", + "jsonPath": "$['value'][2]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 75, @@ -38148,7 +38740,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/2/hostPageDisplayUrl", + "path": "$/value/2/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -38168,7 +38760,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[2].encodingFormat", + "jsonPath": "$['value'][2]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 75, @@ -38178,7 +38770,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/2/encodingFormat", + "path": "$/value/2/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -38198,7 +38790,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[2].isAccessibleForFree", + "jsonPath": "$['value'][2]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 75, @@ -38208,7 +38800,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/2/isAccessibleForFree", + "path": "$/value/2/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -38228,7 +38820,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[2].creator", + "jsonPath": "$['value'][2]['creator']", "jsonPosition": Object { "column": 21, "line": 75, @@ -38238,7 +38830,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/2/creator", + "path": "$/value/2/creator", "position": Object { "column": 20, "line": 723, @@ -38258,7 +38850,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[2].publisher", + "jsonPath": "$['value'][2]['publisher']", "jsonPosition": Object { "column": 21, "line": 75, @@ -38268,7 +38860,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/2/publisher", + "path": "$/value/2/publisher", "position": Object { "column": 20, "line": 723, @@ -38288,7 +38880,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[2].datePublished", + "jsonPath": "$['value'][2]['datePublished']", "jsonPosition": Object { "column": 21, "line": 75, @@ -38298,7 +38890,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/2/datePublished", + "path": "$/value/2/datePublished", "position": Object { "column": 20, "line": 723, @@ -38318,13 +38910,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[1].thumbnail._type", + "jsonPath": "$['value'][1]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/1/thumbnail/_type", + "path": "$/value/1/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -38344,7 +38936,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[1]._type", + "jsonPath": "$['value'][1]['_type']", "jsonPosition": Object { "column": 21, "line": 42, @@ -38354,7 +38946,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/1/_type", + "path": "$/value/1/_type", "position": Object { "column": 20, "line": 723, @@ -38374,7 +38966,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[1].duration", + "jsonPath": "$['value'][1]['duration']", "jsonPosition": Object { "column": 21, "line": 42, @@ -38384,7 +38976,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/1/duration", + "path": "$/value/1/duration", "position": Object { "column": 20, "line": 723, @@ -38404,7 +38996,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[1].hostPageDisplayUrl", + "jsonPath": "$['value'][1]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 42, @@ -38414,7 +39006,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/1/hostPageDisplayUrl", + "path": "$/value/1/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -38434,7 +39026,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[1].encodingFormat", + "jsonPath": "$['value'][1]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 42, @@ -38444,7 +39036,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/1/encodingFormat", + "path": "$/value/1/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -38464,7 +39056,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[1].isAccessibleForFree", + "jsonPath": "$['value'][1]['isAccessibleForFree']", "jsonPosition": Object { "column": 21, "line": 42, @@ -38474,7 +39066,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "value/1/isAccessibleForFree", + "path": "$/value/1/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -38494,7 +39086,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[1].creator", + "jsonPath": "$['value'][1]['creator']", "jsonPosition": Object { "column": 21, "line": 42, @@ -38504,7 +39096,7 @@ Array [ "params": Array [ "creator", ], - "path": "value/1/creator", + "path": "$/value/1/creator", "position": Object { "column": 20, "line": 723, @@ -38524,7 +39116,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[1].publisher", + "jsonPath": "$['value'][1]['publisher']", "jsonPosition": Object { "column": 21, "line": 42, @@ -38534,7 +39126,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/1/publisher", + "path": "$/value/1/publisher", "position": Object { "column": 20, "line": 723, @@ -38554,7 +39146,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[1].datePublished", + "jsonPath": "$['value'][1]['datePublished']", "jsonPosition": Object { "column": 21, "line": 42, @@ -38564,7 +39156,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/1/datePublished", + "path": "$/value/1/datePublished", "position": Object { "column": 20, "line": 723, @@ -38584,13 +39176,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.value[0].thumbnail._type", + "jsonPath": "$['value'][0]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "value/0/thumbnail/_type", + "path": "$/value/0/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -38610,7 +39202,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[0]._type", + "jsonPath": "$['value'][0]['_type']", "jsonPosition": Object { "column": 21, "line": 15, @@ -38620,7 +39212,7 @@ Array [ "params": Array [ "_type", ], - "path": "value/0/_type", + "path": "$/value/0/_type", "position": Object { "column": 20, "line": 723, @@ -38640,7 +39232,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[0].duration", + "jsonPath": "$['value'][0]['duration']", "jsonPosition": Object { "column": 21, "line": 15, @@ -38650,7 +39242,7 @@ Array [ "params": Array [ "duration", ], - "path": "value/0/duration", + "path": "$/value/0/duration", "position": Object { "column": 20, "line": 723, @@ -38670,7 +39262,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[0].hostPageDisplayUrl", + "jsonPath": "$['value'][0]['hostPageDisplayUrl']", "jsonPosition": Object { "column": 21, "line": 15, @@ -38680,7 +39272,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "value/0/hostPageDisplayUrl", + "path": "$/value/0/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -38700,7 +39292,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[0].encodingFormat", + "jsonPath": "$['value'][0]['encodingFormat']", "jsonPosition": Object { "column": 21, "line": 15, @@ -38710,7 +39302,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "value/0/encodingFormat", + "path": "$/value/0/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -38730,7 +39322,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[0].publisher", + "jsonPath": "$['value'][0]['publisher']", "jsonPosition": Object { "column": 21, "line": 15, @@ -38740,7 +39332,7 @@ Array [ "params": Array [ "publisher", ], - "path": "value/0/publisher", + "path": "$/value/0/publisher", "position": Object { "column": 20, "line": 723, @@ -38760,7 +39352,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.value[0].datePublished", + "jsonPath": "$['value'][0]['datePublished']", "jsonPosition": Object { "column": 21, "line": 15, @@ -38770,7 +39362,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "value/0/datePublished", + "path": "$/value/0/datePublished", "position": Object { "column": 20, "line": 723, @@ -38810,7 +39402,7 @@ Array [ "details": Object { "code": "OBJECT_ADDITIONAL_PROPERTIES", "directives": Object {}, - "jsonPath": "$.instrumentation", + "jsonPath": "$['instrumentation']", "jsonPosition": Object { "column": 15, "line": 8, @@ -38820,7 +39412,7 @@ Array [ "params": Array [ "instrumentation", ], - "path": "instrumentation", + "path": "$/instrumentation", "position": Object { "column": 21, "line": 1066, @@ -38840,13 +39432,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.videoResult.thumbnail._type", + "jsonPath": "$['videoResult']['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoDetailRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "videoResult/thumbnail/_type", + "path": "$/videoResult/thumbnail/_type", "position": Object { "column": 20, "line": 906, @@ -38866,7 +39458,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.videoResult._type", + "jsonPath": "$['videoResult']['_type']", "jsonPosition": Object { "column": 24, "line": 1040, @@ -38876,7 +39468,7 @@ Array [ "params": Array [ "_type", ], - "path": "videoResult/_type", + "path": "$/videoResult/_type", "position": Object { "column": 20, "line": 723, @@ -38896,7 +39488,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.videoResult.duration", + "jsonPath": "$['videoResult']['duration']", "jsonPosition": Object { "column": 24, "line": 1040, @@ -38906,7 +39498,7 @@ Array [ "params": Array [ "duration", ], - "path": "videoResult/duration", + "path": "$/videoResult/duration", "position": Object { "column": 20, "line": 723, @@ -38926,7 +39518,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.videoResult.hostPageDisplayUrl", + "jsonPath": "$['videoResult']['hostPageDisplayUrl']", "jsonPosition": Object { "column": 24, "line": 1040, @@ -38936,7 +39528,7 @@ Array [ "params": Array [ "hostPageDisplayUrl", ], - "path": "videoResult/hostPageDisplayUrl", + "path": "$/videoResult/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, @@ -38956,7 +39548,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.videoResult.encodingFormat", + "jsonPath": "$['videoResult']['encodingFormat']", "jsonPosition": Object { "column": 24, "line": 1040, @@ -38966,7 +39558,7 @@ Array [ "params": Array [ "encodingFormat", ], - "path": "videoResult/encodingFormat", + "path": "$/videoResult/encodingFormat", "position": Object { "column": 20, "line": 723, @@ -38986,7 +39578,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.videoResult.isAccessibleForFree", + "jsonPath": "$['videoResult']['isAccessibleForFree']", "jsonPosition": Object { "column": 24, "line": 1040, @@ -38996,7 +39588,7 @@ Array [ "params": Array [ "isAccessibleForFree", ], - "path": "videoResult/isAccessibleForFree", + "path": "$/videoResult/isAccessibleForFree", "position": Object { "column": 20, "line": 723, @@ -39016,7 +39608,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.videoResult.creator", + "jsonPath": "$['videoResult']['creator']", "jsonPosition": Object { "column": 24, "line": 1040, @@ -39026,7 +39618,7 @@ Array [ "params": Array [ "creator", ], - "path": "videoResult/creator", + "path": "$/videoResult/creator", "position": Object { "column": 20, "line": 723, @@ -39046,7 +39638,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.videoResult.publisher", + "jsonPath": "$['videoResult']['publisher']", "jsonPosition": Object { "column": 24, "line": 1040, @@ -39056,7 +39648,7 @@ Array [ "params": Array [ "publisher", ], - "path": "videoResult/publisher", + "path": "$/videoResult/publisher", "position": Object { "column": 20, "line": 723, @@ -39076,7 +39668,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.videoResult.datePublished", + "jsonPath": "$['videoResult']['datePublished']", "jsonPosition": Object { "column": 24, "line": 1040, @@ -39086,7 +39678,7 @@ Array [ "params": Array [ "datePublished", ], - "path": "videoResult/datePublished", + "path": "$/videoResult/datePublished", "position": Object { "column": 20, "line": 723, @@ -39106,100 +39698,100 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.relatedVideos.value[0]._type", + "jsonPath": "$['relatedVideos']['value'][0]['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoDetailRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "relatedVideos/value/0/_type", + "path": "$/relatedVideos/value/0/_type", "position": Object { "column": 20, "line": 723, }, "similarJsonPaths": Array [ - "$.relatedVideos.value[1]._type", - "$.relatedVideos.value[2]._type", - "$.relatedVideos.value[3]._type", - "$.relatedVideos.value[4]._type", - "$.relatedVideos.value[5]._type", - "$.relatedVideos.value[6]._type", - "$.relatedVideos.value[7]._type", - "$.relatedVideos.value[8]._type", - "$.relatedVideos.value[9]._type", - "$.relatedVideos.value[10]._type", - "$.relatedVideos.value[11]._type", - "$.relatedVideos.value[12]._type", - "$.relatedVideos.value[13]._type", - "$.relatedVideos.value[14]._type", - "$.relatedVideos.value[15]._type", - "$.relatedVideos.value[16]._type", - "$.relatedVideos.value[17]._type", - "$.relatedVideos.value[18]._type", - "$.relatedVideos.value[19]._type", - "$.relatedVideos.value[20]._type", - "$.relatedVideos.value[21]._type", - "$.relatedVideos.value[22]._type", - "$.relatedVideos.value[23]._type", - "$.relatedVideos.value[24]._type", - "$.relatedVideos.value[25]._type", - "$.relatedVideos.value[26]._type", - "$.relatedVideos.value[27]._type", - "$.relatedVideos.value[28]._type", - "$.relatedVideos.value[29]._type", - "$.relatedVideos.value[30]._type", - "$.relatedVideos.value[31]._type", - "$.relatedVideos.value[32]._type", - "$.relatedVideos.value[33]._type", - "$.relatedVideos.value[34]._type", - "$.relatedVideos.value[35]._type", - "$.relatedVideos.value[36]._type", - "$.relatedVideos.value[37]._type", - "$.relatedVideos.value[38]._type", - "$.relatedVideos.value[39]._type", - "$.relatedVideos.value[40]._type", + "$['relatedVideos']['value'][1]['_type']", + "$['relatedVideos']['value'][2]['_type']", + "$['relatedVideos']['value'][3]['_type']", + "$['relatedVideos']['value'][4]['_type']", + "$['relatedVideos']['value'][5]['_type']", + "$['relatedVideos']['value'][6]['_type']", + "$['relatedVideos']['value'][7]['_type']", + "$['relatedVideos']['value'][8]['_type']", + "$['relatedVideos']['value'][9]['_type']", + "$['relatedVideos']['value'][10]['_type']", + "$['relatedVideos']['value'][11]['_type']", + "$['relatedVideos']['value'][12]['_type']", + "$['relatedVideos']['value'][13]['_type']", + "$['relatedVideos']['value'][14]['_type']", + "$['relatedVideos']['value'][15]['_type']", + "$['relatedVideos']['value'][16]['_type']", + "$['relatedVideos']['value'][17]['_type']", + "$['relatedVideos']['value'][18]['_type']", + "$['relatedVideos']['value'][19]['_type']", + "$['relatedVideos']['value'][20]['_type']", + "$['relatedVideos']['value'][21]['_type']", + "$['relatedVideos']['value'][22]['_type']", + "$['relatedVideos']['value'][23]['_type']", + "$['relatedVideos']['value'][24]['_type']", + "$['relatedVideos']['value'][25]['_type']", + "$['relatedVideos']['value'][26]['_type']", + "$['relatedVideos']['value'][27]['_type']", + "$['relatedVideos']['value'][28]['_type']", + "$['relatedVideos']['value'][29]['_type']", + "$['relatedVideos']['value'][30]['_type']", + "$['relatedVideos']['value'][31]['_type']", + "$['relatedVideos']['value'][32]['_type']", + "$['relatedVideos']['value'][33]['_type']", + "$['relatedVideos']['value'][34]['_type']", + "$['relatedVideos']['value'][35]['_type']", + "$['relatedVideos']['value'][36]['_type']", + "$['relatedVideos']['value'][37]['_type']", + "$['relatedVideos']['value'][38]['_type']", + "$['relatedVideos']['value'][39]['_type']", + "$['relatedVideos']['value'][40]['_type']", ], "similarPaths": Array [ - "relatedVideos/value/1/_type", - "relatedVideos/value/2/_type", - "relatedVideos/value/3/_type", - "relatedVideos/value/4/_type", - "relatedVideos/value/5/_type", - "relatedVideos/value/6/_type", - "relatedVideos/value/7/_type", - "relatedVideos/value/8/_type", - "relatedVideos/value/9/_type", - "relatedVideos/value/10/_type", - "relatedVideos/value/11/_type", - "relatedVideos/value/12/_type", - "relatedVideos/value/13/_type", - "relatedVideos/value/14/_type", - "relatedVideos/value/15/_type", - "relatedVideos/value/16/_type", - "relatedVideos/value/17/_type", - "relatedVideos/value/18/_type", - "relatedVideos/value/19/_type", - "relatedVideos/value/20/_type", - "relatedVideos/value/21/_type", - "relatedVideos/value/22/_type", - "relatedVideos/value/23/_type", - "relatedVideos/value/24/_type", - "relatedVideos/value/25/_type", - "relatedVideos/value/26/_type", - "relatedVideos/value/27/_type", - "relatedVideos/value/28/_type", - "relatedVideos/value/29/_type", - "relatedVideos/value/30/_type", - "relatedVideos/value/31/_type", - "relatedVideos/value/32/_type", - "relatedVideos/value/33/_type", - "relatedVideos/value/34/_type", - "relatedVideos/value/35/_type", - "relatedVideos/value/36/_type", - "relatedVideos/value/37/_type", - "relatedVideos/value/38/_type", - "relatedVideos/value/39/_type", - "relatedVideos/value/40/_type", + "$/relatedVideos/value/1/_type", + "$/relatedVideos/value/2/_type", + "$/relatedVideos/value/3/_type", + "$/relatedVideos/value/4/_type", + "$/relatedVideos/value/5/_type", + "$/relatedVideos/value/6/_type", + "$/relatedVideos/value/7/_type", + "$/relatedVideos/value/8/_type", + "$/relatedVideos/value/9/_type", + "$/relatedVideos/value/10/_type", + "$/relatedVideos/value/11/_type", + "$/relatedVideos/value/12/_type", + "$/relatedVideos/value/13/_type", + "$/relatedVideos/value/14/_type", + "$/relatedVideos/value/15/_type", + "$/relatedVideos/value/16/_type", + "$/relatedVideos/value/17/_type", + "$/relatedVideos/value/18/_type", + "$/relatedVideos/value/19/_type", + "$/relatedVideos/value/20/_type", + "$/relatedVideos/value/21/_type", + "$/relatedVideos/value/22/_type", + "$/relatedVideos/value/23/_type", + "$/relatedVideos/value/24/_type", + "$/relatedVideos/value/25/_type", + "$/relatedVideos/value/26/_type", + "$/relatedVideos/value/27/_type", + "$/relatedVideos/value/28/_type", + "$/relatedVideos/value/29/_type", + "$/relatedVideos/value/30/_type", + "$/relatedVideos/value/31/_type", + "$/relatedVideos/value/32/_type", + "$/relatedVideos/value/33/_type", + "$/relatedVideos/value/34/_type", + "$/relatedVideos/value/35/_type", + "$/relatedVideos/value/36/_type", + "$/relatedVideos/value/37/_type", + "$/relatedVideos/value/38/_type", + "$/relatedVideos/value/39/_type", + "$/relatedVideos/value/40/_type", ], "title": "#/definitions/VideoObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/VideoSearch.json", @@ -39216,100 +39808,100 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.relatedVideos.value[0].duration", + "jsonPath": "$['relatedVideos']['value'][0]['duration']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoDetailRequest.json", "message": "Additional properties not allowed: duration", "params": Array [ "duration", ], - "path": "relatedVideos/value/0/duration", + "path": "$/relatedVideos/value/0/duration", "position": Object { "column": 20, "line": 723, }, "similarJsonPaths": Array [ - "$.relatedVideos.value[1].duration", - "$.relatedVideos.value[2].duration", - "$.relatedVideos.value[3].duration", - "$.relatedVideos.value[4].duration", - "$.relatedVideos.value[5].duration", - "$.relatedVideos.value[6].duration", - "$.relatedVideos.value[7].duration", - "$.relatedVideos.value[8].duration", - "$.relatedVideos.value[9].duration", - "$.relatedVideos.value[10].duration", - "$.relatedVideos.value[11].duration", - "$.relatedVideos.value[12].duration", - "$.relatedVideos.value[13].duration", - "$.relatedVideos.value[14].duration", - "$.relatedVideos.value[15].duration", - "$.relatedVideos.value[16].duration", - "$.relatedVideos.value[17].duration", - "$.relatedVideos.value[18].duration", - "$.relatedVideos.value[19].duration", - "$.relatedVideos.value[20].duration", - "$.relatedVideos.value[21].duration", - "$.relatedVideos.value[22].duration", - "$.relatedVideos.value[23].duration", - "$.relatedVideos.value[24].duration", - "$.relatedVideos.value[25].duration", - "$.relatedVideos.value[26].duration", - "$.relatedVideos.value[27].duration", - "$.relatedVideos.value[28].duration", - "$.relatedVideos.value[29].duration", - "$.relatedVideos.value[30].duration", - "$.relatedVideos.value[31].duration", - "$.relatedVideos.value[32].duration", - "$.relatedVideos.value[33].duration", - "$.relatedVideos.value[34].duration", - "$.relatedVideos.value[35].duration", - "$.relatedVideos.value[36].duration", - "$.relatedVideos.value[37].duration", - "$.relatedVideos.value[38].duration", - "$.relatedVideos.value[39].duration", - "$.relatedVideos.value[40].duration", + "$['relatedVideos']['value'][1]['duration']", + "$['relatedVideos']['value'][2]['duration']", + "$['relatedVideos']['value'][3]['duration']", + "$['relatedVideos']['value'][4]['duration']", + "$['relatedVideos']['value'][5]['duration']", + "$['relatedVideos']['value'][6]['duration']", + "$['relatedVideos']['value'][7]['duration']", + "$['relatedVideos']['value'][8]['duration']", + "$['relatedVideos']['value'][9]['duration']", + "$['relatedVideos']['value'][10]['duration']", + "$['relatedVideos']['value'][11]['duration']", + "$['relatedVideos']['value'][12]['duration']", + "$['relatedVideos']['value'][13]['duration']", + "$['relatedVideos']['value'][14]['duration']", + "$['relatedVideos']['value'][15]['duration']", + "$['relatedVideos']['value'][16]['duration']", + "$['relatedVideos']['value'][17]['duration']", + "$['relatedVideos']['value'][18]['duration']", + "$['relatedVideos']['value'][19]['duration']", + "$['relatedVideos']['value'][20]['duration']", + "$['relatedVideos']['value'][21]['duration']", + "$['relatedVideos']['value'][22]['duration']", + "$['relatedVideos']['value'][23]['duration']", + "$['relatedVideos']['value'][24]['duration']", + "$['relatedVideos']['value'][25]['duration']", + "$['relatedVideos']['value'][26]['duration']", + "$['relatedVideos']['value'][27]['duration']", + "$['relatedVideos']['value'][28]['duration']", + "$['relatedVideos']['value'][29]['duration']", + "$['relatedVideos']['value'][30]['duration']", + "$['relatedVideos']['value'][31]['duration']", + "$['relatedVideos']['value'][32]['duration']", + "$['relatedVideos']['value'][33]['duration']", + "$['relatedVideos']['value'][34]['duration']", + "$['relatedVideos']['value'][35]['duration']", + "$['relatedVideos']['value'][36]['duration']", + "$['relatedVideos']['value'][37]['duration']", + "$['relatedVideos']['value'][38]['duration']", + "$['relatedVideos']['value'][39]['duration']", + "$['relatedVideos']['value'][40]['duration']", ], "similarPaths": Array [ - "relatedVideos/value/1/duration", - "relatedVideos/value/2/duration", - "relatedVideos/value/3/duration", - "relatedVideos/value/4/duration", - "relatedVideos/value/5/duration", - "relatedVideos/value/6/duration", - "relatedVideos/value/7/duration", - "relatedVideos/value/8/duration", - "relatedVideos/value/9/duration", - "relatedVideos/value/10/duration", - "relatedVideos/value/11/duration", - "relatedVideos/value/12/duration", - "relatedVideos/value/13/duration", - "relatedVideos/value/14/duration", - "relatedVideos/value/15/duration", - "relatedVideos/value/16/duration", - "relatedVideos/value/17/duration", - "relatedVideos/value/18/duration", - "relatedVideos/value/19/duration", - "relatedVideos/value/20/duration", - "relatedVideos/value/21/duration", - "relatedVideos/value/22/duration", - "relatedVideos/value/23/duration", - "relatedVideos/value/24/duration", - "relatedVideos/value/25/duration", - "relatedVideos/value/26/duration", - "relatedVideos/value/27/duration", - "relatedVideos/value/28/duration", - "relatedVideos/value/29/duration", - "relatedVideos/value/30/duration", - "relatedVideos/value/31/duration", - "relatedVideos/value/32/duration", - "relatedVideos/value/33/duration", - "relatedVideos/value/34/duration", - "relatedVideos/value/35/duration", - "relatedVideos/value/36/duration", - "relatedVideos/value/37/duration", - "relatedVideos/value/38/duration", - "relatedVideos/value/39/duration", - "relatedVideos/value/40/duration", + "$/relatedVideos/value/1/duration", + "$/relatedVideos/value/2/duration", + "$/relatedVideos/value/3/duration", + "$/relatedVideos/value/4/duration", + "$/relatedVideos/value/5/duration", + "$/relatedVideos/value/6/duration", + "$/relatedVideos/value/7/duration", + "$/relatedVideos/value/8/duration", + "$/relatedVideos/value/9/duration", + "$/relatedVideos/value/10/duration", + "$/relatedVideos/value/11/duration", + "$/relatedVideos/value/12/duration", + "$/relatedVideos/value/13/duration", + "$/relatedVideos/value/14/duration", + "$/relatedVideos/value/15/duration", + "$/relatedVideos/value/16/duration", + "$/relatedVideos/value/17/duration", + "$/relatedVideos/value/18/duration", + "$/relatedVideos/value/19/duration", + "$/relatedVideos/value/20/duration", + "$/relatedVideos/value/21/duration", + "$/relatedVideos/value/22/duration", + "$/relatedVideos/value/23/duration", + "$/relatedVideos/value/24/duration", + "$/relatedVideos/value/25/duration", + "$/relatedVideos/value/26/duration", + "$/relatedVideos/value/27/duration", + "$/relatedVideos/value/28/duration", + "$/relatedVideos/value/29/duration", + "$/relatedVideos/value/30/duration", + "$/relatedVideos/value/31/duration", + "$/relatedVideos/value/32/duration", + "$/relatedVideos/value/33/duration", + "$/relatedVideos/value/34/duration", + "$/relatedVideos/value/35/duration", + "$/relatedVideos/value/36/duration", + "$/relatedVideos/value/37/duration", + "$/relatedVideos/value/38/duration", + "$/relatedVideos/value/39/duration", + "$/relatedVideos/value/40/duration", ], "title": "#/definitions/VideoObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/VideoSearch.json", @@ -39326,100 +39918,100 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.relatedVideos.value[0].hostPageDisplayUrl", + "jsonPath": "$['relatedVideos']['value'][0]['hostPageDisplayUrl']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoDetailRequest.json", "message": "Additional properties not allowed: hostPageDisplayUrl", "params": Array [ "hostPageDisplayUrl", ], - "path": "relatedVideos/value/0/hostPageDisplayUrl", + "path": "$/relatedVideos/value/0/hostPageDisplayUrl", "position": Object { "column": 20, "line": 723, }, "similarJsonPaths": Array [ - "$.relatedVideos.value[1].hostPageDisplayUrl", - "$.relatedVideos.value[2].hostPageDisplayUrl", - "$.relatedVideos.value[3].hostPageDisplayUrl", - "$.relatedVideos.value[4].hostPageDisplayUrl", - "$.relatedVideos.value[5].hostPageDisplayUrl", - "$.relatedVideos.value[6].hostPageDisplayUrl", - "$.relatedVideos.value[7].hostPageDisplayUrl", - "$.relatedVideos.value[8].hostPageDisplayUrl", - "$.relatedVideos.value[9].hostPageDisplayUrl", - "$.relatedVideos.value[10].hostPageDisplayUrl", - "$.relatedVideos.value[11].hostPageDisplayUrl", - "$.relatedVideos.value[12].hostPageDisplayUrl", - "$.relatedVideos.value[13].hostPageDisplayUrl", - "$.relatedVideos.value[14].hostPageDisplayUrl", - "$.relatedVideos.value[15].hostPageDisplayUrl", - "$.relatedVideos.value[16].hostPageDisplayUrl", - "$.relatedVideos.value[17].hostPageDisplayUrl", - "$.relatedVideos.value[18].hostPageDisplayUrl", - "$.relatedVideos.value[19].hostPageDisplayUrl", - "$.relatedVideos.value[20].hostPageDisplayUrl", - "$.relatedVideos.value[21].hostPageDisplayUrl", - "$.relatedVideos.value[22].hostPageDisplayUrl", - "$.relatedVideos.value[23].hostPageDisplayUrl", - "$.relatedVideos.value[24].hostPageDisplayUrl", - "$.relatedVideos.value[25].hostPageDisplayUrl", - "$.relatedVideos.value[26].hostPageDisplayUrl", - "$.relatedVideos.value[27].hostPageDisplayUrl", - "$.relatedVideos.value[28].hostPageDisplayUrl", - "$.relatedVideos.value[29].hostPageDisplayUrl", - "$.relatedVideos.value[30].hostPageDisplayUrl", - "$.relatedVideos.value[31].hostPageDisplayUrl", - "$.relatedVideos.value[32].hostPageDisplayUrl", - "$.relatedVideos.value[33].hostPageDisplayUrl", - "$.relatedVideos.value[34].hostPageDisplayUrl", - "$.relatedVideos.value[35].hostPageDisplayUrl", - "$.relatedVideos.value[36].hostPageDisplayUrl", - "$.relatedVideos.value[37].hostPageDisplayUrl", - "$.relatedVideos.value[38].hostPageDisplayUrl", - "$.relatedVideos.value[39].hostPageDisplayUrl", - "$.relatedVideos.value[40].hostPageDisplayUrl", + "$['relatedVideos']['value'][1]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][2]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][3]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][4]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][5]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][6]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][7]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][8]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][9]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][10]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][11]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][12]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][13]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][14]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][15]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][16]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][17]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][18]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][19]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][20]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][21]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][22]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][23]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][24]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][25]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][26]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][27]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][28]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][29]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][30]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][31]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][32]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][33]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][34]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][35]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][36]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][37]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][38]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][39]['hostPageDisplayUrl']", + "$['relatedVideos']['value'][40]['hostPageDisplayUrl']", ], "similarPaths": Array [ - "relatedVideos/value/1/hostPageDisplayUrl", - "relatedVideos/value/2/hostPageDisplayUrl", - "relatedVideos/value/3/hostPageDisplayUrl", - "relatedVideos/value/4/hostPageDisplayUrl", - "relatedVideos/value/5/hostPageDisplayUrl", - "relatedVideos/value/6/hostPageDisplayUrl", - "relatedVideos/value/7/hostPageDisplayUrl", - "relatedVideos/value/8/hostPageDisplayUrl", - "relatedVideos/value/9/hostPageDisplayUrl", - "relatedVideos/value/10/hostPageDisplayUrl", - "relatedVideos/value/11/hostPageDisplayUrl", - "relatedVideos/value/12/hostPageDisplayUrl", - "relatedVideos/value/13/hostPageDisplayUrl", - "relatedVideos/value/14/hostPageDisplayUrl", - "relatedVideos/value/15/hostPageDisplayUrl", - "relatedVideos/value/16/hostPageDisplayUrl", - "relatedVideos/value/17/hostPageDisplayUrl", - "relatedVideos/value/18/hostPageDisplayUrl", - "relatedVideos/value/19/hostPageDisplayUrl", - "relatedVideos/value/20/hostPageDisplayUrl", - "relatedVideos/value/21/hostPageDisplayUrl", - "relatedVideos/value/22/hostPageDisplayUrl", - "relatedVideos/value/23/hostPageDisplayUrl", - "relatedVideos/value/24/hostPageDisplayUrl", - "relatedVideos/value/25/hostPageDisplayUrl", - "relatedVideos/value/26/hostPageDisplayUrl", - "relatedVideos/value/27/hostPageDisplayUrl", - "relatedVideos/value/28/hostPageDisplayUrl", - "relatedVideos/value/29/hostPageDisplayUrl", - "relatedVideos/value/30/hostPageDisplayUrl", - "relatedVideos/value/31/hostPageDisplayUrl", - "relatedVideos/value/32/hostPageDisplayUrl", - "relatedVideos/value/33/hostPageDisplayUrl", - "relatedVideos/value/34/hostPageDisplayUrl", - "relatedVideos/value/35/hostPageDisplayUrl", - "relatedVideos/value/36/hostPageDisplayUrl", - "relatedVideos/value/37/hostPageDisplayUrl", - "relatedVideos/value/38/hostPageDisplayUrl", - "relatedVideos/value/39/hostPageDisplayUrl", - "relatedVideos/value/40/hostPageDisplayUrl", + "$/relatedVideos/value/1/hostPageDisplayUrl", + "$/relatedVideos/value/2/hostPageDisplayUrl", + "$/relatedVideos/value/3/hostPageDisplayUrl", + "$/relatedVideos/value/4/hostPageDisplayUrl", + "$/relatedVideos/value/5/hostPageDisplayUrl", + "$/relatedVideos/value/6/hostPageDisplayUrl", + "$/relatedVideos/value/7/hostPageDisplayUrl", + "$/relatedVideos/value/8/hostPageDisplayUrl", + "$/relatedVideos/value/9/hostPageDisplayUrl", + "$/relatedVideos/value/10/hostPageDisplayUrl", + "$/relatedVideos/value/11/hostPageDisplayUrl", + "$/relatedVideos/value/12/hostPageDisplayUrl", + "$/relatedVideos/value/13/hostPageDisplayUrl", + "$/relatedVideos/value/14/hostPageDisplayUrl", + "$/relatedVideos/value/15/hostPageDisplayUrl", + "$/relatedVideos/value/16/hostPageDisplayUrl", + "$/relatedVideos/value/17/hostPageDisplayUrl", + "$/relatedVideos/value/18/hostPageDisplayUrl", + "$/relatedVideos/value/19/hostPageDisplayUrl", + "$/relatedVideos/value/20/hostPageDisplayUrl", + "$/relatedVideos/value/21/hostPageDisplayUrl", + "$/relatedVideos/value/22/hostPageDisplayUrl", + "$/relatedVideos/value/23/hostPageDisplayUrl", + "$/relatedVideos/value/24/hostPageDisplayUrl", + "$/relatedVideos/value/25/hostPageDisplayUrl", + "$/relatedVideos/value/26/hostPageDisplayUrl", + "$/relatedVideos/value/27/hostPageDisplayUrl", + "$/relatedVideos/value/28/hostPageDisplayUrl", + "$/relatedVideos/value/29/hostPageDisplayUrl", + "$/relatedVideos/value/30/hostPageDisplayUrl", + "$/relatedVideos/value/31/hostPageDisplayUrl", + "$/relatedVideos/value/32/hostPageDisplayUrl", + "$/relatedVideos/value/33/hostPageDisplayUrl", + "$/relatedVideos/value/34/hostPageDisplayUrl", + "$/relatedVideos/value/35/hostPageDisplayUrl", + "$/relatedVideos/value/36/hostPageDisplayUrl", + "$/relatedVideos/value/37/hostPageDisplayUrl", + "$/relatedVideos/value/38/hostPageDisplayUrl", + "$/relatedVideos/value/39/hostPageDisplayUrl", + "$/relatedVideos/value/40/hostPageDisplayUrl", ], "title": "#/definitions/VideoObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/VideoSearch.json", @@ -39436,100 +40028,100 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.relatedVideos.value[0].isAccessibleForFree", + "jsonPath": "$['relatedVideos']['value'][0]['isAccessibleForFree']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoDetailRequest.json", "message": "Additional properties not allowed: isAccessibleForFree", "params": Array [ "isAccessibleForFree", ], - "path": "relatedVideos/value/0/isAccessibleForFree", + "path": "$/relatedVideos/value/0/isAccessibleForFree", "position": Object { "column": 20, "line": 723, }, "similarJsonPaths": Array [ - "$.relatedVideos.value[1].isAccessibleForFree", - "$.relatedVideos.value[2].isAccessibleForFree", - "$.relatedVideos.value[3].isAccessibleForFree", - "$.relatedVideos.value[4].isAccessibleForFree", - "$.relatedVideos.value[5].isAccessibleForFree", - "$.relatedVideos.value[6].isAccessibleForFree", - "$.relatedVideos.value[7].isAccessibleForFree", - "$.relatedVideos.value[8].isAccessibleForFree", - "$.relatedVideos.value[9].isAccessibleForFree", - "$.relatedVideos.value[10].isAccessibleForFree", - "$.relatedVideos.value[11].isAccessibleForFree", - "$.relatedVideos.value[12].isAccessibleForFree", - "$.relatedVideos.value[13].isAccessibleForFree", - "$.relatedVideos.value[14].isAccessibleForFree", - "$.relatedVideos.value[15].isAccessibleForFree", - "$.relatedVideos.value[16].isAccessibleForFree", - "$.relatedVideos.value[17].isAccessibleForFree", - "$.relatedVideos.value[18].isAccessibleForFree", - "$.relatedVideos.value[19].isAccessibleForFree", - "$.relatedVideos.value[20].isAccessibleForFree", - "$.relatedVideos.value[21].isAccessibleForFree", - "$.relatedVideos.value[22].isAccessibleForFree", - "$.relatedVideos.value[23].isAccessibleForFree", - "$.relatedVideos.value[24].isAccessibleForFree", - "$.relatedVideos.value[25].isAccessibleForFree", - "$.relatedVideos.value[26].isAccessibleForFree", - "$.relatedVideos.value[27].isAccessibleForFree", - "$.relatedVideos.value[28].isAccessibleForFree", - "$.relatedVideos.value[29].isAccessibleForFree", - "$.relatedVideos.value[30].isAccessibleForFree", - "$.relatedVideos.value[31].isAccessibleForFree", - "$.relatedVideos.value[32].isAccessibleForFree", - "$.relatedVideos.value[33].isAccessibleForFree", - "$.relatedVideos.value[34].isAccessibleForFree", - "$.relatedVideos.value[35].isAccessibleForFree", - "$.relatedVideos.value[36].isAccessibleForFree", - "$.relatedVideos.value[37].isAccessibleForFree", - "$.relatedVideos.value[38].isAccessibleForFree", - "$.relatedVideos.value[39].isAccessibleForFree", - "$.relatedVideos.value[40].isAccessibleForFree", + "$['relatedVideos']['value'][1]['isAccessibleForFree']", + "$['relatedVideos']['value'][2]['isAccessibleForFree']", + "$['relatedVideos']['value'][3]['isAccessibleForFree']", + "$['relatedVideos']['value'][4]['isAccessibleForFree']", + "$['relatedVideos']['value'][5]['isAccessibleForFree']", + "$['relatedVideos']['value'][6]['isAccessibleForFree']", + "$['relatedVideos']['value'][7]['isAccessibleForFree']", + "$['relatedVideos']['value'][8]['isAccessibleForFree']", + "$['relatedVideos']['value'][9]['isAccessibleForFree']", + "$['relatedVideos']['value'][10]['isAccessibleForFree']", + "$['relatedVideos']['value'][11]['isAccessibleForFree']", + "$['relatedVideos']['value'][12]['isAccessibleForFree']", + "$['relatedVideos']['value'][13]['isAccessibleForFree']", + "$['relatedVideos']['value'][14]['isAccessibleForFree']", + "$['relatedVideos']['value'][15]['isAccessibleForFree']", + "$['relatedVideos']['value'][16]['isAccessibleForFree']", + "$['relatedVideos']['value'][17]['isAccessibleForFree']", + "$['relatedVideos']['value'][18]['isAccessibleForFree']", + "$['relatedVideos']['value'][19]['isAccessibleForFree']", + "$['relatedVideos']['value'][20]['isAccessibleForFree']", + "$['relatedVideos']['value'][21]['isAccessibleForFree']", + "$['relatedVideos']['value'][22]['isAccessibleForFree']", + "$['relatedVideos']['value'][23]['isAccessibleForFree']", + "$['relatedVideos']['value'][24]['isAccessibleForFree']", + "$['relatedVideos']['value'][25]['isAccessibleForFree']", + "$['relatedVideos']['value'][26]['isAccessibleForFree']", + "$['relatedVideos']['value'][27]['isAccessibleForFree']", + "$['relatedVideos']['value'][28]['isAccessibleForFree']", + "$['relatedVideos']['value'][29]['isAccessibleForFree']", + "$['relatedVideos']['value'][30]['isAccessibleForFree']", + "$['relatedVideos']['value'][31]['isAccessibleForFree']", + "$['relatedVideos']['value'][32]['isAccessibleForFree']", + "$['relatedVideos']['value'][33]['isAccessibleForFree']", + "$['relatedVideos']['value'][34]['isAccessibleForFree']", + "$['relatedVideos']['value'][35]['isAccessibleForFree']", + "$['relatedVideos']['value'][36]['isAccessibleForFree']", + "$['relatedVideos']['value'][37]['isAccessibleForFree']", + "$['relatedVideos']['value'][38]['isAccessibleForFree']", + "$['relatedVideos']['value'][39]['isAccessibleForFree']", + "$['relatedVideos']['value'][40]['isAccessibleForFree']", ], "similarPaths": Array [ - "relatedVideos/value/1/isAccessibleForFree", - "relatedVideos/value/2/isAccessibleForFree", - "relatedVideos/value/3/isAccessibleForFree", - "relatedVideos/value/4/isAccessibleForFree", - "relatedVideos/value/5/isAccessibleForFree", - "relatedVideos/value/6/isAccessibleForFree", - "relatedVideos/value/7/isAccessibleForFree", - "relatedVideos/value/8/isAccessibleForFree", - "relatedVideos/value/9/isAccessibleForFree", - "relatedVideos/value/10/isAccessibleForFree", - "relatedVideos/value/11/isAccessibleForFree", - "relatedVideos/value/12/isAccessibleForFree", - "relatedVideos/value/13/isAccessibleForFree", - "relatedVideos/value/14/isAccessibleForFree", - "relatedVideos/value/15/isAccessibleForFree", - "relatedVideos/value/16/isAccessibleForFree", - "relatedVideos/value/17/isAccessibleForFree", - "relatedVideos/value/18/isAccessibleForFree", - "relatedVideos/value/19/isAccessibleForFree", - "relatedVideos/value/20/isAccessibleForFree", - "relatedVideos/value/21/isAccessibleForFree", - "relatedVideos/value/22/isAccessibleForFree", - "relatedVideos/value/23/isAccessibleForFree", - "relatedVideos/value/24/isAccessibleForFree", - "relatedVideos/value/25/isAccessibleForFree", - "relatedVideos/value/26/isAccessibleForFree", - "relatedVideos/value/27/isAccessibleForFree", - "relatedVideos/value/28/isAccessibleForFree", - "relatedVideos/value/29/isAccessibleForFree", - "relatedVideos/value/30/isAccessibleForFree", - "relatedVideos/value/31/isAccessibleForFree", - "relatedVideos/value/32/isAccessibleForFree", - "relatedVideos/value/33/isAccessibleForFree", - "relatedVideos/value/34/isAccessibleForFree", - "relatedVideos/value/35/isAccessibleForFree", - "relatedVideos/value/36/isAccessibleForFree", - "relatedVideos/value/37/isAccessibleForFree", - "relatedVideos/value/38/isAccessibleForFree", - "relatedVideos/value/39/isAccessibleForFree", - "relatedVideos/value/40/isAccessibleForFree", + "$/relatedVideos/value/1/isAccessibleForFree", + "$/relatedVideos/value/2/isAccessibleForFree", + "$/relatedVideos/value/3/isAccessibleForFree", + "$/relatedVideos/value/4/isAccessibleForFree", + "$/relatedVideos/value/5/isAccessibleForFree", + "$/relatedVideos/value/6/isAccessibleForFree", + "$/relatedVideos/value/7/isAccessibleForFree", + "$/relatedVideos/value/8/isAccessibleForFree", + "$/relatedVideos/value/9/isAccessibleForFree", + "$/relatedVideos/value/10/isAccessibleForFree", + "$/relatedVideos/value/11/isAccessibleForFree", + "$/relatedVideos/value/12/isAccessibleForFree", + "$/relatedVideos/value/13/isAccessibleForFree", + "$/relatedVideos/value/14/isAccessibleForFree", + "$/relatedVideos/value/15/isAccessibleForFree", + "$/relatedVideos/value/16/isAccessibleForFree", + "$/relatedVideos/value/17/isAccessibleForFree", + "$/relatedVideos/value/18/isAccessibleForFree", + "$/relatedVideos/value/19/isAccessibleForFree", + "$/relatedVideos/value/20/isAccessibleForFree", + "$/relatedVideos/value/21/isAccessibleForFree", + "$/relatedVideos/value/22/isAccessibleForFree", + "$/relatedVideos/value/23/isAccessibleForFree", + "$/relatedVideos/value/24/isAccessibleForFree", + "$/relatedVideos/value/25/isAccessibleForFree", + "$/relatedVideos/value/26/isAccessibleForFree", + "$/relatedVideos/value/27/isAccessibleForFree", + "$/relatedVideos/value/28/isAccessibleForFree", + "$/relatedVideos/value/29/isAccessibleForFree", + "$/relatedVideos/value/30/isAccessibleForFree", + "$/relatedVideos/value/31/isAccessibleForFree", + "$/relatedVideos/value/32/isAccessibleForFree", + "$/relatedVideos/value/33/isAccessibleForFree", + "$/relatedVideos/value/34/isAccessibleForFree", + "$/relatedVideos/value/35/isAccessibleForFree", + "$/relatedVideos/value/36/isAccessibleForFree", + "$/relatedVideos/value/37/isAccessibleForFree", + "$/relatedVideos/value/38/isAccessibleForFree", + "$/relatedVideos/value/39/isAccessibleForFree", + "$/relatedVideos/value/40/isAccessibleForFree", ], "title": "#/definitions/VideoObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/VideoSearch.json", @@ -39546,100 +40138,100 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.relatedVideos.value[0].creator", + "jsonPath": "$['relatedVideos']['value'][0]['creator']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoDetailRequest.json", "message": "Additional properties not allowed: creator", "params": Array [ "creator", ], - "path": "relatedVideos/value/0/creator", + "path": "$/relatedVideos/value/0/creator", "position": Object { "column": 20, "line": 723, }, "similarJsonPaths": Array [ - "$.relatedVideos.value[1].creator", - "$.relatedVideos.value[2].creator", - "$.relatedVideos.value[3].creator", - "$.relatedVideos.value[4].creator", - "$.relatedVideos.value[5].creator", - "$.relatedVideos.value[6].creator", - "$.relatedVideos.value[7].creator", - "$.relatedVideos.value[8].creator", - "$.relatedVideos.value[9].creator", - "$.relatedVideos.value[10].creator", - "$.relatedVideos.value[11].creator", - "$.relatedVideos.value[12].creator", - "$.relatedVideos.value[13].creator", - "$.relatedVideos.value[14].creator", - "$.relatedVideos.value[15].creator", - "$.relatedVideos.value[16].creator", - "$.relatedVideos.value[17].creator", - "$.relatedVideos.value[18].creator", - "$.relatedVideos.value[19].creator", - "$.relatedVideos.value[20].creator", - "$.relatedVideos.value[21].creator", - "$.relatedVideos.value[22].creator", - "$.relatedVideos.value[23].creator", - "$.relatedVideos.value[24].creator", - "$.relatedVideos.value[25].creator", - "$.relatedVideos.value[26].creator", - "$.relatedVideos.value[27].creator", - "$.relatedVideos.value[28].creator", - "$.relatedVideos.value[29].creator", - "$.relatedVideos.value[30].creator", - "$.relatedVideos.value[31].creator", - "$.relatedVideos.value[32].creator", - "$.relatedVideos.value[33].creator", - "$.relatedVideos.value[34].creator", - "$.relatedVideos.value[35].creator", - "$.relatedVideos.value[36].creator", - "$.relatedVideos.value[37].creator", - "$.relatedVideos.value[38].creator", - "$.relatedVideos.value[39].creator", - "$.relatedVideos.value[40].creator", + "$['relatedVideos']['value'][1]['creator']", + "$['relatedVideos']['value'][2]['creator']", + "$['relatedVideos']['value'][3]['creator']", + "$['relatedVideos']['value'][4]['creator']", + "$['relatedVideos']['value'][5]['creator']", + "$['relatedVideos']['value'][6]['creator']", + "$['relatedVideos']['value'][7]['creator']", + "$['relatedVideos']['value'][8]['creator']", + "$['relatedVideos']['value'][9]['creator']", + "$['relatedVideos']['value'][10]['creator']", + "$['relatedVideos']['value'][11]['creator']", + "$['relatedVideos']['value'][12]['creator']", + "$['relatedVideos']['value'][13]['creator']", + "$['relatedVideos']['value'][14]['creator']", + "$['relatedVideos']['value'][15]['creator']", + "$['relatedVideos']['value'][16]['creator']", + "$['relatedVideos']['value'][17]['creator']", + "$['relatedVideos']['value'][18]['creator']", + "$['relatedVideos']['value'][19]['creator']", + "$['relatedVideos']['value'][20]['creator']", + "$['relatedVideos']['value'][21]['creator']", + "$['relatedVideos']['value'][22]['creator']", + "$['relatedVideos']['value'][23]['creator']", + "$['relatedVideos']['value'][24]['creator']", + "$['relatedVideos']['value'][25]['creator']", + "$['relatedVideos']['value'][26]['creator']", + "$['relatedVideos']['value'][27]['creator']", + "$['relatedVideos']['value'][28]['creator']", + "$['relatedVideos']['value'][29]['creator']", + "$['relatedVideos']['value'][30]['creator']", + "$['relatedVideos']['value'][31]['creator']", + "$['relatedVideos']['value'][32]['creator']", + "$['relatedVideos']['value'][33]['creator']", + "$['relatedVideos']['value'][34]['creator']", + "$['relatedVideos']['value'][35]['creator']", + "$['relatedVideos']['value'][36]['creator']", + "$['relatedVideos']['value'][37]['creator']", + "$['relatedVideos']['value'][38]['creator']", + "$['relatedVideos']['value'][39]['creator']", + "$['relatedVideos']['value'][40]['creator']", ], "similarPaths": Array [ - "relatedVideos/value/1/creator", - "relatedVideos/value/2/creator", - "relatedVideos/value/3/creator", - "relatedVideos/value/4/creator", - "relatedVideos/value/5/creator", - "relatedVideos/value/6/creator", - "relatedVideos/value/7/creator", - "relatedVideos/value/8/creator", - "relatedVideos/value/9/creator", - "relatedVideos/value/10/creator", - "relatedVideos/value/11/creator", - "relatedVideos/value/12/creator", - "relatedVideos/value/13/creator", - "relatedVideos/value/14/creator", - "relatedVideos/value/15/creator", - "relatedVideos/value/16/creator", - "relatedVideos/value/17/creator", - "relatedVideos/value/18/creator", - "relatedVideos/value/19/creator", - "relatedVideos/value/20/creator", - "relatedVideos/value/21/creator", - "relatedVideos/value/22/creator", - "relatedVideos/value/23/creator", - "relatedVideos/value/24/creator", - "relatedVideos/value/25/creator", - "relatedVideos/value/26/creator", - "relatedVideos/value/27/creator", - "relatedVideos/value/28/creator", - "relatedVideos/value/29/creator", - "relatedVideos/value/30/creator", - "relatedVideos/value/31/creator", - "relatedVideos/value/32/creator", - "relatedVideos/value/33/creator", - "relatedVideos/value/34/creator", - "relatedVideos/value/35/creator", - "relatedVideos/value/36/creator", - "relatedVideos/value/37/creator", - "relatedVideos/value/38/creator", - "relatedVideos/value/39/creator", - "relatedVideos/value/40/creator", + "$/relatedVideos/value/1/creator", + "$/relatedVideos/value/2/creator", + "$/relatedVideos/value/3/creator", + "$/relatedVideos/value/4/creator", + "$/relatedVideos/value/5/creator", + "$/relatedVideos/value/6/creator", + "$/relatedVideos/value/7/creator", + "$/relatedVideos/value/8/creator", + "$/relatedVideos/value/9/creator", + "$/relatedVideos/value/10/creator", + "$/relatedVideos/value/11/creator", + "$/relatedVideos/value/12/creator", + "$/relatedVideos/value/13/creator", + "$/relatedVideos/value/14/creator", + "$/relatedVideos/value/15/creator", + "$/relatedVideos/value/16/creator", + "$/relatedVideos/value/17/creator", + "$/relatedVideos/value/18/creator", + "$/relatedVideos/value/19/creator", + "$/relatedVideos/value/20/creator", + "$/relatedVideos/value/21/creator", + "$/relatedVideos/value/22/creator", + "$/relatedVideos/value/23/creator", + "$/relatedVideos/value/24/creator", + "$/relatedVideos/value/25/creator", + "$/relatedVideos/value/26/creator", + "$/relatedVideos/value/27/creator", + "$/relatedVideos/value/28/creator", + "$/relatedVideos/value/29/creator", + "$/relatedVideos/value/30/creator", + "$/relatedVideos/value/31/creator", + "$/relatedVideos/value/32/creator", + "$/relatedVideos/value/33/creator", + "$/relatedVideos/value/34/creator", + "$/relatedVideos/value/35/creator", + "$/relatedVideos/value/36/creator", + "$/relatedVideos/value/37/creator", + "$/relatedVideos/value/38/creator", + "$/relatedVideos/value/39/creator", + "$/relatedVideos/value/40/creator", ], "title": "#/definitions/VideoObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/VideoSearch.json", @@ -39656,100 +40248,100 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.relatedVideos.value[0].publisher", + "jsonPath": "$['relatedVideos']['value'][0]['publisher']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoDetailRequest.json", "message": "Additional properties not allowed: publisher", "params": Array [ "publisher", ], - "path": "relatedVideos/value/0/publisher", + "path": "$/relatedVideos/value/0/publisher", "position": Object { "column": 20, "line": 723, }, "similarJsonPaths": Array [ - "$.relatedVideos.value[1].publisher", - "$.relatedVideos.value[2].publisher", - "$.relatedVideos.value[3].publisher", - "$.relatedVideos.value[4].publisher", - "$.relatedVideos.value[5].publisher", - "$.relatedVideos.value[6].publisher", - "$.relatedVideos.value[7].publisher", - "$.relatedVideos.value[8].publisher", - "$.relatedVideos.value[9].publisher", - "$.relatedVideos.value[10].publisher", - "$.relatedVideos.value[11].publisher", - "$.relatedVideos.value[12].publisher", - "$.relatedVideos.value[13].publisher", - "$.relatedVideos.value[14].publisher", - "$.relatedVideos.value[15].publisher", - "$.relatedVideos.value[16].publisher", - "$.relatedVideos.value[17].publisher", - "$.relatedVideos.value[18].publisher", - "$.relatedVideos.value[19].publisher", - "$.relatedVideos.value[20].publisher", - "$.relatedVideos.value[21].publisher", - "$.relatedVideos.value[22].publisher", - "$.relatedVideos.value[23].publisher", - "$.relatedVideos.value[24].publisher", - "$.relatedVideos.value[25].publisher", - "$.relatedVideos.value[26].publisher", - "$.relatedVideos.value[27].publisher", - "$.relatedVideos.value[28].publisher", - "$.relatedVideos.value[29].publisher", - "$.relatedVideos.value[30].publisher", - "$.relatedVideos.value[31].publisher", - "$.relatedVideos.value[32].publisher", - "$.relatedVideos.value[33].publisher", - "$.relatedVideos.value[34].publisher", - "$.relatedVideos.value[35].publisher", - "$.relatedVideos.value[36].publisher", - "$.relatedVideos.value[37].publisher", - "$.relatedVideos.value[38].publisher", - "$.relatedVideos.value[39].publisher", - "$.relatedVideos.value[40].publisher", + "$['relatedVideos']['value'][1]['publisher']", + "$['relatedVideos']['value'][2]['publisher']", + "$['relatedVideos']['value'][3]['publisher']", + "$['relatedVideos']['value'][4]['publisher']", + "$['relatedVideos']['value'][5]['publisher']", + "$['relatedVideos']['value'][6]['publisher']", + "$['relatedVideos']['value'][7]['publisher']", + "$['relatedVideos']['value'][8]['publisher']", + "$['relatedVideos']['value'][9]['publisher']", + "$['relatedVideos']['value'][10]['publisher']", + "$['relatedVideos']['value'][11]['publisher']", + "$['relatedVideos']['value'][12]['publisher']", + "$['relatedVideos']['value'][13]['publisher']", + "$['relatedVideos']['value'][14]['publisher']", + "$['relatedVideos']['value'][15]['publisher']", + "$['relatedVideos']['value'][16]['publisher']", + "$['relatedVideos']['value'][17]['publisher']", + "$['relatedVideos']['value'][18]['publisher']", + "$['relatedVideos']['value'][19]['publisher']", + "$['relatedVideos']['value'][20]['publisher']", + "$['relatedVideos']['value'][21]['publisher']", + "$['relatedVideos']['value'][22]['publisher']", + "$['relatedVideos']['value'][23]['publisher']", + "$['relatedVideos']['value'][24]['publisher']", + "$['relatedVideos']['value'][25]['publisher']", + "$['relatedVideos']['value'][26]['publisher']", + "$['relatedVideos']['value'][27]['publisher']", + "$['relatedVideos']['value'][28]['publisher']", + "$['relatedVideos']['value'][29]['publisher']", + "$['relatedVideos']['value'][30]['publisher']", + "$['relatedVideos']['value'][31]['publisher']", + "$['relatedVideos']['value'][32]['publisher']", + "$['relatedVideos']['value'][33]['publisher']", + "$['relatedVideos']['value'][34]['publisher']", + "$['relatedVideos']['value'][35]['publisher']", + "$['relatedVideos']['value'][36]['publisher']", + "$['relatedVideos']['value'][37]['publisher']", + "$['relatedVideos']['value'][38]['publisher']", + "$['relatedVideos']['value'][39]['publisher']", + "$['relatedVideos']['value'][40]['publisher']", ], "similarPaths": Array [ - "relatedVideos/value/1/publisher", - "relatedVideos/value/2/publisher", - "relatedVideos/value/3/publisher", - "relatedVideos/value/4/publisher", - "relatedVideos/value/5/publisher", - "relatedVideos/value/6/publisher", - "relatedVideos/value/7/publisher", - "relatedVideos/value/8/publisher", - "relatedVideos/value/9/publisher", - "relatedVideos/value/10/publisher", - "relatedVideos/value/11/publisher", - "relatedVideos/value/12/publisher", - "relatedVideos/value/13/publisher", - "relatedVideos/value/14/publisher", - "relatedVideos/value/15/publisher", - "relatedVideos/value/16/publisher", - "relatedVideos/value/17/publisher", - "relatedVideos/value/18/publisher", - "relatedVideos/value/19/publisher", - "relatedVideos/value/20/publisher", - "relatedVideos/value/21/publisher", - "relatedVideos/value/22/publisher", - "relatedVideos/value/23/publisher", - "relatedVideos/value/24/publisher", - "relatedVideos/value/25/publisher", - "relatedVideos/value/26/publisher", - "relatedVideos/value/27/publisher", - "relatedVideos/value/28/publisher", - "relatedVideos/value/29/publisher", - "relatedVideos/value/30/publisher", - "relatedVideos/value/31/publisher", - "relatedVideos/value/32/publisher", - "relatedVideos/value/33/publisher", - "relatedVideos/value/34/publisher", - "relatedVideos/value/35/publisher", - "relatedVideos/value/36/publisher", - "relatedVideos/value/37/publisher", - "relatedVideos/value/38/publisher", - "relatedVideos/value/39/publisher", - "relatedVideos/value/40/publisher", + "$/relatedVideos/value/1/publisher", + "$/relatedVideos/value/2/publisher", + "$/relatedVideos/value/3/publisher", + "$/relatedVideos/value/4/publisher", + "$/relatedVideos/value/5/publisher", + "$/relatedVideos/value/6/publisher", + "$/relatedVideos/value/7/publisher", + "$/relatedVideos/value/8/publisher", + "$/relatedVideos/value/9/publisher", + "$/relatedVideos/value/10/publisher", + "$/relatedVideos/value/11/publisher", + "$/relatedVideos/value/12/publisher", + "$/relatedVideos/value/13/publisher", + "$/relatedVideos/value/14/publisher", + "$/relatedVideos/value/15/publisher", + "$/relatedVideos/value/16/publisher", + "$/relatedVideos/value/17/publisher", + "$/relatedVideos/value/18/publisher", + "$/relatedVideos/value/19/publisher", + "$/relatedVideos/value/20/publisher", + "$/relatedVideos/value/21/publisher", + "$/relatedVideos/value/22/publisher", + "$/relatedVideos/value/23/publisher", + "$/relatedVideos/value/24/publisher", + "$/relatedVideos/value/25/publisher", + "$/relatedVideos/value/26/publisher", + "$/relatedVideos/value/27/publisher", + "$/relatedVideos/value/28/publisher", + "$/relatedVideos/value/29/publisher", + "$/relatedVideos/value/30/publisher", + "$/relatedVideos/value/31/publisher", + "$/relatedVideos/value/32/publisher", + "$/relatedVideos/value/33/publisher", + "$/relatedVideos/value/34/publisher", + "$/relatedVideos/value/35/publisher", + "$/relatedVideos/value/36/publisher", + "$/relatedVideos/value/37/publisher", + "$/relatedVideos/value/38/publisher", + "$/relatedVideos/value/39/publisher", + "$/relatedVideos/value/40/publisher", ], "title": "#/definitions/VideoObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/VideoSearch.json", @@ -39766,100 +40358,100 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.relatedVideos.value[0].datePublished", + "jsonPath": "$['relatedVideos']['value'][0]['datePublished']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoDetailRequest.json", "message": "Additional properties not allowed: datePublished", "params": Array [ "datePublished", ], - "path": "relatedVideos/value/0/datePublished", + "path": "$/relatedVideos/value/0/datePublished", "position": Object { "column": 20, "line": 723, }, "similarJsonPaths": Array [ - "$.relatedVideos.value[1].datePublished", - "$.relatedVideos.value[2].datePublished", - "$.relatedVideos.value[3].datePublished", - "$.relatedVideos.value[4].datePublished", - "$.relatedVideos.value[5].datePublished", - "$.relatedVideos.value[6].datePublished", - "$.relatedVideos.value[7].datePublished", - "$.relatedVideos.value[8].datePublished", - "$.relatedVideos.value[9].datePublished", - "$.relatedVideos.value[10].datePublished", - "$.relatedVideos.value[11].datePublished", - "$.relatedVideos.value[12].datePublished", - "$.relatedVideos.value[13].datePublished", - "$.relatedVideos.value[14].datePublished", - "$.relatedVideos.value[15].datePublished", - "$.relatedVideos.value[16].datePublished", - "$.relatedVideos.value[17].datePublished", - "$.relatedVideos.value[18].datePublished", - "$.relatedVideos.value[19].datePublished", - "$.relatedVideos.value[20].datePublished", - "$.relatedVideos.value[21].datePublished", - "$.relatedVideos.value[22].datePublished", - "$.relatedVideos.value[23].datePublished", - "$.relatedVideos.value[24].datePublished", - "$.relatedVideos.value[25].datePublished", - "$.relatedVideos.value[26].datePublished", - "$.relatedVideos.value[27].datePublished", - "$.relatedVideos.value[28].datePublished", - "$.relatedVideos.value[29].datePublished", - "$.relatedVideos.value[30].datePublished", - "$.relatedVideos.value[31].datePublished", - "$.relatedVideos.value[32].datePublished", - "$.relatedVideos.value[33].datePublished", - "$.relatedVideos.value[34].datePublished", - "$.relatedVideos.value[35].datePublished", - "$.relatedVideos.value[36].datePublished", - "$.relatedVideos.value[37].datePublished", - "$.relatedVideos.value[38].datePublished", - "$.relatedVideos.value[39].datePublished", - "$.relatedVideos.value[40].datePublished", + "$['relatedVideos']['value'][1]['datePublished']", + "$['relatedVideos']['value'][2]['datePublished']", + "$['relatedVideos']['value'][3]['datePublished']", + "$['relatedVideos']['value'][4]['datePublished']", + "$['relatedVideos']['value'][5]['datePublished']", + "$['relatedVideos']['value'][6]['datePublished']", + "$['relatedVideos']['value'][7]['datePublished']", + "$['relatedVideos']['value'][8]['datePublished']", + "$['relatedVideos']['value'][9]['datePublished']", + "$['relatedVideos']['value'][10]['datePublished']", + "$['relatedVideos']['value'][11]['datePublished']", + "$['relatedVideos']['value'][12]['datePublished']", + "$['relatedVideos']['value'][13]['datePublished']", + "$['relatedVideos']['value'][14]['datePublished']", + "$['relatedVideos']['value'][15]['datePublished']", + "$['relatedVideos']['value'][16]['datePublished']", + "$['relatedVideos']['value'][17]['datePublished']", + "$['relatedVideos']['value'][18]['datePublished']", + "$['relatedVideos']['value'][19]['datePublished']", + "$['relatedVideos']['value'][20]['datePublished']", + "$['relatedVideos']['value'][21]['datePublished']", + "$['relatedVideos']['value'][22]['datePublished']", + "$['relatedVideos']['value'][23]['datePublished']", + "$['relatedVideos']['value'][24]['datePublished']", + "$['relatedVideos']['value'][25]['datePublished']", + "$['relatedVideos']['value'][26]['datePublished']", + "$['relatedVideos']['value'][27]['datePublished']", + "$['relatedVideos']['value'][28]['datePublished']", + "$['relatedVideos']['value'][29]['datePublished']", + "$['relatedVideos']['value'][30]['datePublished']", + "$['relatedVideos']['value'][31]['datePublished']", + "$['relatedVideos']['value'][32]['datePublished']", + "$['relatedVideos']['value'][33]['datePublished']", + "$['relatedVideos']['value'][34]['datePublished']", + "$['relatedVideos']['value'][35]['datePublished']", + "$['relatedVideos']['value'][36]['datePublished']", + "$['relatedVideos']['value'][37]['datePublished']", + "$['relatedVideos']['value'][38]['datePublished']", + "$['relatedVideos']['value'][39]['datePublished']", + "$['relatedVideos']['value'][40]['datePublished']", ], "similarPaths": Array [ - "relatedVideos/value/1/datePublished", - "relatedVideos/value/2/datePublished", - "relatedVideos/value/3/datePublished", - "relatedVideos/value/4/datePublished", - "relatedVideos/value/5/datePublished", - "relatedVideos/value/6/datePublished", - "relatedVideos/value/7/datePublished", - "relatedVideos/value/8/datePublished", - "relatedVideos/value/9/datePublished", - "relatedVideos/value/10/datePublished", - "relatedVideos/value/11/datePublished", - "relatedVideos/value/12/datePublished", - "relatedVideos/value/13/datePublished", - "relatedVideos/value/14/datePublished", - "relatedVideos/value/15/datePublished", - "relatedVideos/value/16/datePublished", - "relatedVideos/value/17/datePublished", - "relatedVideos/value/18/datePublished", - "relatedVideos/value/19/datePublished", - "relatedVideos/value/20/datePublished", - "relatedVideos/value/21/datePublished", - "relatedVideos/value/22/datePublished", - "relatedVideos/value/23/datePublished", - "relatedVideos/value/24/datePublished", - "relatedVideos/value/25/datePublished", - "relatedVideos/value/26/datePublished", - "relatedVideos/value/27/datePublished", - "relatedVideos/value/28/datePublished", - "relatedVideos/value/29/datePublished", - "relatedVideos/value/30/datePublished", - "relatedVideos/value/31/datePublished", - "relatedVideos/value/32/datePublished", - "relatedVideos/value/33/datePublished", - "relatedVideos/value/34/datePublished", - "relatedVideos/value/35/datePublished", - "relatedVideos/value/36/datePublished", - "relatedVideos/value/37/datePublished", - "relatedVideos/value/38/datePublished", - "relatedVideos/value/39/datePublished", - "relatedVideos/value/40/datePublished", + "$/relatedVideos/value/1/datePublished", + "$/relatedVideos/value/2/datePublished", + "$/relatedVideos/value/3/datePublished", + "$/relatedVideos/value/4/datePublished", + "$/relatedVideos/value/5/datePublished", + "$/relatedVideos/value/6/datePublished", + "$/relatedVideos/value/7/datePublished", + "$/relatedVideos/value/8/datePublished", + "$/relatedVideos/value/9/datePublished", + "$/relatedVideos/value/10/datePublished", + "$/relatedVideos/value/11/datePublished", + "$/relatedVideos/value/12/datePublished", + "$/relatedVideos/value/13/datePublished", + "$/relatedVideos/value/14/datePublished", + "$/relatedVideos/value/15/datePublished", + "$/relatedVideos/value/16/datePublished", + "$/relatedVideos/value/17/datePublished", + "$/relatedVideos/value/18/datePublished", + "$/relatedVideos/value/19/datePublished", + "$/relatedVideos/value/20/datePublished", + "$/relatedVideos/value/21/datePublished", + "$/relatedVideos/value/22/datePublished", + "$/relatedVideos/value/23/datePublished", + "$/relatedVideos/value/24/datePublished", + "$/relatedVideos/value/25/datePublished", + "$/relatedVideos/value/26/datePublished", + "$/relatedVideos/value/27/datePublished", + "$/relatedVideos/value/28/datePublished", + "$/relatedVideos/value/29/datePublished", + "$/relatedVideos/value/30/datePublished", + "$/relatedVideos/value/31/datePublished", + "$/relatedVideos/value/32/datePublished", + "$/relatedVideos/value/33/datePublished", + "$/relatedVideos/value/34/datePublished", + "$/relatedVideos/value/35/datePublished", + "$/relatedVideos/value/36/datePublished", + "$/relatedVideos/value/37/datePublished", + "$/relatedVideos/value/38/datePublished", + "$/relatedVideos/value/39/datePublished", + "$/relatedVideos/value/40/datePublished", ], "title": "#/definitions/VideoObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/VideoSearch.json", @@ -39875,7 +40467,7 @@ Array [ "details": Object { "code": "ENUM_MISMATCH", "directives": Object {}, - "jsonPath": "$._type", + "jsonPath": "$['_type']", "jsonPosition": Object { "column": 18, "line": 9, @@ -39885,7 +40477,7 @@ Array [ "params": Array [ "Api.VideoDetails.VideoDetails", ], - "path": "_type", + "path": "$/_type", "position": Object { "column": 18, "line": 1091, @@ -39925,7 +40517,7 @@ Array [ "details": Object { "code": "OBJECT_ADDITIONAL_PROPERTIES", "directives": Object {}, - "jsonPath": "$.instrumentation", + "jsonPath": "$['instrumentation']", "jsonPosition": Object { "column": 21, "line": 8, @@ -39935,7 +40527,7 @@ Array [ "params": Array [ "instrumentation", ], - "path": "instrumentation", + "path": "$/instrumentation", "position": Object { "column": 23, "line": 1040, @@ -39955,38 +40547,38 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.categories[3].subcategories[0].tiles[0].image._type", + "jsonPath": "$['categories'][3]['subcategories'][0]['tiles'][0]['image']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoTrendingRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "categories/3/subcategories/0/tiles/0/image/_type", + "path": "$/categories/3/subcategories/0/tiles/0/image/_type", "position": Object { "column": 20, "line": 906, }, "similarJsonPaths": Array [ - "$.categories[3].subcategories[0].tiles[1].image._type", - "$.categories[3].subcategories[0].tiles[2].image._type", - "$.categories[3].subcategories[0].tiles[3].image._type", - "$.categories[3].subcategories[0].tiles[4].image._type", - "$.categories[3].subcategories[0].tiles[5].image._type", - "$.categories[3].subcategories[0].tiles[6].image._type", - "$.categories[3].subcategories[0].tiles[7].image._type", - "$.categories[3].subcategories[1].tiles[0].image._type", - "$.categories[3].subcategories[2].tiles[0].image._type", + "$['categories'][3]['subcategories'][0]['tiles'][1]['image']['_type']", + "$['categories'][3]['subcategories'][0]['tiles'][2]['image']['_type']", + "$['categories'][3]['subcategories'][0]['tiles'][3]['image']['_type']", + "$['categories'][3]['subcategories'][0]['tiles'][4]['image']['_type']", + "$['categories'][3]['subcategories'][0]['tiles'][5]['image']['_type']", + "$['categories'][3]['subcategories'][0]['tiles'][6]['image']['_type']", + "$['categories'][3]['subcategories'][0]['tiles'][7]['image']['_type']", + "$['categories'][3]['subcategories'][1]['tiles'][0]['image']['_type']", + "$['categories'][3]['subcategories'][2]['tiles'][0]['image']['_type']", ], "similarPaths": Array [ - "categories/3/subcategories/0/tiles/1/image/_type", - "categories/3/subcategories/0/tiles/2/image/_type", - "categories/3/subcategories/0/tiles/3/image/_type", - "categories/3/subcategories/0/tiles/4/image/_type", - "categories/3/subcategories/0/tiles/5/image/_type", - "categories/3/subcategories/0/tiles/6/image/_type", - "categories/3/subcategories/0/tiles/7/image/_type", - "categories/3/subcategories/1/tiles/0/image/_type", - "categories/3/subcategories/2/tiles/0/image/_type", + "$/categories/3/subcategories/0/tiles/1/image/_type", + "$/categories/3/subcategories/0/tiles/2/image/_type", + "$/categories/3/subcategories/0/tiles/3/image/_type", + "$/categories/3/subcategories/0/tiles/4/image/_type", + "$/categories/3/subcategories/0/tiles/5/image/_type", + "$/categories/3/subcategories/0/tiles/6/image/_type", + "$/categories/3/subcategories/0/tiles/7/image/_type", + "$/categories/3/subcategories/1/tiles/0/image/_type", + "$/categories/3/subcategories/2/tiles/0/image/_type", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/VideoSearch.json", @@ -40003,38 +40595,38 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.categories[2].subcategories[0].tiles[0].image._type", + "jsonPath": "$['categories'][2]['subcategories'][0]['tiles'][0]['image']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoTrendingRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "categories/2/subcategories/0/tiles/0/image/_type", + "path": "$/categories/2/subcategories/0/tiles/0/image/_type", "position": Object { "column": 20, "line": 906, }, "similarJsonPaths": Array [ - "$.categories[2].subcategories[0].tiles[1].image._type", - "$.categories[2].subcategories[0].tiles[2].image._type", - "$.categories[2].subcategories[0].tiles[3].image._type", - "$.categories[2].subcategories[0].tiles[4].image._type", - "$.categories[2].subcategories[0].tiles[5].image._type", - "$.categories[2].subcategories[0].tiles[6].image._type", - "$.categories[2].subcategories[0].tiles[7].image._type", - "$.categories[2].subcategories[1].tiles[0].image._type", - "$.categories[2].subcategories[2].tiles[0].image._type", + "$['categories'][2]['subcategories'][0]['tiles'][1]['image']['_type']", + "$['categories'][2]['subcategories'][0]['tiles'][2]['image']['_type']", + "$['categories'][2]['subcategories'][0]['tiles'][3]['image']['_type']", + "$['categories'][2]['subcategories'][0]['tiles'][4]['image']['_type']", + "$['categories'][2]['subcategories'][0]['tiles'][5]['image']['_type']", + "$['categories'][2]['subcategories'][0]['tiles'][6]['image']['_type']", + "$['categories'][2]['subcategories'][0]['tiles'][7]['image']['_type']", + "$['categories'][2]['subcategories'][1]['tiles'][0]['image']['_type']", + "$['categories'][2]['subcategories'][2]['tiles'][0]['image']['_type']", ], "similarPaths": Array [ - "categories/2/subcategories/0/tiles/1/image/_type", - "categories/2/subcategories/0/tiles/2/image/_type", - "categories/2/subcategories/0/tiles/3/image/_type", - "categories/2/subcategories/0/tiles/4/image/_type", - "categories/2/subcategories/0/tiles/5/image/_type", - "categories/2/subcategories/0/tiles/6/image/_type", - "categories/2/subcategories/0/tiles/7/image/_type", - "categories/2/subcategories/1/tiles/0/image/_type", - "categories/2/subcategories/2/tiles/0/image/_type", + "$/categories/2/subcategories/0/tiles/1/image/_type", + "$/categories/2/subcategories/0/tiles/2/image/_type", + "$/categories/2/subcategories/0/tiles/3/image/_type", + "$/categories/2/subcategories/0/tiles/4/image/_type", + "$/categories/2/subcategories/0/tiles/5/image/_type", + "$/categories/2/subcategories/0/tiles/6/image/_type", + "$/categories/2/subcategories/0/tiles/7/image/_type", + "$/categories/2/subcategories/1/tiles/0/image/_type", + "$/categories/2/subcategories/2/tiles/0/image/_type", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/VideoSearch.json", @@ -40051,38 +40643,38 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.categories[1].subcategories[0].tiles[0].image._type", + "jsonPath": "$['categories'][1]['subcategories'][0]['tiles'][0]['image']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoTrendingRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "categories/1/subcategories/0/tiles/0/image/_type", + "path": "$/categories/1/subcategories/0/tiles/0/image/_type", "position": Object { "column": 20, "line": 906, }, "similarJsonPaths": Array [ - "$.categories[1].subcategories[0].tiles[1].image._type", - "$.categories[1].subcategories[0].tiles[2].image._type", - "$.categories[1].subcategories[0].tiles[3].image._type", - "$.categories[1].subcategories[0].tiles[4].image._type", - "$.categories[1].subcategories[0].tiles[5].image._type", - "$.categories[1].subcategories[0].tiles[6].image._type", - "$.categories[1].subcategories[0].tiles[7].image._type", - "$.categories[1].subcategories[1].tiles[0].image._type", - "$.categories[1].subcategories[2].tiles[0].image._type", + "$['categories'][1]['subcategories'][0]['tiles'][1]['image']['_type']", + "$['categories'][1]['subcategories'][0]['tiles'][2]['image']['_type']", + "$['categories'][1]['subcategories'][0]['tiles'][3]['image']['_type']", + "$['categories'][1]['subcategories'][0]['tiles'][4]['image']['_type']", + "$['categories'][1]['subcategories'][0]['tiles'][5]['image']['_type']", + "$['categories'][1]['subcategories'][0]['tiles'][6]['image']['_type']", + "$['categories'][1]['subcategories'][0]['tiles'][7]['image']['_type']", + "$['categories'][1]['subcategories'][1]['tiles'][0]['image']['_type']", + "$['categories'][1]['subcategories'][2]['tiles'][0]['image']['_type']", ], "similarPaths": Array [ - "categories/1/subcategories/0/tiles/1/image/_type", - "categories/1/subcategories/0/tiles/2/image/_type", - "categories/1/subcategories/0/tiles/3/image/_type", - "categories/1/subcategories/0/tiles/4/image/_type", - "categories/1/subcategories/0/tiles/5/image/_type", - "categories/1/subcategories/0/tiles/6/image/_type", - "categories/1/subcategories/0/tiles/7/image/_type", - "categories/1/subcategories/1/tiles/0/image/_type", - "categories/1/subcategories/2/tiles/0/image/_type", + "$/categories/1/subcategories/0/tiles/1/image/_type", + "$/categories/1/subcategories/0/tiles/2/image/_type", + "$/categories/1/subcategories/0/tiles/3/image/_type", + "$/categories/1/subcategories/0/tiles/4/image/_type", + "$/categories/1/subcategories/0/tiles/5/image/_type", + "$/categories/1/subcategories/0/tiles/6/image/_type", + "$/categories/1/subcategories/0/tiles/7/image/_type", + "$/categories/1/subcategories/1/tiles/0/image/_type", + "$/categories/1/subcategories/2/tiles/0/image/_type", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/VideoSearch.json", @@ -40099,13 +40691,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.categories[1].subcategories[0].tiles[5].image.headLine", + "jsonPath": "$['categories'][1]['subcategories'][0]['tiles'][5]['image']['headLine']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoTrendingRequest.json", "message": "Additional properties not allowed: headLine", "params": Array [ "headLine", ], - "path": "categories/1/subcategories/0/tiles/5/image/headLine", + "path": "$/categories/1/subcategories/0/tiles/5/image/headLine", "position": Object { "column": 20, "line": 906, @@ -40125,38 +40717,38 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.categories[0].subcategories[0].tiles[0].image._type", + "jsonPath": "$['categories'][0]['subcategories'][0]['tiles'][0]['image']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/examples/SuccessfulVideoTrendingRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "categories/0/subcategories/0/tiles/0/image/_type", + "path": "$/categories/0/subcategories/0/tiles/0/image/_type", "position": Object { "column": 20, "line": 906, }, "similarJsonPaths": Array [ - "$.categories[0].subcategories[0].tiles[1].image._type", - "$.categories[0].subcategories[0].tiles[2].image._type", - "$.categories[0].subcategories[0].tiles[3].image._type", - "$.categories[0].subcategories[0].tiles[4].image._type", - "$.categories[0].subcategories[0].tiles[5].image._type", - "$.categories[0].subcategories[0].tiles[6].image._type", - "$.categories[0].subcategories[0].tiles[7].image._type", - "$.categories[0].subcategories[1].tiles[0].image._type", - "$.categories[0].subcategories[2].tiles[0].image._type", + "$['categories'][0]['subcategories'][0]['tiles'][1]['image']['_type']", + "$['categories'][0]['subcategories'][0]['tiles'][2]['image']['_type']", + "$['categories'][0]['subcategories'][0]['tiles'][3]['image']['_type']", + "$['categories'][0]['subcategories'][0]['tiles'][4]['image']['_type']", + "$['categories'][0]['subcategories'][0]['tiles'][5]['image']['_type']", + "$['categories'][0]['subcategories'][0]['tiles'][6]['image']['_type']", + "$['categories'][0]['subcategories'][0]['tiles'][7]['image']['_type']", + "$['categories'][0]['subcategories'][1]['tiles'][0]['image']['_type']", + "$['categories'][0]['subcategories'][2]['tiles'][0]['image']['_type']", ], "similarPaths": Array [ - "categories/0/subcategories/0/tiles/1/image/_type", - "categories/0/subcategories/0/tiles/2/image/_type", - "categories/0/subcategories/0/tiles/3/image/_type", - "categories/0/subcategories/0/tiles/4/image/_type", - "categories/0/subcategories/0/tiles/5/image/_type", - "categories/0/subcategories/0/tiles/6/image/_type", - "categories/0/subcategories/0/tiles/7/image/_type", - "categories/0/subcategories/1/tiles/0/image/_type", - "categories/0/subcategories/2/tiles/0/image/_type", + "$/categories/0/subcategories/0/tiles/1/image/_type", + "$/categories/0/subcategories/0/tiles/2/image/_type", + "$/categories/0/subcategories/0/tiles/3/image/_type", + "$/categories/0/subcategories/0/tiles/4/image/_type", + "$/categories/0/subcategories/0/tiles/5/image/_type", + "$/categories/0/subcategories/0/tiles/6/image/_type", + "$/categories/0/subcategories/0/tiles/7/image/_type", + "$/categories/0/subcategories/1/tiles/0/image/_type", + "$/categories/0/subcategories/2/tiles/0/image/_type", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VideoSearch/stable/v1.0/VideoSearch.json", @@ -40173,7 +40765,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.bannerTiles[5].image._type", + "jsonPath": "$['bannerTiles'][5]['image']['_type']", "jsonPosition": Object { "column": 34, "line": 83, @@ -40183,7 +40775,7 @@ Array [ "params": Array [ "_type", ], - "path": "bannerTiles/5/image/_type", + "path": "$/bannerTiles/5/image/_type", "position": Object { "column": 20, "line": 906, @@ -40203,7 +40795,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.bannerTiles[5].image.headLine", + "jsonPath": "$['bannerTiles'][5]['image']['headLine']", "jsonPosition": Object { "column": 34, "line": 83, @@ -40213,7 +40805,7 @@ Array [ "params": Array [ "headLine", ], - "path": "bannerTiles/5/image/headLine", + "path": "$/bannerTiles/5/image/headLine", "position": Object { "column": 20, "line": 906, @@ -40233,7 +40825,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.bannerTiles[4].image._type", + "jsonPath": "$['bannerTiles'][4]['image']['_type']", "jsonPosition": Object { "column": 34, "line": 70, @@ -40243,7 +40835,7 @@ Array [ "params": Array [ "_type", ], - "path": "bannerTiles/4/image/_type", + "path": "$/bannerTiles/4/image/_type", "position": Object { "column": 20, "line": 906, @@ -40263,7 +40855,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.bannerTiles[4].image.headLine", + "jsonPath": "$['bannerTiles'][4]['image']['headLine']", "jsonPosition": Object { "column": 34, "line": 70, @@ -40273,7 +40865,7 @@ Array [ "params": Array [ "headLine", ], - "path": "bannerTiles/4/image/headLine", + "path": "$/bannerTiles/4/image/headLine", "position": Object { "column": 20, "line": 906, @@ -40293,7 +40885,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.bannerTiles[3].image._type", + "jsonPath": "$['bannerTiles'][3]['image']['_type']", "jsonPosition": Object { "column": 34, "line": 57, @@ -40303,7 +40895,7 @@ Array [ "params": Array [ "_type", ], - "path": "bannerTiles/3/image/_type", + "path": "$/bannerTiles/3/image/_type", "position": Object { "column": 20, "line": 906, @@ -40323,7 +40915,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.bannerTiles[3].image.headLine", + "jsonPath": "$['bannerTiles'][3]['image']['headLine']", "jsonPosition": Object { "column": 34, "line": 57, @@ -40333,7 +40925,7 @@ Array [ "params": Array [ "headLine", ], - "path": "bannerTiles/3/image/headLine", + "path": "$/bannerTiles/3/image/headLine", "position": Object { "column": 20, "line": 906, @@ -40353,7 +40945,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.bannerTiles[2].image._type", + "jsonPath": "$['bannerTiles'][2]['image']['_type']", "jsonPosition": Object { "column": 34, "line": 44, @@ -40363,7 +40955,7 @@ Array [ "params": Array [ "_type", ], - "path": "bannerTiles/2/image/_type", + "path": "$/bannerTiles/2/image/_type", "position": Object { "column": 20, "line": 906, @@ -40383,7 +40975,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.bannerTiles[2].image.headLine", + "jsonPath": "$['bannerTiles'][2]['image']['headLine']", "jsonPosition": Object { "column": 34, "line": 44, @@ -40393,7 +40985,7 @@ Array [ "params": Array [ "headLine", ], - "path": "bannerTiles/2/image/headLine", + "path": "$/bannerTiles/2/image/headLine", "position": Object { "column": 20, "line": 906, @@ -40413,7 +41005,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.bannerTiles[1].image._type", + "jsonPath": "$['bannerTiles'][1]['image']['_type']", "jsonPosition": Object { "column": 34, "line": 31, @@ -40423,7 +41015,7 @@ Array [ "params": Array [ "_type", ], - "path": "bannerTiles/1/image/_type", + "path": "$/bannerTiles/1/image/_type", "position": Object { "column": 20, "line": 906, @@ -40443,7 +41035,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.bannerTiles[1].image.headLine", + "jsonPath": "$['bannerTiles'][1]['image']['headLine']", "jsonPosition": Object { "column": 34, "line": 31, @@ -40453,7 +41045,7 @@ Array [ "params": Array [ "headLine", ], - "path": "bannerTiles/1/image/headLine", + "path": "$/bannerTiles/1/image/headLine", "position": Object { "column": 20, "line": 906, @@ -40473,7 +41065,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.bannerTiles[0].image._type", + "jsonPath": "$['bannerTiles'][0]['image']['_type']", "jsonPosition": Object { "column": 34, "line": 18, @@ -40483,7 +41075,7 @@ Array [ "params": Array [ "_type", ], - "path": "bannerTiles/0/image/_type", + "path": "$/bannerTiles/0/image/_type", "position": Object { "column": 20, "line": 906, @@ -40503,7 +41095,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.bannerTiles[0].image.headLine", + "jsonPath": "$['bannerTiles'][0]['image']['headLine']", "jsonPosition": Object { "column": 34, "line": 18, @@ -40513,7 +41105,7 @@ Array [ "params": Array [ "headLine", ], - "path": "bannerTiles/0/image/headLine", + "path": "$/bannerTiles/0/image/headLine", "position": Object { "column": 20, "line": 906, @@ -40561,7 +41153,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image.", "directives": Object {}, - "jsonPath": "$.image._type", + "jsonPath": "$['image']['_type']", "jsonPosition": Object { "column": 25, "line": 135, @@ -40571,7 +41163,7 @@ Array [ "params": Array [ "_type", ], - "path": "image/_type", + "path": "$/image/_type", "position": Object { "column": 20, "line": 276, @@ -40591,7 +41183,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image.", "directives": Object {}, - "jsonPath": "$.tags[0].image._type", + "jsonPath": "$['tags'][0]['image']['_type']", "jsonPosition": Object { "column": 25, "line": 135, @@ -40601,16 +41193,16 @@ Array [ "params": Array [ "_type", ], - "path": "tags/0/image/_type", + "path": "$/tags/0/image/_type", "position": Object { "column": 20, "line": 276, }, "similarJsonPaths": Array [ - "$.tags[1].image._type", + "$['tags'][1]['image']['_type']", ], "similarPaths": Array [ - "tags/1/image/_type", + "$/tags/1/image/_type", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VisualSearch/preview/v1.0/VisualSearch.json", @@ -40627,22 +41219,22 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a 2D point with X and Y coordinates.", "directives": Object {}, - "jsonPath": "$.tags[0].boundingBox.queryRectangle.topLeft._type", + "jsonPath": "$['tags'][0]['boundingBox']['queryRectangle']['topLeft']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VisualSearch/preview/v1.0/examples/SuccessfulVisualSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "tags/0/boundingBox/queryRectangle/topLeft/_type", + "path": "$/tags/0/boundingBox/queryRectangle/topLeft/_type", "position": Object { "column": 16, "line": 1156, }, "similarJsonPaths": Array [ - "$.tags[1].boundingBox.queryRectangle.topLeft._type", + "$['tags'][1]['boundingBox']['queryRectangle']['topLeft']['_type']", ], "similarPaths": Array [ - "tags/1/boundingBox/queryRectangle/topLeft/_type", + "$/tags/1/boundingBox/queryRectangle/topLeft/_type", ], "title": "#/definitions/Point2D", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VisualSearch/preview/v1.0/VisualSearch.json", @@ -40659,22 +41251,22 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a 2D point with X and Y coordinates.", "directives": Object {}, - "jsonPath": "$.tags[0].boundingBox.queryRectangle.topRight._type", + "jsonPath": "$['tags'][0]['boundingBox']['queryRectangle']['topRight']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VisualSearch/preview/v1.0/examples/SuccessfulVisualSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "tags/0/boundingBox/queryRectangle/topRight/_type", + "path": "$/tags/0/boundingBox/queryRectangle/topRight/_type", "position": Object { "column": 16, "line": 1156, }, "similarJsonPaths": Array [ - "$.tags[1].boundingBox.queryRectangle.topRight._type", + "$['tags'][1]['boundingBox']['queryRectangle']['topRight']['_type']", ], "similarPaths": Array [ - "tags/1/boundingBox/queryRectangle/topRight/_type", + "$/tags/1/boundingBox/queryRectangle/topRight/_type", ], "title": "#/definitions/Point2D", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VisualSearch/preview/v1.0/VisualSearch.json", @@ -40691,22 +41283,22 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a 2D point with X and Y coordinates.", "directives": Object {}, - "jsonPath": "$.tags[0].boundingBox.queryRectangle.bottomRight._type", + "jsonPath": "$['tags'][0]['boundingBox']['queryRectangle']['bottomRight']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VisualSearch/preview/v1.0/examples/SuccessfulVisualSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "tags/0/boundingBox/queryRectangle/bottomRight/_type", + "path": "$/tags/0/boundingBox/queryRectangle/bottomRight/_type", "position": Object { "column": 16, "line": 1156, }, "similarJsonPaths": Array [ - "$.tags[1].boundingBox.queryRectangle.bottomRight._type", + "$['tags'][1]['boundingBox']['queryRectangle']['bottomRight']['_type']", ], "similarPaths": Array [ - "tags/1/boundingBox/queryRectangle/bottomRight/_type", + "$/tags/1/boundingBox/queryRectangle/bottomRight/_type", ], "title": "#/definitions/Point2D", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VisualSearch/preview/v1.0/VisualSearch.json", @@ -40723,22 +41315,22 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a 2D point with X and Y coordinates.", "directives": Object {}, - "jsonPath": "$.tags[0].boundingBox.queryRectangle.bottomLeft._type", + "jsonPath": "$['tags'][0]['boundingBox']['queryRectangle']['bottomLeft']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VisualSearch/preview/v1.0/examples/SuccessfulVisualSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "tags/0/boundingBox/queryRectangle/bottomLeft/_type", + "path": "$/tags/0/boundingBox/queryRectangle/bottomLeft/_type", "position": Object { "column": 16, "line": 1156, }, "similarJsonPaths": Array [ - "$.tags[1].boundingBox.queryRectangle.bottomLeft._type", + "$['tags'][1]['boundingBox']['queryRectangle']['bottomLeft']['_type']", ], "similarPaths": Array [ - "tags/1/boundingBox/queryRectangle/bottomLeft/_type", + "$/tags/1/boundingBox/queryRectangle/bottomLeft/_type", ], "title": "#/definitions/Point2D", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VisualSearch/preview/v1.0/VisualSearch.json", @@ -40755,22 +41347,22 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a region of an image. The region is a convex quadrilateral defined by coordinates of its top left, top right, bottom left, and bottom right points. The coordinates are fractional values of the original image's width and height in the range 0.0 through 1.0.", "directives": Object {}, - "jsonPath": "$.tags[0].boundingBox.queryRectangle._type", + "jsonPath": "$['tags'][0]['boundingBox']['queryRectangle']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VisualSearch/preview/v1.0/examples/SuccessfulVisualSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "tags/0/boundingBox/queryRectangle/_type", + "path": "$/tags/0/boundingBox/queryRectangle/_type", "position": Object { "column": 32, "line": 923, }, "similarJsonPaths": Array [ - "$.tags[1].boundingBox.queryRectangle._type", + "$['tags'][1]['boundingBox']['queryRectangle']['_type']", ], "similarPaths": Array [ - "tags/1/boundingBox/queryRectangle/_type", + "$/tags/1/boundingBox/queryRectangle/_type", ], "title": "#/definitions/NormalizedQuadrilateral", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VisualSearch/preview/v1.0/VisualSearch.json", @@ -40787,22 +41379,22 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a 2D point with X and Y coordinates.", "directives": Object {}, - "jsonPath": "$.tags[0].boundingBox.displayRectangle.topLeft._type", + "jsonPath": "$['tags'][0]['boundingBox']['displayRectangle']['topLeft']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VisualSearch/preview/v1.0/examples/SuccessfulVisualSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "tags/0/boundingBox/displayRectangle/topLeft/_type", + "path": "$/tags/0/boundingBox/displayRectangle/topLeft/_type", "position": Object { "column": 16, "line": 1156, }, "similarJsonPaths": Array [ - "$.tags[1].boundingBox.displayRectangle.topLeft._type", + "$['tags'][1]['boundingBox']['displayRectangle']['topLeft']['_type']", ], "similarPaths": Array [ - "tags/1/boundingBox/displayRectangle/topLeft/_type", + "$/tags/1/boundingBox/displayRectangle/topLeft/_type", ], "title": "#/definitions/Point2D", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VisualSearch/preview/v1.0/VisualSearch.json", @@ -40819,22 +41411,22 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a 2D point with X and Y coordinates.", "directives": Object {}, - "jsonPath": "$.tags[0].boundingBox.displayRectangle.topRight._type", + "jsonPath": "$['tags'][0]['boundingBox']['displayRectangle']['topRight']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VisualSearch/preview/v1.0/examples/SuccessfulVisualSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "tags/0/boundingBox/displayRectangle/topRight/_type", + "path": "$/tags/0/boundingBox/displayRectangle/topRight/_type", "position": Object { "column": 16, "line": 1156, }, "similarJsonPaths": Array [ - "$.tags[1].boundingBox.displayRectangle.topRight._type", + "$['tags'][1]['boundingBox']['displayRectangle']['topRight']['_type']", ], "similarPaths": Array [ - "tags/1/boundingBox/displayRectangle/topRight/_type", + "$/tags/1/boundingBox/displayRectangle/topRight/_type", ], "title": "#/definitions/Point2D", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VisualSearch/preview/v1.0/VisualSearch.json", @@ -40851,22 +41443,22 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a 2D point with X and Y coordinates.", "directives": Object {}, - "jsonPath": "$.tags[0].boundingBox.displayRectangle.bottomRight._type", + "jsonPath": "$['tags'][0]['boundingBox']['displayRectangle']['bottomRight']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VisualSearch/preview/v1.0/examples/SuccessfulVisualSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "tags/0/boundingBox/displayRectangle/bottomRight/_type", + "path": "$/tags/0/boundingBox/displayRectangle/bottomRight/_type", "position": Object { "column": 16, "line": 1156, }, "similarJsonPaths": Array [ - "$.tags[1].boundingBox.displayRectangle.bottomRight._type", + "$['tags'][1]['boundingBox']['displayRectangle']['bottomRight']['_type']", ], "similarPaths": Array [ - "tags/1/boundingBox/displayRectangle/bottomRight/_type", + "$/tags/1/boundingBox/displayRectangle/bottomRight/_type", ], "title": "#/definitions/Point2D", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VisualSearch/preview/v1.0/VisualSearch.json", @@ -40883,22 +41475,22 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a 2D point with X and Y coordinates.", "directives": Object {}, - "jsonPath": "$.tags[0].boundingBox.displayRectangle.bottomLeft._type", + "jsonPath": "$['tags'][0]['boundingBox']['displayRectangle']['bottomLeft']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VisualSearch/preview/v1.0/examples/SuccessfulVisualSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "tags/0/boundingBox/displayRectangle/bottomLeft/_type", + "path": "$/tags/0/boundingBox/displayRectangle/bottomLeft/_type", "position": Object { "column": 16, "line": 1156, }, "similarJsonPaths": Array [ - "$.tags[1].boundingBox.displayRectangle.bottomLeft._type", + "$['tags'][1]['boundingBox']['displayRectangle']['bottomLeft']['_type']", ], "similarPaths": Array [ - "tags/1/boundingBox/displayRectangle/bottomLeft/_type", + "$/tags/1/boundingBox/displayRectangle/bottomLeft/_type", ], "title": "#/definitions/Point2D", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VisualSearch/preview/v1.0/VisualSearch.json", @@ -40915,22 +41507,22 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a region of an image. The region is a convex quadrilateral defined by coordinates of its top left, top right, bottom left, and bottom right points. The coordinates are fractional values of the original image's width and height in the range 0.0 through 1.0.", "directives": Object {}, - "jsonPath": "$.tags[0].boundingBox.displayRectangle._type", + "jsonPath": "$['tags'][0]['boundingBox']['displayRectangle']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VisualSearch/preview/v1.0/examples/SuccessfulVisualSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "tags/0/boundingBox/displayRectangle/_type", + "path": "$/tags/0/boundingBox/displayRectangle/_type", "position": Object { "column": 32, "line": 923, }, "similarJsonPaths": Array [ - "$.tags[1].boundingBox.displayRectangle._type", + "$['tags'][1]['boundingBox']['displayRectangle']['_type']", ], "similarPaths": Array [ - "tags/1/boundingBox/displayRectangle/_type", + "$/tags/1/boundingBox/displayRectangle/_type", ], "title": "#/definitions/NormalizedQuadrilateral", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VisualSearch/preview/v1.0/VisualSearch.json", @@ -40947,13 +41539,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image.", "directives": Object {}, - "jsonPath": "$.tags[0].actions.actions[0].image.thumbnail._type", + "jsonPath": "$['tags'][0]['actions']['actions'][0]['image']['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VisualSearch/preview/v1.0/examples/SuccessfulVisualSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "tags/0/actions/actions/0/image/thumbnail/_type", + "path": "$/tags/0/actions/actions/0/image/thumbnail/_type", "position": Object { "column": 20, "line": 276, @@ -40973,13 +41565,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image.", "directives": Object {}, - "jsonPath": "$.tags[0].actions.actions[0].image._type", + "jsonPath": "$['tags'][0]['actions']['actions'][0]['image']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VisualSearch/preview/v1.0/examples/SuccessfulVisualSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "tags/0/actions/actions/0/image/_type", + "path": "$/tags/0/actions/actions/0/image/_type", "position": Object { "column": 20, "line": 276, @@ -40999,22 +41591,22 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "A visual search tag.", "directives": Object {}, - "jsonPath": "$.tags[0]._type", + "jsonPath": "$['tags'][0]['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VisualSearch/preview/v1.0/examples/SuccessfulVisualSearchRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "tags/0/_type", + "path": "$/tags/0/_type", "position": Object { "column": 17, "line": 247, }, "similarJsonPaths": Array [ - "$.tags[1]._type", + "$['tags'][1]['_type']", ], "similarPaths": Array [ - "tags/1/_type", + "$/tags/1/_type", ], "title": "#/definitions/ImageTag", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/VisualSearch/preview/v1.0/VisualSearch.json", @@ -41064,13 +41656,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines the identity of a resource.", "directives": Object {}, - "jsonPath": "$.rankingResponse.mainline.items[0].value._type", + "jsonPath": "$['rankingResponse']['mainline']['items'][0]['value']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "rankingResponse/mainline/items/0/value/_type", + "path": "$/rankingResponse/mainline/items/0/value/_type", "position": Object { "column": 21, "line": 726, @@ -41082,13 +41674,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a response. All schemas that could be returned at the root of a response should inherit from this", "directives": Object {}, - "jsonPath": "$.rankingResponse.mainline.items[0].value._type", + "jsonPath": "$['rankingResponse']['mainline']['items'][0]['value']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "rankingResponse/mainline/items/0/value/_type", + "path": "$/rankingResponse/mainline/items/0/value/_type", "position": Object { "column": 17, "line": 375, @@ -41100,13 +41692,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines the top-level object that the response includes when the request succeeds.", "directives": Object {}, - "jsonPath": "$.rankingResponse.mainline.items[0].value._type", + "jsonPath": "$['rankingResponse']['mainline']['items'][0]['value']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "rankingResponse/mainline/items/0/value/_type", + "path": "$/rankingResponse/mainline/items/0/value/_type", "position": Object { "column": 23, "line": 314, @@ -41117,13 +41709,13 @@ Array [ Object { "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "directives": Object {}, - "jsonPath": "$.rankingResponse.mainline.items[0].value._type", + "jsonPath": "$['rankingResponse']['mainline']['items'][0]['value']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "rankingResponse/mainline/items/0/value/_type", + "path": "$/rankingResponse/mainline/items/0/value/_type", "position": Object { "column": 15, "line": 742, @@ -41135,13 +41727,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an expression and its answer", "directives": Object {}, - "jsonPath": "$.rankingResponse.mainline.items[0].value.value.value", + "jsonPath": "$['rankingResponse']['mainline']['items'][0]['value']['value']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: value", "params": Array [ "value", ], - "path": "rankingResponse/mainline/items/0/value/value/value", + "path": "$/rankingResponse/mainline/items/0/value/value/value", "position": Object { "column": 20, "line": 657, @@ -41152,13 +41744,13 @@ Array [ Object { "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "directives": Object {}, - "jsonPath": "$.rankingResponse.mainline.items[0].value._type", + "jsonPath": "$['rankingResponse']['mainline']['items'][0]['value']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "rankingResponse/mainline/items/0/value/_type", + "path": "$/rankingResponse/mainline/items/0/value/_type", "position": Object { "column": 28, "line": 680, @@ -41170,13 +41762,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a list of relevant webpage links.", "directives": Object {}, - "jsonPath": "$.rankingResponse.mainline.items[0].value.value.value", + "jsonPath": "$['rankingResponse']['mainline']['items'][0]['value']['value']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: value", "params": Array [ "value", ], - "path": "rankingResponse/mainline/items/0/value/value/value", + "path": "$/rankingResponse/mainline/items/0/value/value/value", "position": Object { "column": 21, "line": 428, @@ -41188,13 +41780,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image answer", "directives": Object {}, - "jsonPath": "$.rankingResponse.mainline.items[0].value.value.value", + "jsonPath": "$['rankingResponse']['mainline']['items'][0]['value']['value']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: value", "params": Array [ "value", ], - "path": "rankingResponse/mainline/items/0/value/value/value", + "path": "$/rankingResponse/mainline/items/0/value/value/value", "position": Object { "column": 15, "line": 455, @@ -41206,13 +41798,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a news answer.", "directives": Object {}, - "jsonPath": "$.rankingResponse.mainline.items[0].value.value.value", + "jsonPath": "$['rankingResponse']['mainline']['items'][0]['value']['value']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: value", "params": Array [ "value", ], - "path": "rankingResponse/mainline/items/0/value/value/value", + "path": "$/rankingResponse/mainline/items/0/value/value/value", "position": Object { "column": 13, "line": 502, @@ -41224,13 +41816,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a local entity answer.", "directives": Object {}, - "jsonPath": "$.rankingResponse.mainline.items[0].value.value.value", + "jsonPath": "$['rankingResponse']['mainline']['items'][0]['value']['value']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: value", "params": Array [ "value", ], - "path": "rankingResponse/mainline/items/0/value/value/value", + "path": "$/rankingResponse/mainline/items/0/value/value/value", "position": Object { "column": 15, "line": 527, @@ -41242,13 +41834,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a list of related queries made by others.", "directives": Object {}, - "jsonPath": "$.rankingResponse.mainline.items[0].value.value.value", + "jsonPath": "$['rankingResponse']['mainline']['items'][0]['value']['value']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: value", "params": Array [ "value", ], - "path": "rankingResponse/mainline/items/0/value/value/value", + "path": "$/rankingResponse/mainline/items/0/value/value/value", "position": Object { "column": 43, "line": 548, @@ -41260,13 +41852,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a suggested query string that likely represents the user's intent. The search results include this response if Bing determines that the user may have intended to search for something different. For example, if the user searches for alon brown, Bing may determine that the user likely intended to search for Alton Brown instead (based on past searches by others of Alon Brown).", "directives": Object {}, - "jsonPath": "$.rankingResponse.mainline.items[0].value.value.value", + "jsonPath": "$['rankingResponse']['mainline']['items'][0]['value']['value']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: value", "params": Array [ "value", ], - "path": "rankingResponse/mainline/items/0/value/value/value", + "path": "$/rankingResponse/mainline/items/0/value/value/value", "position": Object { "column": 25, "line": 570, @@ -41278,13 +41870,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines the data and time of one or more geographic locations.", "directives": Object {}, - "jsonPath": "$.rankingResponse.mainline.items[0].value.primaryCityTime", + "jsonPath": "$['rankingResponse']['mainline']['items'][0]['value']['primaryCityTime']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: primaryCityTime", "params": Array [ "primaryCityTime", ], - "path": "rankingResponse/mainline/items/0/value/primaryCityTime", + "path": "$/rankingResponse/mainline/items/0/value/primaryCityTime", "position": Object { "column": 17, "line": 591, @@ -41296,13 +41888,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video answer.", "directives": Object {}, - "jsonPath": "$.rankingResponse.mainline.items[0].value.value.value", + "jsonPath": "$['rankingResponse']['mainline']['items'][0]['value']['value']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: value", "params": Array [ "value", ], - "path": "rankingResponse/mainline/items/0/value/value/value", + "path": "$/rankingResponse/mainline/items/0/value/value/value", "position": Object { "column": 15, "line": 617, @@ -41314,13 +41906,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "The top-level response that represents a failed request.", "directives": Object {}, - "jsonPath": "$.rankingResponse.mainline.items[0].value.errors", + "jsonPath": "$['rankingResponse']['mainline']['items'][0]['value']['errors']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: errors", "params": Array [ "errors", ], - "path": "rankingResponse/mainline/items/0/value/errors", + "path": "$/rankingResponse/mainline/items/0/value/errors", "position": Object { "column": 22, "line": 759, @@ -41331,13 +41923,13 @@ Array [ Object { "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "directives": Object {}, - "jsonPath": "$.rankingResponse.mainline.items[0].value._type", + "jsonPath": "$['rankingResponse']['mainline']['items'][0]['value']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "rankingResponse/mainline/items/0/value/_type", + "path": "$/rankingResponse/mainline/items/0/value/_type", "position": Object { "column": 14, "line": 780, @@ -41348,13 +41940,13 @@ Array [ Object { "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "directives": Object {}, - "jsonPath": "$.rankingResponse.mainline.items[0].value._type", + "jsonPath": "$['rankingResponse']['mainline']['items'][0]['value']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "rankingResponse/mainline/items/0/value/_type", + "path": "$/rankingResponse/mainline/items/0/value/_type", "position": Object { "column": 21, "line": 1106, @@ -41366,13 +41958,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a webpage that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.rankingResponse.mainline.items[0].value._type", + "jsonPath": "$['rankingResponse']['mainline']['items'][0]['value']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "rankingResponse/mainline/items/0/value/_type", + "path": "$/rankingResponse/mainline/items/0/value/_type", "position": Object { "column": 16, "line": 830, @@ -41383,13 +41975,13 @@ Array [ Object { "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "directives": Object {}, - "jsonPath": "$.rankingResponse.mainline.items[0].value._type", + "jsonPath": "$['rankingResponse']['mainline']['items'][0]['value']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "rankingResponse/mainline/items/0/value/_type", + "path": "$/rankingResponse/mainline/items/0/value/_type", "position": Object { "column": 20, "line": 1141, @@ -41401,13 +41993,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.rankingResponse.mainline.items[0].value._type", + "jsonPath": "$['rankingResponse']['mainline']['items'][0]['value']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "rankingResponse/mainline/items/0/value/_type", + "path": "$/rankingResponse/mainline/items/0/value/_type", "position": Object { "column": 20, "line": 814, @@ -41419,13 +42011,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.rankingResponse.mainline.items[0].value._type", + "jsonPath": "$['rankingResponse']['mainline']['items'][0]['value']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "rankingResponse/mainline/items/0/value/_type", + "path": "$/rankingResponse/mainline/items/0/value/_type", "position": Object { "column": 20, "line": 941, @@ -41436,13 +42028,13 @@ Array [ Object { "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "directives": Object {}, - "jsonPath": "$.rankingResponse.mainline.items[0].value._type", + "jsonPath": "$['rankingResponse']['mainline']['items'][0]['value']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "rankingResponse/mainline/items/0/value/_type", + "path": "$/rankingResponse/mainline/items/0/value/_type", "position": Object { "column": 16, "line": 1190, @@ -41454,13 +42046,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a news article.", "directives": Object {}, - "jsonPath": "$.rankingResponse.mainline.items[0].value._type", + "jsonPath": "$['rankingResponse']['mainline']['items'][0]['value']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "rankingResponse/mainline/items/0/value/_type", + "path": "$/rankingResponse/mainline/items/0/value/_type", "position": Object { "column": 20, "line": 907, @@ -41471,13 +42063,13 @@ Array [ Object { "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "directives": Object {}, - "jsonPath": "$.rankingResponse.mainline.items[0].value._type", + "jsonPath": "$['rankingResponse']['mainline']['items'][0]['value']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "rankingResponse/mainline/items/0/value/_type", + "path": "$/rankingResponse/mainline/items/0/value/_type", "position": Object { "column": 19, "line": 1133, @@ -41488,13 +42080,13 @@ Array [ Object { "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "directives": Object {}, - "jsonPath": "$.rankingResponse.mainline.items[0].value._type", + "jsonPath": "$['rankingResponse']['mainline']['items'][0]['value']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "rankingResponse/mainline/items/0/value/_type", + "path": "$/rankingResponse/mainline/items/0/value/_type", "position": Object { "column": 24, "line": 1261, @@ -41503,42 +42095,42 @@ Array [ "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/WebSearch.json", }, ], - "jsonPath": "$.rankingResponse.mainline.items[0].value", + "jsonPath": "$['rankingResponse']['mainline']['items'][0]['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Data does not match any schemas from 'oneOf'", "params": Array [], - "path": "rankingResponse/mainline/items/0/value", + "path": "$/rankingResponse/mainline/items/0/value", "position": Object { "column": 18, "line": 1239, }, "similarJsonPaths": Array [ - "$.rankingResponse.mainline.items[1].value", - "$.rankingResponse.mainline.items[2].value", - "$.rankingResponse.mainline.items[3].value", - "$.rankingResponse.mainline.items[4].value", - "$.rankingResponse.mainline.items[5].value", - "$.rankingResponse.mainline.items[6].value", - "$.rankingResponse.mainline.items[7].value", - "$.rankingResponse.mainline.items[8].value", - "$.rankingResponse.mainline.items[9].value", - "$.rankingResponse.mainline.items[10].value", - "$.rankingResponse.mainline.items[11].value", - "$.rankingResponse.mainline.items[12].value", + "$['rankingResponse']['mainline']['items'][1]['value']", + "$['rankingResponse']['mainline']['items'][2]['value']", + "$['rankingResponse']['mainline']['items'][3]['value']", + "$['rankingResponse']['mainline']['items'][4]['value']", + "$['rankingResponse']['mainline']['items'][5]['value']", + "$['rankingResponse']['mainline']['items'][6]['value']", + "$['rankingResponse']['mainline']['items'][7]['value']", + "$['rankingResponse']['mainline']['items'][8]['value']", + "$['rankingResponse']['mainline']['items'][9]['value']", + "$['rankingResponse']['mainline']['items'][10]['value']", + "$['rankingResponse']['mainline']['items'][11]['value']", + "$['rankingResponse']['mainline']['items'][12]['value']", ], "similarPaths": Array [ - "rankingResponse/mainline/items/1/value", - "rankingResponse/mainline/items/2/value", - "rankingResponse/mainline/items/3/value", - "rankingResponse/mainline/items/4/value", - "rankingResponse/mainline/items/5/value", - "rankingResponse/mainline/items/6/value", - "rankingResponse/mainline/items/7/value", - "rankingResponse/mainline/items/8/value", - "rankingResponse/mainline/items/9/value", - "rankingResponse/mainline/items/10/value", - "rankingResponse/mainline/items/11/value", - "rankingResponse/mainline/items/12/value", + "$/rankingResponse/mainline/items/1/value", + "$/rankingResponse/mainline/items/2/value", + "$/rankingResponse/mainline/items/3/value", + "$/rankingResponse/mainline/items/4/value", + "$/rankingResponse/mainline/items/5/value", + "$/rankingResponse/mainline/items/6/value", + "$/rankingResponse/mainline/items/7/value", + "$/rankingResponse/mainline/items/8/value", + "$/rankingResponse/mainline/items/9/value", + "$/rankingResponse/mainline/items/10/value", + "$/rankingResponse/mainline/items/11/value", + "$/rankingResponse/mainline/items/12/value", ], "title": "#/definitions/RankingRankingItem/properties/value", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/WebSearch.json", @@ -41560,13 +42152,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines the identity of a resource.", "directives": Object {}, - "jsonPath": "$.rankingResponse.sidebar.items[0].value._type", + "jsonPath": "$['rankingResponse']['sidebar']['items'][0]['value']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "rankingResponse/sidebar/items/0/value/_type", + "path": "$/rankingResponse/sidebar/items/0/value/_type", "position": Object { "column": 21, "line": 726, @@ -41578,13 +42170,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a response. All schemas that could be returned at the root of a response should inherit from this", "directives": Object {}, - "jsonPath": "$.rankingResponse.sidebar.items[0].value._type", + "jsonPath": "$['rankingResponse']['sidebar']['items'][0]['value']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "rankingResponse/sidebar/items/0/value/_type", + "path": "$/rankingResponse/sidebar/items/0/value/_type", "position": Object { "column": 17, "line": 375, @@ -41596,13 +42188,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines the top-level object that the response includes when the request succeeds.", "directives": Object {}, - "jsonPath": "$.rankingResponse.sidebar.items[0].value._type", + "jsonPath": "$['rankingResponse']['sidebar']['items'][0]['value']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "rankingResponse/sidebar/items/0/value/_type", + "path": "$/rankingResponse/sidebar/items/0/value/_type", "position": Object { "column": 23, "line": 314, @@ -41613,13 +42205,13 @@ Array [ Object { "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "directives": Object {}, - "jsonPath": "$.rankingResponse.sidebar.items[0].value._type", + "jsonPath": "$['rankingResponse']['sidebar']['items'][0]['value']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "rankingResponse/sidebar/items/0/value/_type", + "path": "$/rankingResponse/sidebar/items/0/value/_type", "position": Object { "column": 15, "line": 742, @@ -41631,13 +42223,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an expression and its answer", "directives": Object {}, - "jsonPath": "$.rankingResponse.sidebar.items[0].value.value.value", + "jsonPath": "$['rankingResponse']['sidebar']['items'][0]['value']['value']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: value", "params": Array [ "value", ], - "path": "rankingResponse/sidebar/items/0/value/value/value", + "path": "$/rankingResponse/sidebar/items/0/value/value/value", "position": Object { "column": 20, "line": 657, @@ -41648,13 +42240,13 @@ Array [ Object { "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "directives": Object {}, - "jsonPath": "$.rankingResponse.sidebar.items[0].value._type", + "jsonPath": "$['rankingResponse']['sidebar']['items'][0]['value']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "rankingResponse/sidebar/items/0/value/_type", + "path": "$/rankingResponse/sidebar/items/0/value/_type", "position": Object { "column": 28, "line": 680, @@ -41666,13 +42258,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a list of relevant webpage links.", "directives": Object {}, - "jsonPath": "$.rankingResponse.sidebar.items[0].value.value.value", + "jsonPath": "$['rankingResponse']['sidebar']['items'][0]['value']['value']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: value", "params": Array [ "value", ], - "path": "rankingResponse/sidebar/items/0/value/value/value", + "path": "$/rankingResponse/sidebar/items/0/value/value/value", "position": Object { "column": 21, "line": 428, @@ -41684,13 +42276,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image answer", "directives": Object {}, - "jsonPath": "$.rankingResponse.sidebar.items[0].value.value.value", + "jsonPath": "$['rankingResponse']['sidebar']['items'][0]['value']['value']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: value", "params": Array [ "value", ], - "path": "rankingResponse/sidebar/items/0/value/value/value", + "path": "$/rankingResponse/sidebar/items/0/value/value/value", "position": Object { "column": 15, "line": 455, @@ -41702,13 +42294,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a news answer.", "directives": Object {}, - "jsonPath": "$.rankingResponse.sidebar.items[0].value.value.value", + "jsonPath": "$['rankingResponse']['sidebar']['items'][0]['value']['value']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: value", "params": Array [ "value", ], - "path": "rankingResponse/sidebar/items/0/value/value/value", + "path": "$/rankingResponse/sidebar/items/0/value/value/value", "position": Object { "column": 13, "line": 502, @@ -41720,13 +42312,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a local entity answer.", "directives": Object {}, - "jsonPath": "$.rankingResponse.sidebar.items[0].value.value.value", + "jsonPath": "$['rankingResponse']['sidebar']['items'][0]['value']['value']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: value", "params": Array [ "value", ], - "path": "rankingResponse/sidebar/items/0/value/value/value", + "path": "$/rankingResponse/sidebar/items/0/value/value/value", "position": Object { "column": 15, "line": 527, @@ -41738,13 +42330,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a list of related queries made by others.", "directives": Object {}, - "jsonPath": "$.rankingResponse.sidebar.items[0].value.value.value", + "jsonPath": "$['rankingResponse']['sidebar']['items'][0]['value']['value']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: value", "params": Array [ "value", ], - "path": "rankingResponse/sidebar/items/0/value/value/value", + "path": "$/rankingResponse/sidebar/items/0/value/value/value", "position": Object { "column": 43, "line": 548, @@ -41756,13 +42348,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a suggested query string that likely represents the user's intent. The search results include this response if Bing determines that the user may have intended to search for something different. For example, if the user searches for alon brown, Bing may determine that the user likely intended to search for Alton Brown instead (based on past searches by others of Alon Brown).", "directives": Object {}, - "jsonPath": "$.rankingResponse.sidebar.items[0].value.value.value", + "jsonPath": "$['rankingResponse']['sidebar']['items'][0]['value']['value']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: value", "params": Array [ "value", ], - "path": "rankingResponse/sidebar/items/0/value/value/value", + "path": "$/rankingResponse/sidebar/items/0/value/value/value", "position": Object { "column": 25, "line": 570, @@ -41774,13 +42366,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines the data and time of one or more geographic locations.", "directives": Object {}, - "jsonPath": "$.rankingResponse.sidebar.items[0].value.primaryCityTime", + "jsonPath": "$['rankingResponse']['sidebar']['items'][0]['value']['primaryCityTime']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: primaryCityTime", "params": Array [ "primaryCityTime", ], - "path": "rankingResponse/sidebar/items/0/value/primaryCityTime", + "path": "$/rankingResponse/sidebar/items/0/value/primaryCityTime", "position": Object { "column": 17, "line": 591, @@ -41792,13 +42384,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video answer.", "directives": Object {}, - "jsonPath": "$.rankingResponse.sidebar.items[0].value.value.value", + "jsonPath": "$['rankingResponse']['sidebar']['items'][0]['value']['value']['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: value", "params": Array [ "value", ], - "path": "rankingResponse/sidebar/items/0/value/value/value", + "path": "$/rankingResponse/sidebar/items/0/value/value/value", "position": Object { "column": 15, "line": 617, @@ -41810,13 +42402,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "The top-level response that represents a failed request.", "directives": Object {}, - "jsonPath": "$.rankingResponse.sidebar.items[0].value.errors", + "jsonPath": "$['rankingResponse']['sidebar']['items'][0]['value']['errors']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: errors", "params": Array [ "errors", ], - "path": "rankingResponse/sidebar/items/0/value/errors", + "path": "$/rankingResponse/sidebar/items/0/value/errors", "position": Object { "column": 22, "line": 759, @@ -41827,13 +42419,13 @@ Array [ Object { "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "directives": Object {}, - "jsonPath": "$.rankingResponse.sidebar.items[0].value._type", + "jsonPath": "$['rankingResponse']['sidebar']['items'][0]['value']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "rankingResponse/sidebar/items/0/value/_type", + "path": "$/rankingResponse/sidebar/items/0/value/_type", "position": Object { "column": 14, "line": 780, @@ -41844,13 +42436,13 @@ Array [ Object { "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "directives": Object {}, - "jsonPath": "$.rankingResponse.sidebar.items[0].value._type", + "jsonPath": "$['rankingResponse']['sidebar']['items'][0]['value']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "rankingResponse/sidebar/items/0/value/_type", + "path": "$/rankingResponse/sidebar/items/0/value/_type", "position": Object { "column": 21, "line": 1106, @@ -41862,13 +42454,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a webpage that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.rankingResponse.sidebar.items[0].value._type", + "jsonPath": "$['rankingResponse']['sidebar']['items'][0]['value']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "rankingResponse/sidebar/items/0/value/_type", + "path": "$/rankingResponse/sidebar/items/0/value/_type", "position": Object { "column": 16, "line": 830, @@ -41879,13 +42471,13 @@ Array [ Object { "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "directives": Object {}, - "jsonPath": "$.rankingResponse.sidebar.items[0].value._type", + "jsonPath": "$['rankingResponse']['sidebar']['items'][0]['value']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "rankingResponse/sidebar/items/0/value/_type", + "path": "$/rankingResponse/sidebar/items/0/value/_type", "position": Object { "column": 20, "line": 1141, @@ -41897,13 +42489,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.rankingResponse.sidebar.items[0].value._type", + "jsonPath": "$['rankingResponse']['sidebar']['items'][0]['value']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "rankingResponse/sidebar/items/0/value/_type", + "path": "$/rankingResponse/sidebar/items/0/value/_type", "position": Object { "column": 20, "line": 814, @@ -41915,13 +42507,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.rankingResponse.sidebar.items[0].value._type", + "jsonPath": "$['rankingResponse']['sidebar']['items'][0]['value']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "rankingResponse/sidebar/items/0/value/_type", + "path": "$/rankingResponse/sidebar/items/0/value/_type", "position": Object { "column": 20, "line": 941, @@ -41932,13 +42524,13 @@ Array [ Object { "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "directives": Object {}, - "jsonPath": "$.rankingResponse.sidebar.items[0].value._type", + "jsonPath": "$['rankingResponse']['sidebar']['items'][0]['value']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "rankingResponse/sidebar/items/0/value/_type", + "path": "$/rankingResponse/sidebar/items/0/value/_type", "position": Object { "column": 16, "line": 1190, @@ -41950,13 +42542,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a news article.", "directives": Object {}, - "jsonPath": "$.rankingResponse.sidebar.items[0].value._type", + "jsonPath": "$['rankingResponse']['sidebar']['items'][0]['value']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "rankingResponse/sidebar/items/0/value/_type", + "path": "$/rankingResponse/sidebar/items/0/value/_type", "position": Object { "column": 20, "line": 907, @@ -41967,13 +42559,13 @@ Array [ Object { "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "directives": Object {}, - "jsonPath": "$.rankingResponse.sidebar.items[0].value._type", + "jsonPath": "$['rankingResponse']['sidebar']['items'][0]['value']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "rankingResponse/sidebar/items/0/value/_type", + "path": "$/rankingResponse/sidebar/items/0/value/_type", "position": Object { "column": 19, "line": 1133, @@ -41984,13 +42576,13 @@ Array [ Object { "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "directives": Object {}, - "jsonPath": "$.rankingResponse.sidebar.items[0].value._type", + "jsonPath": "$['rankingResponse']['sidebar']['items'][0]['value']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "rankingResponse/sidebar/items/0/value/_type", + "path": "$/rankingResponse/sidebar/items/0/value/_type", "position": Object { "column": 24, "line": 1261, @@ -41999,20 +42591,20 @@ Array [ "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/WebSearch.json", }, ], - "jsonPath": "$.rankingResponse.sidebar.items[0].value", + "jsonPath": "$['rankingResponse']['sidebar']['items'][0]['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Data does not match any schemas from 'oneOf'", "params": Array [], - "path": "rankingResponse/sidebar/items/0/value", + "path": "$/rankingResponse/sidebar/items/0/value", "position": Object { "column": 18, "line": 1239, }, "similarJsonPaths": Array [ - "$.rankingResponse.sidebar.items[1].value", + "$['rankingResponse']['sidebar']['items'][1]['value']", ], "similarPaths": Array [ - "rankingResponse/sidebar/items/1/value", + "$/rankingResponse/sidebar/items/1/value", ], "title": "#/definitions/RankingRankingItem/properties/value", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/WebSearch.json", @@ -42029,38 +42621,38 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.videos.value[0].thumbnail._type", + "jsonPath": "$['videos']['value'][0]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "videos/value/0/thumbnail/_type", + "path": "$/videos/value/0/thumbnail/_type", "position": Object { "column": 20, "line": 814, }, "similarJsonPaths": Array [ - "$.videos.value[1].thumbnail._type", - "$.videos.value[2].thumbnail._type", - "$.videos.value[3].thumbnail._type", - "$.videos.value[4].thumbnail._type", - "$.videos.value[5].thumbnail._type", - "$.videos.value[6].thumbnail._type", - "$.videos.value[7].thumbnail._type", - "$.videos.value[8].thumbnail._type", - "$.videos.value[9].thumbnail._type", + "$['videos']['value'][1]['thumbnail']['_type']", + "$['videos']['value'][2]['thumbnail']['_type']", + "$['videos']['value'][3]['thumbnail']['_type']", + "$['videos']['value'][4]['thumbnail']['_type']", + "$['videos']['value'][5]['thumbnail']['_type']", + "$['videos']['value'][6]['thumbnail']['_type']", + "$['videos']['value'][7]['thumbnail']['_type']", + "$['videos']['value'][8]['thumbnail']['_type']", + "$['videos']['value'][9]['thumbnail']['_type']", ], "similarPaths": Array [ - "videos/value/1/thumbnail/_type", - "videos/value/2/thumbnail/_type", - "videos/value/3/thumbnail/_type", - "videos/value/4/thumbnail/_type", - "videos/value/5/thumbnail/_type", - "videos/value/6/thumbnail/_type", - "videos/value/7/thumbnail/_type", - "videos/value/8/thumbnail/_type", - "videos/value/9/thumbnail/_type", + "$/videos/value/1/thumbnail/_type", + "$/videos/value/2/thumbnail/_type", + "$/videos/value/3/thumbnail/_type", + "$/videos/value/4/thumbnail/_type", + "$/videos/value/5/thumbnail/_type", + "$/videos/value/6/thumbnail/_type", + "$/videos/value/7/thumbnail/_type", + "$/videos/value/8/thumbnail/_type", + "$/videos/value/9/thumbnail/_type", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/WebSearch.json", @@ -42077,38 +42669,38 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.videos.value[0]._type", + "jsonPath": "$['videos']['value'][0]['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "videos/value/0/_type", + "path": "$/videos/value/0/_type", "position": Object { "column": 20, "line": 941, }, "similarJsonPaths": Array [ - "$.videos.value[1]._type", - "$.videos.value[2]._type", - "$.videos.value[3]._type", - "$.videos.value[4]._type", - "$.videos.value[5]._type", - "$.videos.value[6]._type", - "$.videos.value[7]._type", - "$.videos.value[8]._type", - "$.videos.value[9]._type", + "$['videos']['value'][1]['_type']", + "$['videos']['value'][2]['_type']", + "$['videos']['value'][3]['_type']", + "$['videos']['value'][4]['_type']", + "$['videos']['value'][5]['_type']", + "$['videos']['value'][6]['_type']", + "$['videos']['value'][7]['_type']", + "$['videos']['value'][8]['_type']", + "$['videos']['value'][9]['_type']", ], "similarPaths": Array [ - "videos/value/1/_type", - "videos/value/2/_type", - "videos/value/3/_type", - "videos/value/4/_type", - "videos/value/5/_type", - "videos/value/6/_type", - "videos/value/7/_type", - "videos/value/8/_type", - "videos/value/9/_type", + "$/videos/value/1/_type", + "$/videos/value/2/_type", + "$/videos/value/3/_type", + "$/videos/value/4/_type", + "$/videos/value/5/_type", + "$/videos/value/6/_type", + "$/videos/value/7/_type", + "$/videos/value/8/_type", + "$/videos/value/9/_type", ], "title": "#/definitions/VideoObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/WebSearch.json", @@ -42125,38 +42717,38 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.videos.value[0].duration", + "jsonPath": "$['videos']['value'][0]['duration']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Additional properties not allowed: duration", "params": Array [ "duration", ], - "path": "videos/value/0/duration", + "path": "$/videos/value/0/duration", "position": Object { "column": 20, "line": 941, }, "similarJsonPaths": Array [ - "$.videos.value[1].duration", - "$.videos.value[2].duration", - "$.videos.value[3].duration", - "$.videos.value[4].duration", - "$.videos.value[5].duration", - "$.videos.value[6].duration", - "$.videos.value[7].duration", - "$.videos.value[8].duration", - "$.videos.value[9].duration", + "$['videos']['value'][1]['duration']", + "$['videos']['value'][2]['duration']", + "$['videos']['value'][3]['duration']", + "$['videos']['value'][4]['duration']", + "$['videos']['value'][5]['duration']", + "$['videos']['value'][6]['duration']", + "$['videos']['value'][7]['duration']", + "$['videos']['value'][8]['duration']", + "$['videos']['value'][9]['duration']", ], "similarPaths": Array [ - "videos/value/1/duration", - "videos/value/2/duration", - "videos/value/3/duration", - "videos/value/4/duration", - "videos/value/5/duration", - "videos/value/6/duration", - "videos/value/7/duration", - "videos/value/8/duration", - "videos/value/9/duration", + "$/videos/value/1/duration", + "$/videos/value/2/duration", + "$/videos/value/3/duration", + "$/videos/value/4/duration", + "$/videos/value/5/duration", + "$/videos/value/6/duration", + "$/videos/value/7/duration", + "$/videos/value/8/duration", + "$/videos/value/9/duration", ], "title": "#/definitions/VideoObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/WebSearch.json", @@ -42173,38 +42765,38 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.videos.value[0].hostPageDisplayUrl", + "jsonPath": "$['videos']['value'][0]['hostPageDisplayUrl']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Additional properties not allowed: hostPageDisplayUrl", "params": Array [ "hostPageDisplayUrl", ], - "path": "videos/value/0/hostPageDisplayUrl", + "path": "$/videos/value/0/hostPageDisplayUrl", "position": Object { "column": 20, "line": 941, }, "similarJsonPaths": Array [ - "$.videos.value[1].hostPageDisplayUrl", - "$.videos.value[2].hostPageDisplayUrl", - "$.videos.value[3].hostPageDisplayUrl", - "$.videos.value[4].hostPageDisplayUrl", - "$.videos.value[5].hostPageDisplayUrl", - "$.videos.value[6].hostPageDisplayUrl", - "$.videos.value[7].hostPageDisplayUrl", - "$.videos.value[8].hostPageDisplayUrl", - "$.videos.value[9].hostPageDisplayUrl", + "$['videos']['value'][1]['hostPageDisplayUrl']", + "$['videos']['value'][2]['hostPageDisplayUrl']", + "$['videos']['value'][3]['hostPageDisplayUrl']", + "$['videos']['value'][4]['hostPageDisplayUrl']", + "$['videos']['value'][5]['hostPageDisplayUrl']", + "$['videos']['value'][6]['hostPageDisplayUrl']", + "$['videos']['value'][7]['hostPageDisplayUrl']", + "$['videos']['value'][8]['hostPageDisplayUrl']", + "$['videos']['value'][9]['hostPageDisplayUrl']", ], "similarPaths": Array [ - "videos/value/1/hostPageDisplayUrl", - "videos/value/2/hostPageDisplayUrl", - "videos/value/3/hostPageDisplayUrl", - "videos/value/4/hostPageDisplayUrl", - "videos/value/5/hostPageDisplayUrl", - "videos/value/6/hostPageDisplayUrl", - "videos/value/7/hostPageDisplayUrl", - "videos/value/8/hostPageDisplayUrl", - "videos/value/9/hostPageDisplayUrl", + "$/videos/value/1/hostPageDisplayUrl", + "$/videos/value/2/hostPageDisplayUrl", + "$/videos/value/3/hostPageDisplayUrl", + "$/videos/value/4/hostPageDisplayUrl", + "$/videos/value/5/hostPageDisplayUrl", + "$/videos/value/6/hostPageDisplayUrl", + "$/videos/value/7/hostPageDisplayUrl", + "$/videos/value/8/hostPageDisplayUrl", + "$/videos/value/9/hostPageDisplayUrl", ], "title": "#/definitions/VideoObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/WebSearch.json", @@ -42221,38 +42813,38 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.videos.value[0].encodingFormat", + "jsonPath": "$['videos']['value'][0]['encodingFormat']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Additional properties not allowed: encodingFormat", "params": Array [ "encodingFormat", ], - "path": "videos/value/0/encodingFormat", + "path": "$/videos/value/0/encodingFormat", "position": Object { "column": 20, "line": 941, }, "similarJsonPaths": Array [ - "$.videos.value[1].encodingFormat", - "$.videos.value[2].encodingFormat", - "$.videos.value[3].encodingFormat", - "$.videos.value[4].encodingFormat", - "$.videos.value[5].encodingFormat", - "$.videos.value[6].encodingFormat", - "$.videos.value[7].encodingFormat", - "$.videos.value[8].encodingFormat", - "$.videos.value[9].encodingFormat", + "$['videos']['value'][1]['encodingFormat']", + "$['videos']['value'][2]['encodingFormat']", + "$['videos']['value'][3]['encodingFormat']", + "$['videos']['value'][4]['encodingFormat']", + "$['videos']['value'][5]['encodingFormat']", + "$['videos']['value'][6]['encodingFormat']", + "$['videos']['value'][7]['encodingFormat']", + "$['videos']['value'][8]['encodingFormat']", + "$['videos']['value'][9]['encodingFormat']", ], "similarPaths": Array [ - "videos/value/1/encodingFormat", - "videos/value/2/encodingFormat", - "videos/value/3/encodingFormat", - "videos/value/4/encodingFormat", - "videos/value/5/encodingFormat", - "videos/value/6/encodingFormat", - "videos/value/7/encodingFormat", - "videos/value/8/encodingFormat", - "videos/value/9/encodingFormat", + "$/videos/value/1/encodingFormat", + "$/videos/value/2/encodingFormat", + "$/videos/value/3/encodingFormat", + "$/videos/value/4/encodingFormat", + "$/videos/value/5/encodingFormat", + "$/videos/value/6/encodingFormat", + "$/videos/value/7/encodingFormat", + "$/videos/value/8/encodingFormat", + "$/videos/value/9/encodingFormat", ], "title": "#/definitions/VideoObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/WebSearch.json", @@ -42269,38 +42861,38 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.videos.value[0].publisher", + "jsonPath": "$['videos']['value'][0]['publisher']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Additional properties not allowed: publisher", "params": Array [ "publisher", ], - "path": "videos/value/0/publisher", + "path": "$/videos/value/0/publisher", "position": Object { "column": 20, "line": 941, }, "similarJsonPaths": Array [ - "$.videos.value[1].publisher", - "$.videos.value[2].publisher", - "$.videos.value[3].publisher", - "$.videos.value[4].publisher", - "$.videos.value[5].publisher", - "$.videos.value[6].publisher", - "$.videos.value[7].publisher", - "$.videos.value[8].publisher", - "$.videos.value[9].publisher", + "$['videos']['value'][1]['publisher']", + "$['videos']['value'][2]['publisher']", + "$['videos']['value'][3]['publisher']", + "$['videos']['value'][4]['publisher']", + "$['videos']['value'][5]['publisher']", + "$['videos']['value'][6]['publisher']", + "$['videos']['value'][7]['publisher']", + "$['videos']['value'][8]['publisher']", + "$['videos']['value'][9]['publisher']", ], "similarPaths": Array [ - "videos/value/1/publisher", - "videos/value/2/publisher", - "videos/value/3/publisher", - "videos/value/4/publisher", - "videos/value/5/publisher", - "videos/value/6/publisher", - "videos/value/7/publisher", - "videos/value/8/publisher", - "videos/value/9/publisher", + "$/videos/value/1/publisher", + "$/videos/value/2/publisher", + "$/videos/value/3/publisher", + "$/videos/value/4/publisher", + "$/videos/value/5/publisher", + "$/videos/value/6/publisher", + "$/videos/value/7/publisher", + "$/videos/value/8/publisher", + "$/videos/value/9/publisher", ], "title": "#/definitions/VideoObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/WebSearch.json", @@ -42317,38 +42909,38 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video object that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.videos.value[0].datePublished", + "jsonPath": "$['videos']['value'][0]['datePublished']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Additional properties not allowed: datePublished", "params": Array [ "datePublished", ], - "path": "videos/value/0/datePublished", + "path": "$/videos/value/0/datePublished", "position": Object { "column": 20, "line": 941, }, "similarJsonPaths": Array [ - "$.videos.value[1].datePublished", - "$.videos.value[2].datePublished", - "$.videos.value[3].datePublished", - "$.videos.value[4].datePublished", - "$.videos.value[5].datePublished", - "$.videos.value[6].datePublished", - "$.videos.value[7].datePublished", - "$.videos.value[8].datePublished", - "$.videos.value[9].datePublished", + "$['videos']['value'][1]['datePublished']", + "$['videos']['value'][2]['datePublished']", + "$['videos']['value'][3]['datePublished']", + "$['videos']['value'][4]['datePublished']", + "$['videos']['value'][5]['datePublished']", + "$['videos']['value'][6]['datePublished']", + "$['videos']['value'][7]['datePublished']", + "$['videos']['value'][8]['datePublished']", + "$['videos']['value'][9]['datePublished']", ], "similarPaths": Array [ - "videos/value/1/datePublished", - "videos/value/2/datePublished", - "videos/value/3/datePublished", - "videos/value/4/datePublished", - "videos/value/5/datePublished", - "videos/value/6/datePublished", - "videos/value/7/datePublished", - "videos/value/8/datePublished", - "videos/value/9/datePublished", + "$/videos/value/1/datePublished", + "$/videos/value/2/datePublished", + "$/videos/value/3/datePublished", + "$/videos/value/4/datePublished", + "$/videos/value/5/datePublished", + "$/videos/value/6/datePublished", + "$/videos/value/7/datePublished", + "$/videos/value/8/datePublished", + "$/videos/value/9/datePublished", ], "title": "#/definitions/VideoObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/WebSearch.json", @@ -42365,7 +42957,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video answer.", "directives": Object {}, - "jsonPath": "$.videos.scenario", + "jsonPath": "$['videos']['scenario']", "jsonPosition": Object { "column": 19, "line": 699, @@ -42375,7 +42967,7 @@ Array [ "params": Array [ "scenario", ], - "path": "videos/scenario", + "path": "$/videos/scenario", "position": Object { "column": 15, "line": 617, @@ -42395,7 +42987,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a video answer.", "directives": Object {}, - "jsonPath": "$.videos.readLink", + "jsonPath": "$['videos']['readLink']", "jsonPosition": Object { "column": 19, "line": 699, @@ -42405,7 +42997,7 @@ Array [ "params": Array [ "readLink", ], - "path": "videos/readLink", + "path": "$/videos/readLink", "position": Object { "column": 15, "line": 617, @@ -42425,7 +43017,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a video answer.", "directives": Object {}, - "jsonPath": "$.videos._type", + "jsonPath": "$['videos']['_type']", "jsonPosition": Object { "column": 19, "line": 699, @@ -42435,7 +43027,7 @@ Array [ "params": Array [ "_type", ], - "path": "videos/_type", + "path": "$/videos/_type", "position": Object { "column": 15, "line": 617, @@ -42455,7 +43047,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a list of related queries made by others.", "directives": Object {}, - "jsonPath": "$.relatedSearches._type", + "jsonPath": "$['relatedSearches']['_type']", "jsonPosition": Object { "column": 28, "line": 654, @@ -42465,7 +43057,7 @@ Array [ "params": Array [ "_type", ], - "path": "relatedSearches/_type", + "path": "$/relatedSearches/_type", "position": Object { "column": 43, "line": 548, @@ -42488,63 +43080,63 @@ Array [ Object { "code": "ENUM_MISMATCH", "directives": Object {}, - "jsonPath": "$.news.value[0].provider.provider[0]._type", + "jsonPath": "$['news']['value'][0]['provider']['provider'][0]['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "No enum match for: Organization", "params": Array [ "Organization", ], - "path": "news/value/0/provider/provider/0/_type", + "path": "$/news/value/0/provider/provider/0/_type", "position": Object { "column": 18, "line": 1033, }, "similarJsonPaths": Array [ - "$.news.value[0].provider.provider[0]._type", - "$.news.value[0].provider.provider[0]._type", - "$.news.value[0].provider.provider[0]._type", - "$.news.value[0].provider.provider[0]._type", - "$.news.value[0].provider.provider[0]._type", - "$.news.value[0].provider.provider[0]._type", - "$.news.value[0].provider.provider[0]._type", - "$.news.value[0].provider.provider[0]._type", - "$.news.value[0].provider.provider[0]._type", + "$['news']['value'][0]['provider']['provider'][0]['_type']", + "$['news']['value'][0]['provider']['provider'][0]['_type']", + "$['news']['value'][0]['provider']['provider'][0]['_type']", + "$['news']['value'][0]['provider']['provider'][0]['_type']", + "$['news']['value'][0]['provider']['provider'][0]['_type']", + "$['news']['value'][0]['provider']['provider'][0]['_type']", + "$['news']['value'][0]['provider']['provider'][0]['_type']", + "$['news']['value'][0]['provider']['provider'][0]['_type']", + "$['news']['value'][0]['provider']['provider'][0]['_type']", ], "similarPaths": Array [ - "news/value/0/provider/provider/0/_type", - "news/value/0/provider/provider/0/_type", - "news/value/0/provider/provider/0/_type", - "news/value/0/provider/provider/0/_type", - "news/value/0/provider/provider/0/_type", - "news/value/0/provider/provider/0/_type", - "news/value/0/provider/provider/0/_type", - "news/value/0/provider/provider/0/_type", - "news/value/0/provider/provider/0/_type", + "$/news/value/0/provider/provider/0/_type", + "$/news/value/0/provider/provider/0/_type", + "$/news/value/0/provider/provider/0/_type", + "$/news/value/0/provider/provider/0/_type", + "$/news/value/0/provider/provider/0/_type", + "$/news/value/0/provider/provider/0/_type", + "$/news/value/0/provider/provider/0/_type", + "$/news/value/0/provider/provider/0/_type", + "$/news/value/0/provider/provider/0/_type", ], "title": "#/definitions/ResponseBase/properties/_type", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/WebSearch.json", }, ], - "jsonPath": "$.news.value[0].provider.provider[0]", + "jsonPath": "$['news']['value'][0]['provider']['provider'][0]", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Data does not match any schemas from 'oneOf'", "params": Array [], - "path": "news/value/0/provider/provider/0", + "path": "$/news/value/0/provider/provider/0", "position": Object { "column": 20, "line": 1123, }, "similarJsonPaths": Array [ - "$.news.value[1].provider[0]", - "$.news.value[2].provider[0]", - "$.news.value[3].provider[0]", - "$.news.value[4].provider[0]", + "$['news']['value'][1]['provider'][0]", + "$['news']['value'][2]['provider'][0]", + "$['news']['value'][3]['provider'][0]", + "$['news']['value'][4]['provider'][0]", ], "similarPaths": Array [ - "news/value/1/provider/0", - "news/value/2/provider/0", - "news/value/3/provider/0", - "news/value/4/provider/0", + "$/news/value/1/provider/0", + "$/news/value/2/provider/0", + "$/news/value/3/provider/0", + "$/news/value/4/provider/0", ], "title": "#/definitions/CreativeWork/properties/provider/items", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/WebSearch.json", @@ -42561,28 +43153,28 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.news.value[0].image.thumbnail._type", + "jsonPath": "$['news']['value'][0]['image']['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "news/value/0/image/thumbnail/_type", + "path": "$/news/value/0/image/thumbnail/_type", "position": Object { "column": 20, "line": 814, }, "similarJsonPaths": Array [ - "$.news.value[1].image.thumbnail._type", - "$.news.value[2].image.thumbnail._type", - "$.news.value[3].image.thumbnail._type", - "$.news.value[4].image.thumbnail._type", + "$['news']['value'][1]['image']['thumbnail']['_type']", + "$['news']['value'][2]['image']['thumbnail']['_type']", + "$['news']['value'][3]['image']['thumbnail']['_type']", + "$['news']['value'][4]['image']['thumbnail']['_type']", ], "similarPaths": Array [ - "news/value/1/image/thumbnail/_type", - "news/value/2/image/thumbnail/_type", - "news/value/3/image/thumbnail/_type", - "news/value/4/image/thumbnail/_type", + "$/news/value/1/image/thumbnail/_type", + "$/news/value/2/image/thumbnail/_type", + "$/news/value/3/image/thumbnail/_type", + "$/news/value/4/image/thumbnail/_type", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/WebSearch.json", @@ -42599,28 +43191,28 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.news.value[0].image._type", + "jsonPath": "$['news']['value'][0]['image']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "news/value/0/image/_type", + "path": "$/news/value/0/image/_type", "position": Object { "column": 20, "line": 814, }, "similarJsonPaths": Array [ - "$.news.value[1].image._type", - "$.news.value[2].image._type", - "$.news.value[3].image._type", - "$.news.value[4].image._type", + "$['news']['value'][1]['image']['_type']", + "$['news']['value'][2]['image']['_type']", + "$['news']['value'][3]['image']['_type']", + "$['news']['value'][4]['image']['_type']", ], "similarPaths": Array [ - "news/value/1/image/_type", - "news/value/2/image/_type", - "news/value/3/image/_type", - "news/value/4/image/_type", + "$/news/value/1/image/_type", + "$/news/value/2/image/_type", + "$/news/value/3/image/_type", + "$/news/value/4/image/_type", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/WebSearch.json", @@ -42637,28 +43229,28 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a news article.", "directives": Object {}, - "jsonPath": "$.news.value[0]._type", + "jsonPath": "$['news']['value'][0]['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "news/value/0/_type", + "path": "$/news/value/0/_type", "position": Object { "column": 20, "line": 907, }, "similarJsonPaths": Array [ - "$.news.value[1]._type", - "$.news.value[2]._type", - "$.news.value[3]._type", - "$.news.value[4]._type", + "$['news']['value'][1]['_type']", + "$['news']['value'][2]['_type']", + "$['news']['value'][3]['_type']", + "$['news']['value'][4]['_type']", ], "similarPaths": Array [ - "news/value/1/_type", - "news/value/2/_type", - "news/value/3/_type", - "news/value/4/_type", + "$/news/value/1/_type", + "$/news/value/2/_type", + "$/news/value/3/_type", + "$/news/value/4/_type", ], "title": "#/definitions/NewsArticle", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/WebSearch.json", @@ -42675,28 +43267,28 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a news article.", "directives": Object {}, - "jsonPath": "$.news.value[0].clusteredArticles", + "jsonPath": "$['news']['value'][0]['clusteredArticles']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Additional properties not allowed: clusteredArticles", "params": Array [ "clusteredArticles", ], - "path": "news/value/0/clusteredArticles", + "path": "$/news/value/0/clusteredArticles", "position": Object { "column": 20, "line": 907, }, "similarJsonPaths": Array [ - "$.news.value[1].clusteredArticles", - "$.news.value[2].clusteredArticles", - "$.news.value[3].clusteredArticles", - "$.news.value[4].clusteredArticles", + "$['news']['value'][1]['clusteredArticles']", + "$['news']['value'][2]['clusteredArticles']", + "$['news']['value'][3]['clusteredArticles']", + "$['news']['value'][4]['clusteredArticles']", ], "similarPaths": Array [ - "news/value/1/clusteredArticles", - "news/value/2/clusteredArticles", - "news/value/3/clusteredArticles", - "news/value/4/clusteredArticles", + "$/news/value/1/clusteredArticles", + "$/news/value/2/clusteredArticles", + "$/news/value/3/clusteredArticles", + "$/news/value/4/clusteredArticles", ], "title": "#/definitions/NewsArticle", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/WebSearch.json", @@ -42713,28 +43305,28 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a news article.", "directives": Object {}, - "jsonPath": "$.news.value[0].category", + "jsonPath": "$['news']['value'][0]['category']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Additional properties not allowed: category", "params": Array [ "category", ], - "path": "news/value/0/category", + "path": "$/news/value/0/category", "position": Object { "column": 20, "line": 907, }, "similarJsonPaths": Array [ - "$.news.value[1].category", - "$.news.value[2].category", - "$.news.value[3].category", - "$.news.value[4].category", + "$['news']['value'][1]['category']", + "$['news']['value'][2]['category']", + "$['news']['value'][3]['category']", + "$['news']['value'][4]['category']", ], "similarPaths": Array [ - "news/value/1/category", - "news/value/2/category", - "news/value/3/category", - "news/value/4/category", + "$/news/value/1/category", + "$/news/value/2/category", + "$/news/value/3/category", + "$/news/value/4/category", ], "title": "#/definitions/NewsArticle", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/WebSearch.json", @@ -42751,28 +43343,28 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a news article.", "directives": Object {}, - "jsonPath": "$.news.value[0].video", + "jsonPath": "$['news']['value'][0]['video']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Additional properties not allowed: video", "params": Array [ "video", ], - "path": "news/value/0/video", + "path": "$/news/value/0/video", "position": Object { "column": 20, "line": 907, }, "similarJsonPaths": Array [ - "$.news.value[1].video", - "$.news.value[2].video", - "$.news.value[3].video", - "$.news.value[4].video", + "$['news']['value'][1]['video']", + "$['news']['value'][2]['video']", + "$['news']['value'][3]['video']", + "$['news']['value'][4]['video']", ], "similarPaths": Array [ - "news/value/1/video", - "news/value/2/video", - "news/value/3/video", - "news/value/4/video", + "$/news/value/1/video", + "$/news/value/2/video", + "$/news/value/3/video", + "$/news/value/4/video", ], "title": "#/definitions/NewsArticle", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/WebSearch.json", @@ -42789,28 +43381,28 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a news article.", "directives": Object {}, - "jsonPath": "$.news.value[0].datePublished", + "jsonPath": "$['news']['value'][0]['datePublished']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Additional properties not allowed: datePublished", "params": Array [ "datePublished", ], - "path": "news/value/0/datePublished", + "path": "$/news/value/0/datePublished", "position": Object { "column": 20, "line": 907, }, "similarJsonPaths": Array [ - "$.news.value[1].datePublished", - "$.news.value[2].datePublished", - "$.news.value[3].datePublished", - "$.news.value[4].datePublished", + "$['news']['value'][1]['datePublished']", + "$['news']['value'][2]['datePublished']", + "$['news']['value'][3]['datePublished']", + "$['news']['value'][4]['datePublished']", ], "similarPaths": Array [ - "news/value/1/datePublished", - "news/value/2/datePublished", - "news/value/3/datePublished", - "news/value/4/datePublished", + "$/news/value/1/datePublished", + "$/news/value/2/datePublished", + "$/news/value/3/datePublished", + "$/news/value/4/datePublished", ], "title": "#/definitions/NewsArticle", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/WebSearch.json", @@ -42827,28 +43419,28 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a news article.", "directives": Object {}, - "jsonPath": "$.news.value[0].about", + "jsonPath": "$['news']['value'][0]['about']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Additional properties not allowed: about", "params": Array [ "about", ], - "path": "news/value/0/about", + "path": "$/news/value/0/about", "position": Object { "column": 20, "line": 907, }, "similarJsonPaths": Array [ - "$.news.value[1].about", - "$.news.value[2].about", - "$.news.value[3].about", - "$.news.value[4].about", + "$['news']['value'][1]['about']", + "$['news']['value'][2]['about']", + "$['news']['value'][3]['about']", + "$['news']['value'][4]['about']", ], "similarPaths": Array [ - "news/value/1/about", - "news/value/2/about", - "news/value/3/about", - "news/value/4/about", + "$/news/value/1/about", + "$/news/value/2/about", + "$/news/value/3/about", + "$/news/value/4/about", ], "title": "#/definitions/NewsArticle", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/WebSearch.json", @@ -42865,7 +43457,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a news answer.", "directives": Object {}, - "jsonPath": "$.news.readLink", + "jsonPath": "$['news']['readLink']", "jsonPosition": Object { "column": 17, "line": 462, @@ -42875,7 +43467,7 @@ Array [ "params": Array [ "readLink", ], - "path": "news/readLink", + "path": "$/news/readLink", "position": Object { "column": 13, "line": 502, @@ -42895,7 +43487,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a news answer.", "directives": Object {}, - "jsonPath": "$.news._type", + "jsonPath": "$['news']['_type']", "jsonPosition": Object { "column": 17, "line": 462, @@ -42905,7 +43497,7 @@ Array [ "params": Array [ "_type", ], - "path": "news/_type", + "path": "$/news/_type", "position": Object { "column": 13, "line": 502, @@ -42925,54 +43517,54 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.images.value[0].thumbnail._type", + "jsonPath": "$['images']['value'][0]['thumbnail']['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "images/value/0/thumbnail/_type", + "path": "$/images/value/0/thumbnail/_type", "position": Object { "column": 20, "line": 814, }, "similarJsonPaths": Array [ - "$.images.value[1].thumbnail._type", - "$.images.value[2].thumbnail._type", - "$.images.value[3].thumbnail._type", - "$.images.value[4].thumbnail._type", - "$.images.value[5].thumbnail._type", - "$.images.value[6].thumbnail._type", - "$.images.value[7].thumbnail._type", - "$.images.value[8].thumbnail._type", - "$.images.value[9].thumbnail._type", - "$.images.value[10].thumbnail._type", - "$.images.value[11].thumbnail._type", - "$.images.value[12].thumbnail._type", - "$.images.value[13].thumbnail._type", - "$.images.value[14].thumbnail._type", - "$.images.value[15].thumbnail._type", - "$.images.value[16].thumbnail._type", - "$.images.value[17].thumbnail._type", + "$['images']['value'][1]['thumbnail']['_type']", + "$['images']['value'][2]['thumbnail']['_type']", + "$['images']['value'][3]['thumbnail']['_type']", + "$['images']['value'][4]['thumbnail']['_type']", + "$['images']['value'][5]['thumbnail']['_type']", + "$['images']['value'][6]['thumbnail']['_type']", + "$['images']['value'][7]['thumbnail']['_type']", + "$['images']['value'][8]['thumbnail']['_type']", + "$['images']['value'][9]['thumbnail']['_type']", + "$['images']['value'][10]['thumbnail']['_type']", + "$['images']['value'][11]['thumbnail']['_type']", + "$['images']['value'][12]['thumbnail']['_type']", + "$['images']['value'][13]['thumbnail']['_type']", + "$['images']['value'][14]['thumbnail']['_type']", + "$['images']['value'][15]['thumbnail']['_type']", + "$['images']['value'][16]['thumbnail']['_type']", + "$['images']['value'][17]['thumbnail']['_type']", ], "similarPaths": Array [ - "images/value/1/thumbnail/_type", - "images/value/2/thumbnail/_type", - "images/value/3/thumbnail/_type", - "images/value/4/thumbnail/_type", - "images/value/5/thumbnail/_type", - "images/value/6/thumbnail/_type", - "images/value/7/thumbnail/_type", - "images/value/8/thumbnail/_type", - "images/value/9/thumbnail/_type", - "images/value/10/thumbnail/_type", - "images/value/11/thumbnail/_type", - "images/value/12/thumbnail/_type", - "images/value/13/thumbnail/_type", - "images/value/14/thumbnail/_type", - "images/value/15/thumbnail/_type", - "images/value/16/thumbnail/_type", - "images/value/17/thumbnail/_type", + "$/images/value/1/thumbnail/_type", + "$/images/value/2/thumbnail/_type", + "$/images/value/3/thumbnail/_type", + "$/images/value/4/thumbnail/_type", + "$/images/value/5/thumbnail/_type", + "$/images/value/6/thumbnail/_type", + "$/images/value/7/thumbnail/_type", + "$/images/value/8/thumbnail/_type", + "$/images/value/9/thumbnail/_type", + "$/images/value/10/thumbnail/_type", + "$/images/value/11/thumbnail/_type", + "$/images/value/12/thumbnail/_type", + "$/images/value/13/thumbnail/_type", + "$/images/value/14/thumbnail/_type", + "$/images/value/15/thumbnail/_type", + "$/images/value/16/thumbnail/_type", + "$/images/value/17/thumbnail/_type", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/WebSearch.json", @@ -42989,54 +43581,54 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.images.value[0]._type", + "jsonPath": "$['images']['value'][0]['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "images/value/0/_type", + "path": "$/images/value/0/_type", "position": Object { "column": 20, "line": 814, }, "similarJsonPaths": Array [ - "$.images.value[1]._type", - "$.images.value[2]._type", - "$.images.value[3]._type", - "$.images.value[4]._type", - "$.images.value[5]._type", - "$.images.value[6]._type", - "$.images.value[7]._type", - "$.images.value[8]._type", - "$.images.value[9]._type", - "$.images.value[10]._type", - "$.images.value[11]._type", - "$.images.value[12]._type", - "$.images.value[13]._type", - "$.images.value[14]._type", - "$.images.value[15]._type", - "$.images.value[16]._type", - "$.images.value[17]._type", + "$['images']['value'][1]['_type']", + "$['images']['value'][2]['_type']", + "$['images']['value'][3]['_type']", + "$['images']['value'][4]['_type']", + "$['images']['value'][5]['_type']", + "$['images']['value'][6]['_type']", + "$['images']['value'][7]['_type']", + "$['images']['value'][8]['_type']", + "$['images']['value'][9]['_type']", + "$['images']['value'][10]['_type']", + "$['images']['value'][11]['_type']", + "$['images']['value'][12]['_type']", + "$['images']['value'][13]['_type']", + "$['images']['value'][14]['_type']", + "$['images']['value'][15]['_type']", + "$['images']['value'][16]['_type']", + "$['images']['value'][17]['_type']", ], "similarPaths": Array [ - "images/value/1/_type", - "images/value/2/_type", - "images/value/3/_type", - "images/value/4/_type", - "images/value/5/_type", - "images/value/6/_type", - "images/value/7/_type", - "images/value/8/_type", - "images/value/9/_type", - "images/value/10/_type", - "images/value/11/_type", - "images/value/12/_type", - "images/value/13/_type", - "images/value/14/_type", - "images/value/15/_type", - "images/value/16/_type", - "images/value/17/_type", + "$/images/value/1/_type", + "$/images/value/2/_type", + "$/images/value/3/_type", + "$/images/value/4/_type", + "$/images/value/5/_type", + "$/images/value/6/_type", + "$/images/value/7/_type", + "$/images/value/8/_type", + "$/images/value/9/_type", + "$/images/value/10/_type", + "$/images/value/11/_type", + "$/images/value/12/_type", + "$/images/value/13/_type", + "$/images/value/14/_type", + "$/images/value/15/_type", + "$/images/value/16/_type", + "$/images/value/17/_type", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/WebSearch.json", @@ -43053,54 +43645,54 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.images.value[0].encodingFormat", + "jsonPath": "$['images']['value'][0]['encodingFormat']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Additional properties not allowed: encodingFormat", "params": Array [ "encodingFormat", ], - "path": "images/value/0/encodingFormat", + "path": "$/images/value/0/encodingFormat", "position": Object { "column": 20, "line": 814, }, "similarJsonPaths": Array [ - "$.images.value[1].encodingFormat", - "$.images.value[2].encodingFormat", - "$.images.value[3].encodingFormat", - "$.images.value[4].encodingFormat", - "$.images.value[5].encodingFormat", - "$.images.value[6].encodingFormat", - "$.images.value[7].encodingFormat", - "$.images.value[8].encodingFormat", - "$.images.value[9].encodingFormat", - "$.images.value[10].encodingFormat", - "$.images.value[11].encodingFormat", - "$.images.value[12].encodingFormat", - "$.images.value[13].encodingFormat", - "$.images.value[14].encodingFormat", - "$.images.value[15].encodingFormat", - "$.images.value[16].encodingFormat", - "$.images.value[17].encodingFormat", + "$['images']['value'][1]['encodingFormat']", + "$['images']['value'][2]['encodingFormat']", + "$['images']['value'][3]['encodingFormat']", + "$['images']['value'][4]['encodingFormat']", + "$['images']['value'][5]['encodingFormat']", + "$['images']['value'][6]['encodingFormat']", + "$['images']['value'][7]['encodingFormat']", + "$['images']['value'][8]['encodingFormat']", + "$['images']['value'][9]['encodingFormat']", + "$['images']['value'][10]['encodingFormat']", + "$['images']['value'][11]['encodingFormat']", + "$['images']['value'][12]['encodingFormat']", + "$['images']['value'][13]['encodingFormat']", + "$['images']['value'][14]['encodingFormat']", + "$['images']['value'][15]['encodingFormat']", + "$['images']['value'][16]['encodingFormat']", + "$['images']['value'][17]['encodingFormat']", ], "similarPaths": Array [ - "images/value/1/encodingFormat", - "images/value/2/encodingFormat", - "images/value/3/encodingFormat", - "images/value/4/encodingFormat", - "images/value/5/encodingFormat", - "images/value/6/encodingFormat", - "images/value/7/encodingFormat", - "images/value/8/encodingFormat", - "images/value/9/encodingFormat", - "images/value/10/encodingFormat", - "images/value/11/encodingFormat", - "images/value/12/encodingFormat", - "images/value/13/encodingFormat", - "images/value/14/encodingFormat", - "images/value/15/encodingFormat", - "images/value/16/encodingFormat", - "images/value/17/encodingFormat", + "$/images/value/1/encodingFormat", + "$/images/value/2/encodingFormat", + "$/images/value/3/encodingFormat", + "$/images/value/4/encodingFormat", + "$/images/value/5/encodingFormat", + "$/images/value/6/encodingFormat", + "$/images/value/7/encodingFormat", + "$/images/value/8/encodingFormat", + "$/images/value/9/encodingFormat", + "$/images/value/10/encodingFormat", + "$/images/value/11/encodingFormat", + "$/images/value/12/encodingFormat", + "$/images/value/13/encodingFormat", + "$/images/value/14/encodingFormat", + "$/images/value/15/encodingFormat", + "$/images/value/16/encodingFormat", + "$/images/value/17/encodingFormat", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/WebSearch.json", @@ -43117,54 +43709,54 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.images.value[0].hostPageDisplayUrl", + "jsonPath": "$['images']['value'][0]['hostPageDisplayUrl']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Additional properties not allowed: hostPageDisplayUrl", "params": Array [ "hostPageDisplayUrl", ], - "path": "images/value/0/hostPageDisplayUrl", + "path": "$/images/value/0/hostPageDisplayUrl", "position": Object { "column": 20, "line": 814, }, "similarJsonPaths": Array [ - "$.images.value[1].hostPageDisplayUrl", - "$.images.value[2].hostPageDisplayUrl", - "$.images.value[3].hostPageDisplayUrl", - "$.images.value[4].hostPageDisplayUrl", - "$.images.value[5].hostPageDisplayUrl", - "$.images.value[6].hostPageDisplayUrl", - "$.images.value[7].hostPageDisplayUrl", - "$.images.value[8].hostPageDisplayUrl", - "$.images.value[9].hostPageDisplayUrl", - "$.images.value[10].hostPageDisplayUrl", - "$.images.value[11].hostPageDisplayUrl", - "$.images.value[12].hostPageDisplayUrl", - "$.images.value[13].hostPageDisplayUrl", - "$.images.value[14].hostPageDisplayUrl", - "$.images.value[15].hostPageDisplayUrl", - "$.images.value[16].hostPageDisplayUrl", - "$.images.value[17].hostPageDisplayUrl", + "$['images']['value'][1]['hostPageDisplayUrl']", + "$['images']['value'][2]['hostPageDisplayUrl']", + "$['images']['value'][3]['hostPageDisplayUrl']", + "$['images']['value'][4]['hostPageDisplayUrl']", + "$['images']['value'][5]['hostPageDisplayUrl']", + "$['images']['value'][6]['hostPageDisplayUrl']", + "$['images']['value'][7]['hostPageDisplayUrl']", + "$['images']['value'][8]['hostPageDisplayUrl']", + "$['images']['value'][9]['hostPageDisplayUrl']", + "$['images']['value'][10]['hostPageDisplayUrl']", + "$['images']['value'][11]['hostPageDisplayUrl']", + "$['images']['value'][12]['hostPageDisplayUrl']", + "$['images']['value'][13]['hostPageDisplayUrl']", + "$['images']['value'][14]['hostPageDisplayUrl']", + "$['images']['value'][15]['hostPageDisplayUrl']", + "$['images']['value'][16]['hostPageDisplayUrl']", + "$['images']['value'][17]['hostPageDisplayUrl']", ], "similarPaths": Array [ - "images/value/1/hostPageDisplayUrl", - "images/value/2/hostPageDisplayUrl", - "images/value/3/hostPageDisplayUrl", - "images/value/4/hostPageDisplayUrl", - "images/value/5/hostPageDisplayUrl", - "images/value/6/hostPageDisplayUrl", - "images/value/7/hostPageDisplayUrl", - "images/value/8/hostPageDisplayUrl", - "images/value/9/hostPageDisplayUrl", - "images/value/10/hostPageDisplayUrl", - "images/value/11/hostPageDisplayUrl", - "images/value/12/hostPageDisplayUrl", - "images/value/13/hostPageDisplayUrl", - "images/value/14/hostPageDisplayUrl", - "images/value/15/hostPageDisplayUrl", - "images/value/16/hostPageDisplayUrl", - "images/value/17/hostPageDisplayUrl", + "$/images/value/1/hostPageDisplayUrl", + "$/images/value/2/hostPageDisplayUrl", + "$/images/value/3/hostPageDisplayUrl", + "$/images/value/4/hostPageDisplayUrl", + "$/images/value/5/hostPageDisplayUrl", + "$/images/value/6/hostPageDisplayUrl", + "$/images/value/7/hostPageDisplayUrl", + "$/images/value/8/hostPageDisplayUrl", + "$/images/value/9/hostPageDisplayUrl", + "$/images/value/10/hostPageDisplayUrl", + "$/images/value/11/hostPageDisplayUrl", + "$/images/value/12/hostPageDisplayUrl", + "$/images/value/13/hostPageDisplayUrl", + "$/images/value/14/hostPageDisplayUrl", + "$/images/value/15/hostPageDisplayUrl", + "$/images/value/16/hostPageDisplayUrl", + "$/images/value/17/hostPageDisplayUrl", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/WebSearch.json", @@ -43181,54 +43773,54 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.images.value[0].contentSize", + "jsonPath": "$['images']['value'][0]['contentSize']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Additional properties not allowed: contentSize", "params": Array [ "contentSize", ], - "path": "images/value/0/contentSize", + "path": "$/images/value/0/contentSize", "position": Object { "column": 20, "line": 814, }, "similarJsonPaths": Array [ - "$.images.value[1].contentSize", - "$.images.value[2].contentSize", - "$.images.value[3].contentSize", - "$.images.value[4].contentSize", - "$.images.value[5].contentSize", - "$.images.value[6].contentSize", - "$.images.value[7].contentSize", - "$.images.value[8].contentSize", - "$.images.value[9].contentSize", - "$.images.value[10].contentSize", - "$.images.value[11].contentSize", - "$.images.value[12].contentSize", - "$.images.value[13].contentSize", - "$.images.value[14].contentSize", - "$.images.value[15].contentSize", - "$.images.value[16].contentSize", - "$.images.value[17].contentSize", + "$['images']['value'][1]['contentSize']", + "$['images']['value'][2]['contentSize']", + "$['images']['value'][3]['contentSize']", + "$['images']['value'][4]['contentSize']", + "$['images']['value'][5]['contentSize']", + "$['images']['value'][6]['contentSize']", + "$['images']['value'][7]['contentSize']", + "$['images']['value'][8]['contentSize']", + "$['images']['value'][9]['contentSize']", + "$['images']['value'][10]['contentSize']", + "$['images']['value'][11]['contentSize']", + "$['images']['value'][12]['contentSize']", + "$['images']['value'][13]['contentSize']", + "$['images']['value'][14]['contentSize']", + "$['images']['value'][15]['contentSize']", + "$['images']['value'][16]['contentSize']", + "$['images']['value'][17]['contentSize']", ], "similarPaths": Array [ - "images/value/1/contentSize", - "images/value/2/contentSize", - "images/value/3/contentSize", - "images/value/4/contentSize", - "images/value/5/contentSize", - "images/value/6/contentSize", - "images/value/7/contentSize", - "images/value/8/contentSize", - "images/value/9/contentSize", - "images/value/10/contentSize", - "images/value/11/contentSize", - "images/value/12/contentSize", - "images/value/13/contentSize", - "images/value/14/contentSize", - "images/value/15/contentSize", - "images/value/16/contentSize", - "images/value/17/contentSize", + "$/images/value/1/contentSize", + "$/images/value/2/contentSize", + "$/images/value/3/contentSize", + "$/images/value/4/contentSize", + "$/images/value/5/contentSize", + "$/images/value/6/contentSize", + "$/images/value/7/contentSize", + "$/images/value/8/contentSize", + "$/images/value/9/contentSize", + "$/images/value/10/contentSize", + "$/images/value/11/contentSize", + "$/images/value/12/contentSize", + "$/images/value/13/contentSize", + "$/images/value/14/contentSize", + "$/images/value/15/contentSize", + "$/images/value/16/contentSize", + "$/images/value/17/contentSize", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/WebSearch.json", @@ -43245,54 +43837,54 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image", "directives": Object {}, - "jsonPath": "$.images.value[0].datePublished", + "jsonPath": "$['images']['value'][0]['datePublished']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Additional properties not allowed: datePublished", "params": Array [ "datePublished", ], - "path": "images/value/0/datePublished", + "path": "$/images/value/0/datePublished", "position": Object { "column": 20, "line": 814, }, "similarJsonPaths": Array [ - "$.images.value[1].datePublished", - "$.images.value[2].datePublished", - "$.images.value[3].datePublished", - "$.images.value[4].datePublished", - "$.images.value[5].datePublished", - "$.images.value[6].datePublished", - "$.images.value[7].datePublished", - "$.images.value[8].datePublished", - "$.images.value[9].datePublished", - "$.images.value[10].datePublished", - "$.images.value[11].datePublished", - "$.images.value[12].datePublished", - "$.images.value[13].datePublished", - "$.images.value[14].datePublished", - "$.images.value[15].datePublished", - "$.images.value[16].datePublished", - "$.images.value[17].datePublished", + "$['images']['value'][1]['datePublished']", + "$['images']['value'][2]['datePublished']", + "$['images']['value'][3]['datePublished']", + "$['images']['value'][4]['datePublished']", + "$['images']['value'][5]['datePublished']", + "$['images']['value'][6]['datePublished']", + "$['images']['value'][7]['datePublished']", + "$['images']['value'][8]['datePublished']", + "$['images']['value'][9]['datePublished']", + "$['images']['value'][10]['datePublished']", + "$['images']['value'][11]['datePublished']", + "$['images']['value'][12]['datePublished']", + "$['images']['value'][13]['datePublished']", + "$['images']['value'][14]['datePublished']", + "$['images']['value'][15]['datePublished']", + "$['images']['value'][16]['datePublished']", + "$['images']['value'][17]['datePublished']", ], "similarPaths": Array [ - "images/value/1/datePublished", - "images/value/2/datePublished", - "images/value/3/datePublished", - "images/value/4/datePublished", - "images/value/5/datePublished", - "images/value/6/datePublished", - "images/value/7/datePublished", - "images/value/8/datePublished", - "images/value/9/datePublished", - "images/value/10/datePublished", - "images/value/11/datePublished", - "images/value/12/datePublished", - "images/value/13/datePublished", - "images/value/14/datePublished", - "images/value/15/datePublished", - "images/value/16/datePublished", - "images/value/17/datePublished", + "$/images/value/1/datePublished", + "$/images/value/2/datePublished", + "$/images/value/3/datePublished", + "$/images/value/4/datePublished", + "$/images/value/5/datePublished", + "$/images/value/6/datePublished", + "$/images/value/7/datePublished", + "$/images/value/8/datePublished", + "$/images/value/9/datePublished", + "$/images/value/10/datePublished", + "$/images/value/11/datePublished", + "$/images/value/12/datePublished", + "$/images/value/13/datePublished", + "$/images/value/14/datePublished", + "$/images/value/15/datePublished", + "$/images/value/16/datePublished", + "$/images/value/17/datePublished", ], "title": "#/definitions/ImageObject", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/WebSearch.json", @@ -43309,7 +43901,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image answer", "directives": Object {}, - "jsonPath": "$.images.displayRecipeSourcesBadges", + "jsonPath": "$['images']['displayRecipeSourcesBadges']", "jsonPosition": Object { "column": 19, "line": 146, @@ -43319,7 +43911,7 @@ Array [ "params": Array [ "displayRecipeSourcesBadges", ], - "path": "images/displayRecipeSourcesBadges", + "path": "$/images/displayRecipeSourcesBadges", "position": Object { "column": 15, "line": 455, @@ -43339,7 +43931,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image answer", "directives": Object {}, - "jsonPath": "$.images.displayShoppingSourcesBadges", + "jsonPath": "$['images']['displayShoppingSourcesBadges']", "jsonPosition": Object { "column": 19, "line": 146, @@ -43349,7 +43941,7 @@ Array [ "params": Array [ "displayShoppingSourcesBadges", ], - "path": "images/displayShoppingSourcesBadges", + "path": "$/images/displayShoppingSourcesBadges", "position": Object { "column": 15, "line": 455, @@ -43369,7 +43961,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines an image answer", "directives": Object {}, - "jsonPath": "$.images.readLink", + "jsonPath": "$['images']['readLink']", "jsonPosition": Object { "column": 19, "line": 146, @@ -43379,7 +43971,7 @@ Array [ "params": Array [ "readLink", ], - "path": "images/readLink", + "path": "$/images/readLink", "position": Object { "column": 15, "line": 455, @@ -43399,7 +43991,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines an image answer", "directives": Object {}, - "jsonPath": "$.images._type", + "jsonPath": "$['images']['_type']", "jsonPosition": Object { "column": 19, "line": 146, @@ -43409,7 +44001,7 @@ Array [ "params": Array [ "_type", ], - "path": "images/_type", + "path": "$/images/_type", "position": Object { "column": 15, "line": 455, @@ -43429,38 +44021,38 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a webpage that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.webPages.value[0]._type", + "jsonPath": "$['webPages']['value'][0]['_type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Missing required property: _type", "params": Array [ "_type", ], - "path": "webPages/value/0/_type", + "path": "$/webPages/value/0/_type", "position": Object { "column": 16, "line": 830, }, "similarJsonPaths": Array [ - "$.webPages.value[1]._type", - "$.webPages.value[2]._type", - "$.webPages.value[3]._type", - "$.webPages.value[4]._type", - "$.webPages.value[5]._type", - "$.webPages.value[6]._type", - "$.webPages.value[7]._type", - "$.webPages.value[8]._type", - "$.webPages.value[9]._type", + "$['webPages']['value'][1]['_type']", + "$['webPages']['value'][2]['_type']", + "$['webPages']['value'][3]['_type']", + "$['webPages']['value'][4]['_type']", + "$['webPages']['value'][5]['_type']", + "$['webPages']['value'][6]['_type']", + "$['webPages']['value'][7]['_type']", + "$['webPages']['value'][8]['_type']", + "$['webPages']['value'][9]['_type']", ], "similarPaths": Array [ - "webPages/value/1/_type", - "webPages/value/2/_type", - "webPages/value/3/_type", - "webPages/value/4/_type", - "webPages/value/5/_type", - "webPages/value/6/_type", - "webPages/value/7/_type", - "webPages/value/8/_type", - "webPages/value/9/_type", + "$/webPages/value/1/_type", + "$/webPages/value/2/_type", + "$/webPages/value/3/_type", + "$/webPages/value/4/_type", + "$/webPages/value/5/_type", + "$/webPages/value/6/_type", + "$/webPages/value/7/_type", + "$/webPages/value/8/_type", + "$/webPages/value/9/_type", ], "title": "#/definitions/WebPage", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/WebSearch.json", @@ -43477,38 +44069,38 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a webpage that is relevant to the query.", "directives": Object {}, - "jsonPath": "$.webPages.value[0].about", + "jsonPath": "$['webPages']['value'][0]['about']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/examples/SuccessfulQueryRequest.json", "message": "Additional properties not allowed: about", "params": Array [ "about", ], - "path": "webPages/value/0/about", + "path": "$/webPages/value/0/about", "position": Object { "column": 16, "line": 830, }, "similarJsonPaths": Array [ - "$.webPages.value[1].about", - "$.webPages.value[2].about", - "$.webPages.value[3].about", - "$.webPages.value[4].about", - "$.webPages.value[5].about", - "$.webPages.value[6].about", - "$.webPages.value[7].about", - "$.webPages.value[8].about", - "$.webPages.value[9].about", + "$['webPages']['value'][1]['about']", + "$['webPages']['value'][2]['about']", + "$['webPages']['value'][3]['about']", + "$['webPages']['value'][4]['about']", + "$['webPages']['value'][5]['about']", + "$['webPages']['value'][6]['about']", + "$['webPages']['value'][7]['about']", + "$['webPages']['value'][8]['about']", + "$['webPages']['value'][9]['about']", ], "similarPaths": Array [ - "webPages/value/1/about", - "webPages/value/2/about", - "webPages/value/3/about", - "webPages/value/4/about", - "webPages/value/5/about", - "webPages/value/6/about", - "webPages/value/7/about", - "webPages/value/8/about", - "webPages/value/9/about", + "$/webPages/value/1/about", + "$/webPages/value/2/about", + "$/webPages/value/3/about", + "$/webPages/value/4/about", + "$/webPages/value/5/about", + "$/webPages/value/6/about", + "$/webPages/value/7/about", + "$/webPages/value/8/about", + "$/webPages/value/9/about", ], "title": "#/definitions/WebPage", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cognitiveservices/data-plane/WebSearch/stable/v1.0/WebSearch.json", @@ -43525,7 +44117,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Defines a list of relevant webpage links.", "directives": Object {}, - "jsonPath": "$.webPages._type", + "jsonPath": "$['webPages']['_type']", "jsonPosition": Object { "column": 21, "line": 13, @@ -43535,7 +44127,7 @@ Array [ "params": Array [ "_type", ], - "path": "webPages/_type", + "path": "$/webPages/_type", "position": Object { "column": 21, "line": 428, @@ -43562,13 +44154,13 @@ Array [ "code": "INVALID_TYPE", "description": "Cognitive Services Account is an Azure resource representing the provisioned account, its type, location and SKU.", "directives": Object {}, - "jsonPath": "", + "jsonPath": "$", "message": "Expected type object but found type string", "params": Array [ "object", "string", ], - "path": "", + "path": "$", "position": Object { "column": 33, "line": 599, @@ -43742,13 +44334,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myDisk\\"\`, cannot be sent in the request.", "params": Array [ "name", "myDisk", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 702, @@ -43784,13 +44376,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myDisk\\"\`, cannot be sent in the request.", "params": Array [ "name", "myDisk", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 702, @@ -43826,13 +44418,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myDisk2\\"\`, cannot be sent in the request.", "params": Array [ "name", "myDisk2", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 702, @@ -43868,13 +44460,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myDisk\\"\`, cannot be sent in the request.", "params": Array [ "name", "myDisk", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 702, @@ -43910,13 +44502,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myDisk\\"\`, cannot be sent in the request.", "params": Array [ "name", "myDisk", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 702, @@ -43952,13 +44544,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myDisk\\"\`, cannot be sent in the request.", "params": Array [ "name", "myDisk", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 702, @@ -43994,13 +44586,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"mySnapshot2\\"\`, cannot be sent in the request.", "params": Array [ "name", "mySnapshot2", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 702, @@ -44036,13 +44628,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"mySnapshot1\\"\`, cannot be sent in the request.", "params": Array [ "name", "mySnapshot1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 702, @@ -44078,13 +44670,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"mySnapshot1\\"\`, cannot be sent in the request.", "params": Array [ "name", "mySnapshot1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 702, @@ -44247,13 +44839,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 7177, @@ -44273,13 +44865,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 7177, @@ -44299,13 +44891,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 7177, @@ -44325,13 +44917,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 7177, @@ -44351,13 +44943,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 7177, @@ -44377,13 +44969,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 7177, @@ -44403,13 +44995,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 7177, @@ -44429,13 +45021,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 7177, @@ -44455,13 +45047,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 7177, @@ -44481,13 +45073,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 7177, @@ -44690,13 +45282,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myDisk\\"\`, cannot be sent in the request.", "params": Array [ "name", "myDisk", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 704, @@ -44716,13 +45308,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myDisk\\"\`, cannot be sent in the request.", "params": Array [ "name", "myDisk", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 704, @@ -44742,13 +45334,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myDisk2\\"\`, cannot be sent in the request.", "params": Array [ "name", "myDisk2", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 704, @@ -44768,13 +45360,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myDisk\\"\`, cannot be sent in the request.", "params": Array [ "name", "myDisk", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 704, @@ -44794,13 +45386,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myDisk\\"\`, cannot be sent in the request.", "params": Array [ "name", "myDisk", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 704, @@ -44820,13 +45412,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myDisk\\"\`, cannot be sent in the request.", "params": Array [ "name", "myDisk", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 704, @@ -44846,13 +45438,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"mySnapshot2\\"\`, cannot be sent in the request.", "params": Array [ "name", "mySnapshot2", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 704, @@ -44872,13 +45464,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"mySnapshot1\\"\`, cannot be sent in the request.", "params": Array [ "name", "mySnapshot1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 704, @@ -44898,13 +45490,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"mySnapshot1\\"\`, cannot be sent in the request.", "params": Array [ "name", "mySnapshot1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 704, @@ -44958,13 +45550,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8022, @@ -44984,13 +45576,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8022, @@ -45010,13 +45602,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8022, @@ -45036,13 +45628,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8022, @@ -45062,13 +45654,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8022, @@ -45088,13 +45680,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8022, @@ -45114,13 +45706,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8022, @@ -45140,13 +45732,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8022, @@ -45166,13 +45758,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8022, @@ -45192,13 +45784,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8022, @@ -45257,7 +45849,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[9][\\"$schema\\"]", + "jsonPath": "$['value'][9]['$schema']", "jsonPosition": Object { "column": 14, "line": 64, @@ -45267,7 +45859,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/9/$schema", + "path": "$/value/9/$schema", "position": Object { "column": 31, "line": 250, @@ -45287,7 +45879,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[9].schema", + "jsonPath": "$['value'][9]['schema']", "jsonPosition": Object { "column": 14, "line": 64, @@ -45297,7 +45889,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/9/schema", + "path": "$/value/9/schema", "position": Object { "column": 31, "line": 250, @@ -45317,7 +45909,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[8][\\"$schema\\"]", + "jsonPath": "$['value'][8]['$schema']", "jsonPosition": Object { "column": 14, "line": 58, @@ -45327,7 +45919,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/8/$schema", + "path": "$/value/8/$schema", "position": Object { "column": 31, "line": 250, @@ -45347,7 +45939,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[8].schema", + "jsonPath": "$['value'][8]['schema']", "jsonPosition": Object { "column": 14, "line": 58, @@ -45357,7 +45949,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/8/schema", + "path": "$/value/8/schema", "position": Object { "column": 31, "line": 250, @@ -45377,7 +45969,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[7][\\"$schema\\"]", + "jsonPath": "$['value'][7]['$schema']", "jsonPosition": Object { "column": 14, "line": 52, @@ -45387,7 +45979,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/7/$schema", + "path": "$/value/7/$schema", "position": Object { "column": 31, "line": 250, @@ -45407,7 +45999,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[7].schema", + "jsonPath": "$['value'][7]['schema']", "jsonPosition": Object { "column": 14, "line": 52, @@ -45417,7 +46009,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/7/schema", + "path": "$/value/7/schema", "position": Object { "column": 31, "line": 250, @@ -45437,7 +46029,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[6][\\"$schema\\"]", + "jsonPath": "$['value'][6]['$schema']", "jsonPosition": Object { "column": 14, "line": 46, @@ -45447,7 +46039,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/6/$schema", + "path": "$/value/6/$schema", "position": Object { "column": 31, "line": 250, @@ -45467,7 +46059,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[6].schema", + "jsonPath": "$['value'][6]['schema']", "jsonPosition": Object { "column": 14, "line": 46, @@ -45477,7 +46069,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/6/schema", + "path": "$/value/6/schema", "position": Object { "column": 31, "line": 250, @@ -45497,7 +46089,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[5][\\"$schema\\"]", + "jsonPath": "$['value'][5]['$schema']", "jsonPosition": Object { "column": 14, "line": 40, @@ -45507,7 +46099,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/5/$schema", + "path": "$/value/5/$schema", "position": Object { "column": 31, "line": 250, @@ -45527,7 +46119,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[5].schema", + "jsonPath": "$['value'][5]['schema']", "jsonPosition": Object { "column": 14, "line": 40, @@ -45537,7 +46129,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/5/schema", + "path": "$/value/5/schema", "position": Object { "column": 31, "line": 250, @@ -45557,7 +46149,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[4][\\"$schema\\"]", + "jsonPath": "$['value'][4]['$schema']", "jsonPosition": Object { "column": 14, "line": 34, @@ -45567,7 +46159,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/4/$schema", + "path": "$/value/4/$schema", "position": Object { "column": 31, "line": 250, @@ -45587,7 +46179,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[4].schema", + "jsonPath": "$['value'][4]['schema']", "jsonPosition": Object { "column": 14, "line": 34, @@ -45597,7 +46189,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/4/schema", + "path": "$/value/4/schema", "position": Object { "column": 31, "line": 250, @@ -45617,7 +46209,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[3][\\"$schema\\"]", + "jsonPath": "$['value'][3]['$schema']", "jsonPosition": Object { "column": 14, "line": 28, @@ -45627,7 +46219,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/3/$schema", + "path": "$/value/3/$schema", "position": Object { "column": 31, "line": 250, @@ -45647,7 +46239,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[3].schema", + "jsonPath": "$['value'][3]['schema']", "jsonPosition": Object { "column": 14, "line": 28, @@ -45657,7 +46249,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/3/schema", + "path": "$/value/3/schema", "position": Object { "column": 31, "line": 250, @@ -45677,7 +46269,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[2][\\"$schema\\"]", + "jsonPath": "$['value'][2]['$schema']", "jsonPosition": Object { "column": 14, "line": 22, @@ -45687,7 +46279,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/2/$schema", + "path": "$/value/2/$schema", "position": Object { "column": 31, "line": 250, @@ -45707,7 +46299,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[2].schema", + "jsonPath": "$['value'][2]['schema']", "jsonPosition": Object { "column": 14, "line": 22, @@ -45717,7 +46309,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/2/schema", + "path": "$/value/2/schema", "position": Object { "column": 31, "line": 250, @@ -45737,7 +46329,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[1][\\"$schema\\"]", + "jsonPath": "$['value'][1]['$schema']", "jsonPosition": Object { "column": 14, "line": 16, @@ -45747,7 +46339,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/1/$schema", + "path": "$/value/1/$schema", "position": Object { "column": 31, "line": 250, @@ -45767,7 +46359,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[1].schema", + "jsonPath": "$['value'][1]['schema']", "jsonPosition": Object { "column": 14, "line": 16, @@ -45777,7 +46369,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/1/schema", + "path": "$/value/1/schema", "position": Object { "column": 31, "line": 250, @@ -45797,7 +46389,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[0][\\"$schema\\"]", + "jsonPath": "$['value'][0]['$schema']", "jsonPosition": Object { "column": 19, "line": 10, @@ -45807,7 +46399,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/0/$schema", + "path": "$/value/0/$schema", "position": Object { "column": 31, "line": 250, @@ -45827,7 +46419,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[0].schema", + "jsonPath": "$['value'][0]['schema']", "jsonPosition": Object { "column": 19, "line": 10, @@ -45837,7 +46429,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/0/schema", + "path": "$/value/0/schema", "position": Object { "column": 31, "line": 250, @@ -45857,22 +46449,22 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a run command parameter.", "directives": Object {}, - "jsonPath": "$.parameters[0].value", + "jsonPath": "$['parameters'][0]['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/compute/resource-manager/Microsoft.Compute/stable/2017-12-01/examples/VirtualMachineRunCommandGet.json", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "parameters/0/value", + "path": "$/parameters/0/value", "position": Object { "column": 38, "line": 224, }, "similarJsonPaths": Array [ - "$.parameters[1].value", + "$['parameters'][1]['value']", ], "similarPaths": Array [ - "parameters/1/value", + "$/parameters/1/value", ], "title": "#/definitions/RunCommandParameterDefinition", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/compute/resource-manager/Microsoft.Compute/stable/2017-12-01/runCommands.json", @@ -45912,13 +46504,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8244, @@ -45938,13 +46530,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8244, @@ -45964,13 +46556,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8244, @@ -45990,13 +46582,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8244, @@ -46016,13 +46608,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8244, @@ -46042,13 +46634,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8244, @@ -46068,13 +46660,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8244, @@ -46094,13 +46686,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8244, @@ -46120,13 +46712,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8244, @@ -46146,13 +46738,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8244, @@ -46172,7 +46764,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "LogAnalytics operation status response", "directives": Object {}, - "jsonPath": "$.startTime", + "jsonPath": "$['startTime']", "jsonPosition": Object { "column": 15, "line": 16, @@ -46182,7 +46774,7 @@ Array [ "params": Array [ "startTime", ], - "path": "startTime", + "path": "$/startTime", "position": Object { "column": 36, "line": 8389, @@ -46202,7 +46794,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "LogAnalytics operation status response", "directives": Object {}, - "jsonPath": "$.endTime", + "jsonPath": "$['endTime']", "jsonPosition": Object { "column": 15, "line": 16, @@ -46212,7 +46804,7 @@ Array [ "params": Array [ "endTime", ], - "path": "endTime", + "path": "$/endTime", "position": Object { "column": 36, "line": 8389, @@ -46232,7 +46824,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "LogAnalytics operation status response", "directives": Object {}, - "jsonPath": "$.status", + "jsonPath": "$['status']", "jsonPosition": Object { "column": 15, "line": 16, @@ -46242,7 +46834,7 @@ Array [ "params": Array [ "status", ], - "path": "status", + "path": "$/status", "position": Object { "column": 36, "line": 8389, @@ -46262,7 +46854,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "LogAnalytics operation status response", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "jsonPosition": Object { "column": 15, "line": 16, @@ -46272,7 +46864,7 @@ Array [ "params": Array [ "name", ], - "path": "name", + "path": "$/name", "position": Object { "column": 36, "line": 8389, @@ -46308,7 +46900,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "LogAnalytics operation status response", "directives": Object {}, - "jsonPath": "$.startTime", + "jsonPath": "$['startTime']", "jsonPosition": Object { "column": 15, "line": 16, @@ -46318,7 +46910,7 @@ Array [ "params": Array [ "startTime", ], - "path": "startTime", + "path": "$/startTime", "position": Object { "column": 36, "line": 8389, @@ -46338,7 +46930,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "LogAnalytics operation status response", "directives": Object {}, - "jsonPath": "$.endTime", + "jsonPath": "$['endTime']", "jsonPosition": Object { "column": 15, "line": 16, @@ -46348,7 +46940,7 @@ Array [ "params": Array [ "endTime", ], - "path": "endTime", + "path": "$/endTime", "position": Object { "column": 36, "line": 8389, @@ -46368,7 +46960,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "LogAnalytics operation status response", "directives": Object {}, - "jsonPath": "$.status", + "jsonPath": "$['status']", "jsonPosition": Object { "column": 15, "line": 16, @@ -46378,7 +46970,7 @@ Array [ "params": Array [ "status", ], - "path": "status", + "path": "$/status", "position": Object { "column": 36, "line": 8389, @@ -46398,7 +46990,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "LogAnalytics operation status response", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "jsonPosition": Object { "column": 15, "line": 16, @@ -46408,7 +47000,7 @@ Array [ "params": Array [ "name", ], - "path": "name", + "path": "$/name", "position": Object { "column": 36, "line": 8389, @@ -46451,13 +47043,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myDisk\\"\`, cannot be sent in the request.", "params": Array [ "name", "myDisk", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 698, @@ -46477,13 +47069,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myDisk\\"\`, cannot be sent in the request.", "params": Array [ "name", "myDisk", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 698, @@ -46503,13 +47095,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myDisk2\\"\`, cannot be sent in the request.", "params": Array [ "name", "myDisk2", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 698, @@ -46529,13 +47121,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myDisk\\"\`, cannot be sent in the request.", "params": Array [ "name", "myDisk", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 698, @@ -46555,13 +47147,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myDisk\\"\`, cannot be sent in the request.", "params": Array [ "name", "myDisk", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 698, @@ -46581,13 +47173,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myDisk\\"\`, cannot be sent in the request.", "params": Array [ "name", "myDisk", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 698, @@ -46607,13 +47199,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"mySnapshot2\\"\`, cannot be sent in the request.", "params": Array [ "name", "mySnapshot2", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 698, @@ -46633,13 +47225,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"mySnapshot1\\"\`, cannot be sent in the request.", "params": Array [ "name", "mySnapshot1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 698, @@ -46659,13 +47251,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"mySnapshot1\\"\`, cannot be sent in the request.", "params": Array [ "name", "mySnapshot1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 698, @@ -46692,7 +47284,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[9][\\"$schema\\"]", + "jsonPath": "$['value'][9]['$schema']", "jsonPosition": Object { "column": 14, "line": 64, @@ -46702,7 +47294,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/9/$schema", + "path": "$/value/9/$schema", "position": Object { "column": 31, "line": 312, @@ -46722,7 +47314,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[9].schema", + "jsonPath": "$['value'][9]['schema']", "jsonPosition": Object { "column": 14, "line": 64, @@ -46732,7 +47324,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/9/schema", + "path": "$/value/9/schema", "position": Object { "column": 31, "line": 312, @@ -46752,7 +47344,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[8][\\"$schema\\"]", + "jsonPath": "$['value'][8]['$schema']", "jsonPosition": Object { "column": 14, "line": 58, @@ -46762,7 +47354,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/8/$schema", + "path": "$/value/8/$schema", "position": Object { "column": 31, "line": 312, @@ -46782,7 +47374,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[8].schema", + "jsonPath": "$['value'][8]['schema']", "jsonPosition": Object { "column": 14, "line": 58, @@ -46792,7 +47384,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/8/schema", + "path": "$/value/8/schema", "position": Object { "column": 31, "line": 312, @@ -46812,7 +47404,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[7][\\"$schema\\"]", + "jsonPath": "$['value'][7]['$schema']", "jsonPosition": Object { "column": 14, "line": 52, @@ -46822,7 +47414,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/7/$schema", + "path": "$/value/7/$schema", "position": Object { "column": 31, "line": 312, @@ -46842,7 +47434,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[7].schema", + "jsonPath": "$['value'][7]['schema']", "jsonPosition": Object { "column": 14, "line": 52, @@ -46852,7 +47444,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/7/schema", + "path": "$/value/7/schema", "position": Object { "column": 31, "line": 312, @@ -46872,7 +47464,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[6][\\"$schema\\"]", + "jsonPath": "$['value'][6]['$schema']", "jsonPosition": Object { "column": 14, "line": 46, @@ -46882,7 +47474,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/6/$schema", + "path": "$/value/6/$schema", "position": Object { "column": 31, "line": 312, @@ -46902,7 +47494,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[6].schema", + "jsonPath": "$['value'][6]['schema']", "jsonPosition": Object { "column": 14, "line": 46, @@ -46912,7 +47504,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/6/schema", + "path": "$/value/6/schema", "position": Object { "column": 31, "line": 312, @@ -46932,7 +47524,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[5][\\"$schema\\"]", + "jsonPath": "$['value'][5]['$schema']", "jsonPosition": Object { "column": 14, "line": 40, @@ -46942,7 +47534,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/5/$schema", + "path": "$/value/5/$schema", "position": Object { "column": 31, "line": 312, @@ -46962,7 +47554,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[5].schema", + "jsonPath": "$['value'][5]['schema']", "jsonPosition": Object { "column": 14, "line": 40, @@ -46972,7 +47564,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/5/schema", + "path": "$/value/5/schema", "position": Object { "column": 31, "line": 312, @@ -46992,7 +47584,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[4][\\"$schema\\"]", + "jsonPath": "$['value'][4]['$schema']", "jsonPosition": Object { "column": 14, "line": 34, @@ -47002,7 +47594,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/4/$schema", + "path": "$/value/4/$schema", "position": Object { "column": 31, "line": 312, @@ -47022,7 +47614,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[4].schema", + "jsonPath": "$['value'][4]['schema']", "jsonPosition": Object { "column": 14, "line": 34, @@ -47032,7 +47624,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/4/schema", + "path": "$/value/4/schema", "position": Object { "column": 31, "line": 312, @@ -47052,7 +47644,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[3][\\"$schema\\"]", + "jsonPath": "$['value'][3]['$schema']", "jsonPosition": Object { "column": 14, "line": 28, @@ -47062,7 +47654,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/3/$schema", + "path": "$/value/3/$schema", "position": Object { "column": 31, "line": 312, @@ -47082,7 +47674,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[3].schema", + "jsonPath": "$['value'][3]['schema']", "jsonPosition": Object { "column": 14, "line": 28, @@ -47092,7 +47684,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/3/schema", + "path": "$/value/3/schema", "position": Object { "column": 31, "line": 312, @@ -47112,7 +47704,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[2][\\"$schema\\"]", + "jsonPath": "$['value'][2]['$schema']", "jsonPosition": Object { "column": 14, "line": 22, @@ -47122,7 +47714,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/2/$schema", + "path": "$/value/2/$schema", "position": Object { "column": 31, "line": 312, @@ -47142,7 +47734,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[2].schema", + "jsonPath": "$['value'][2]['schema']", "jsonPosition": Object { "column": 14, "line": 22, @@ -47152,7 +47744,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/2/schema", + "path": "$/value/2/schema", "position": Object { "column": 31, "line": 312, @@ -47172,7 +47764,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[1][\\"$schema\\"]", + "jsonPath": "$['value'][1]['$schema']", "jsonPosition": Object { "column": 14, "line": 16, @@ -47182,7 +47774,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/1/$schema", + "path": "$/value/1/$schema", "position": Object { "column": 31, "line": 312, @@ -47202,7 +47794,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[1].schema", + "jsonPath": "$['value'][1]['schema']", "jsonPosition": Object { "column": 14, "line": 16, @@ -47212,7 +47804,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/1/schema", + "path": "$/value/1/schema", "position": Object { "column": 31, "line": 312, @@ -47232,7 +47824,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[0][\\"$schema\\"]", + "jsonPath": "$['value'][0]['$schema']", "jsonPosition": Object { "column": 19, "line": 10, @@ -47242,7 +47834,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/0/$schema", + "path": "$/value/0/$schema", "position": Object { "column": 31, "line": 312, @@ -47262,7 +47854,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[0].schema", + "jsonPath": "$['value'][0]['schema']", "jsonPosition": Object { "column": 19, "line": 10, @@ -47272,7 +47864,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/0/schema", + "path": "$/value/0/schema", "position": Object { "column": 31, "line": 312, @@ -47292,22 +47884,22 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a run command parameter.", "directives": Object {}, - "jsonPath": "$.parameters[0].value", + "jsonPath": "$['parameters'][0]['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/compute/resource-manager/Microsoft.Compute/stable/2018-04-01/examples/VirtualMachineRunCommandGet.json", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "parameters/0/value", + "path": "$/parameters/0/value", "position": Object { "column": 38, "line": 286, }, "similarJsonPaths": Array [ - "$.parameters[1].value", + "$['parameters'][1]['value']", ], "similarPaths": Array [ - "parameters/1/value", + "$/parameters/1/value", ], "title": "#/definitions/RunCommandParameterDefinition", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/compute/resource-manager/Microsoft.Compute/stable/2018-04-01/runCommands.json", @@ -47347,13 +47939,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8511, @@ -47373,13 +47965,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8511, @@ -47399,13 +47991,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8511, @@ -47425,13 +48017,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8511, @@ -47451,13 +48043,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8511, @@ -47477,13 +48069,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8511, @@ -47503,13 +48095,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8511, @@ -47529,13 +48121,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8511, @@ -47555,13 +48147,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8511, @@ -47581,13 +48173,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8511, @@ -47607,13 +48199,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8511, @@ -47672,13 +48264,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myDisk\\"\`, cannot be sent in the request.", "params": Array [ "name", "myDisk", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 698, @@ -47698,13 +48290,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myDisk\\"\`, cannot be sent in the request.", "params": Array [ "name", "myDisk", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 698, @@ -47724,13 +48316,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myDisk2\\"\`, cannot be sent in the request.", "params": Array [ "name", "myDisk2", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 698, @@ -47750,13 +48342,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myDisk\\"\`, cannot be sent in the request.", "params": Array [ "name", "myDisk", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 698, @@ -47776,13 +48368,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myDisk\\"\`, cannot be sent in the request.", "params": Array [ "name", "myDisk", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 698, @@ -47802,13 +48394,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myDisk\\"\`, cannot be sent in the request.", "params": Array [ "name", "myDisk", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 698, @@ -47828,13 +48420,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"mySnapshot2\\"\`, cannot be sent in the request.", "params": Array [ "name", "mySnapshot2", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 698, @@ -47854,13 +48446,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"mySnapshot1\\"\`, cannot be sent in the request.", "params": Array [ "name", "mySnapshot1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 698, @@ -47880,13 +48472,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"mySnapshot1\\"\`, cannot be sent in the request.", "params": Array [ "name", "mySnapshot1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 698, @@ -47917,7 +48509,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[9][\\"$schema\\"]", + "jsonPath": "$['value'][9]['$schema']", "jsonPosition": Object { "column": 14, "line": 64, @@ -47927,7 +48519,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/9/$schema", + "path": "$/value/9/$schema", "position": Object { "column": 31, "line": 312, @@ -47947,7 +48539,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[9].schema", + "jsonPath": "$['value'][9]['schema']", "jsonPosition": Object { "column": 14, "line": 64, @@ -47957,7 +48549,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/9/schema", + "path": "$/value/9/schema", "position": Object { "column": 31, "line": 312, @@ -47977,7 +48569,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[8][\\"$schema\\"]", + "jsonPath": "$['value'][8]['$schema']", "jsonPosition": Object { "column": 14, "line": 58, @@ -47987,7 +48579,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/8/$schema", + "path": "$/value/8/$schema", "position": Object { "column": 31, "line": 312, @@ -48007,7 +48599,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[8].schema", + "jsonPath": "$['value'][8]['schema']", "jsonPosition": Object { "column": 14, "line": 58, @@ -48017,7 +48609,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/8/schema", + "path": "$/value/8/schema", "position": Object { "column": 31, "line": 312, @@ -48037,7 +48629,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[7][\\"$schema\\"]", + "jsonPath": "$['value'][7]['$schema']", "jsonPosition": Object { "column": 14, "line": 52, @@ -48047,7 +48639,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/7/$schema", + "path": "$/value/7/$schema", "position": Object { "column": 31, "line": 312, @@ -48067,7 +48659,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[7].schema", + "jsonPath": "$['value'][7]['schema']", "jsonPosition": Object { "column": 14, "line": 52, @@ -48077,7 +48669,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/7/schema", + "path": "$/value/7/schema", "position": Object { "column": 31, "line": 312, @@ -48097,7 +48689,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[6][\\"$schema\\"]", + "jsonPath": "$['value'][6]['$schema']", "jsonPosition": Object { "column": 14, "line": 46, @@ -48107,7 +48699,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/6/$schema", + "path": "$/value/6/$schema", "position": Object { "column": 31, "line": 312, @@ -48127,7 +48719,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[6].schema", + "jsonPath": "$['value'][6]['schema']", "jsonPosition": Object { "column": 14, "line": 46, @@ -48137,7 +48729,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/6/schema", + "path": "$/value/6/schema", "position": Object { "column": 31, "line": 312, @@ -48157,7 +48749,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[5][\\"$schema\\"]", + "jsonPath": "$['value'][5]['$schema']", "jsonPosition": Object { "column": 14, "line": 40, @@ -48167,7 +48759,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/5/$schema", + "path": "$/value/5/$schema", "position": Object { "column": 31, "line": 312, @@ -48187,7 +48779,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[5].schema", + "jsonPath": "$['value'][5]['schema']", "jsonPosition": Object { "column": 14, "line": 40, @@ -48197,7 +48789,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/5/schema", + "path": "$/value/5/schema", "position": Object { "column": 31, "line": 312, @@ -48217,7 +48809,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[4][\\"$schema\\"]", + "jsonPath": "$['value'][4]['$schema']", "jsonPosition": Object { "column": 14, "line": 34, @@ -48227,7 +48819,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/4/$schema", + "path": "$/value/4/$schema", "position": Object { "column": 31, "line": 312, @@ -48247,7 +48839,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[4].schema", + "jsonPath": "$['value'][4]['schema']", "jsonPosition": Object { "column": 14, "line": 34, @@ -48257,7 +48849,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/4/schema", + "path": "$/value/4/schema", "position": Object { "column": 31, "line": 312, @@ -48277,7 +48869,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[3][\\"$schema\\"]", + "jsonPath": "$['value'][3]['$schema']", "jsonPosition": Object { "column": 14, "line": 28, @@ -48287,7 +48879,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/3/$schema", + "path": "$/value/3/$schema", "position": Object { "column": 31, "line": 312, @@ -48307,7 +48899,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[3].schema", + "jsonPath": "$['value'][3]['schema']", "jsonPosition": Object { "column": 14, "line": 28, @@ -48317,7 +48909,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/3/schema", + "path": "$/value/3/schema", "position": Object { "column": 31, "line": 312, @@ -48337,7 +48929,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[2][\\"$schema\\"]", + "jsonPath": "$['value'][2]['$schema']", "jsonPosition": Object { "column": 14, "line": 22, @@ -48347,7 +48939,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/2/$schema", + "path": "$/value/2/$schema", "position": Object { "column": 31, "line": 312, @@ -48367,7 +48959,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[2].schema", + "jsonPath": "$['value'][2]['schema']", "jsonPosition": Object { "column": 14, "line": 22, @@ -48377,7 +48969,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/2/schema", + "path": "$/value/2/schema", "position": Object { "column": 31, "line": 312, @@ -48397,7 +48989,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[1][\\"$schema\\"]", + "jsonPath": "$['value'][1]['$schema']", "jsonPosition": Object { "column": 14, "line": 16, @@ -48407,7 +48999,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/1/$schema", + "path": "$/value/1/$schema", "position": Object { "column": 31, "line": 312, @@ -48427,7 +49019,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[1].schema", + "jsonPath": "$['value'][1]['schema']", "jsonPosition": Object { "column": 14, "line": 16, @@ -48437,7 +49029,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/1/schema", + "path": "$/value/1/schema", "position": Object { "column": 31, "line": 312, @@ -48457,7 +49049,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[0][\\"$schema\\"]", + "jsonPath": "$['value'][0]['$schema']", "jsonPosition": Object { "column": 19, "line": 10, @@ -48467,7 +49059,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/0/$schema", + "path": "$/value/0/$schema", "position": Object { "column": 31, "line": 312, @@ -48487,7 +49079,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[0].schema", + "jsonPath": "$['value'][0]['schema']", "jsonPosition": Object { "column": 19, "line": 10, @@ -48497,7 +49089,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/0/schema", + "path": "$/value/0/schema", "position": Object { "column": 31, "line": 312, @@ -48517,22 +49109,22 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a run command parameter.", "directives": Object {}, - "jsonPath": "$.parameters[0].value", + "jsonPath": "$['parameters'][0]['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/compute/resource-manager/Microsoft.Compute/stable/2018-06-01/examples/VirtualMachineRunCommandGet.json", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "parameters/0/value", + "path": "$/parameters/0/value", "position": Object { "column": 38, "line": 286, }, "similarJsonPaths": Array [ - "$.parameters[1].value", + "$['parameters'][1]['value']", ], "similarPaths": Array [ - "parameters/1/value", + "$/parameters/1/value", ], "title": "#/definitions/RunCommandParameterDefinition", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/compute/resource-manager/Microsoft.Compute/stable/2018-06-01/runCommands.json", @@ -48572,13 +49164,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myDisk\\"\`, cannot be sent in the request.", "params": Array [ "name", "myDisk", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 698, @@ -48598,13 +49190,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myDisk\\"\`, cannot be sent in the request.", "params": Array [ "name", "myDisk", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 698, @@ -48624,13 +49216,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myDisk2\\"\`, cannot be sent in the request.", "params": Array [ "name", "myDisk2", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 698, @@ -48650,13 +49242,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myDisk\\"\`, cannot be sent in the request.", "params": Array [ "name", "myDisk", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 698, @@ -48676,13 +49268,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myDisk\\"\`, cannot be sent in the request.", "params": Array [ "name", "myDisk", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 698, @@ -48702,13 +49294,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myDisk\\"\`, cannot be sent in the request.", "params": Array [ "name", "myDisk", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 698, @@ -48728,7 +49320,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Disk resource properties.", "directives": Object {}, - "jsonPath": "$.properties.encryptionSettings", + "jsonPath": "$['properties']['encryptionSettings']", "jsonPosition": Object { "column": 23, "line": 15, @@ -48738,7 +49330,7 @@ Array [ "params": Array [ "encryptionSettings", ], - "path": "properties/encryptionSettings", + "path": "$/properties/encryptionSettings", "position": Object { "column": 23, "line": 841, @@ -48758,13 +49350,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Disk resource properties.", "directives": Object {}, - "jsonPath": "$.value[2].properties.encryptionSettings", + "jsonPath": "$['value'][2]['properties']['encryptionSettings']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/compute/resource-manager/Microsoft.Compute/stable/2018-09-30/examples/ListManagedDisksInAResourceGroup.json", "message": "Additional properties not allowed: encryptionSettings", "params": Array [ "encryptionSettings", ], - "path": "value/2/properties/encryptionSettings", + "path": "$/value/2/properties/encryptionSettings", "position": Object { "column": 23, "line": 841, @@ -48784,13 +49376,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Disk resource properties.", "directives": Object {}, - "jsonPath": "$.value[0].properties.encryptionSettings", + "jsonPath": "$['value'][0]['properties']['encryptionSettings']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/compute/resource-manager/Microsoft.Compute/stable/2018-09-30/examples/ListManagedDisksInAResourceGroup.json", "message": "Additional properties not allowed: encryptionSettings", "params": Array [ "encryptionSettings", ], - "path": "value/0/properties/encryptionSettings", + "path": "$/value/0/properties/encryptionSettings", "position": Object { "column": 23, "line": 841, @@ -48810,13 +49402,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Disk resource properties.", "directives": Object {}, - "jsonPath": "$.value[2].properties.encryptionSettings", + "jsonPath": "$['value'][2]['properties']['encryptionSettings']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/compute/resource-manager/Microsoft.Compute/stable/2018-09-30/examples/ListManagedDisksInASubscription.json", "message": "Additional properties not allowed: encryptionSettings", "params": Array [ "encryptionSettings", ], - "path": "value/2/properties/encryptionSettings", + "path": "$/value/2/properties/encryptionSettings", "position": Object { "column": 23, "line": 841, @@ -48836,13 +49428,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Disk resource properties.", "directives": Object {}, - "jsonPath": "$.value[0].properties.encryptionSettings", + "jsonPath": "$['value'][0]['properties']['encryptionSettings']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/compute/resource-manager/Microsoft.Compute/stable/2018-09-30/examples/ListManagedDisksInASubscription.json", "message": "Additional properties not allowed: encryptionSettings", "params": Array [ "encryptionSettings", ], - "path": "value/0/properties/encryptionSettings", + "path": "$/value/0/properties/encryptionSettings", "position": Object { "column": 23, "line": 841, @@ -48862,13 +49454,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"mySnapshot2\\"\`, cannot be sent in the request.", "params": Array [ "name", "mySnapshot2", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 698, @@ -48888,13 +49480,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"mySnapshot1\\"\`, cannot be sent in the request.", "params": Array [ "name", "mySnapshot1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 698, @@ -48914,13 +49506,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"mySnapshot1\\"\`, cannot be sent in the request.", "params": Array [ "name", "mySnapshot1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 698, @@ -48940,7 +49532,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Snapshot resource properties.", "directives": Object {}, - "jsonPath": "$.properties.encryptionSettings", + "jsonPath": "$['properties']['encryptionSettings']", "jsonPosition": Object { "column": 23, "line": 11, @@ -48950,7 +49542,7 @@ Array [ "params": Array [ "encryptionSettings", ], - "path": "properties/encryptionSettings", + "path": "$/properties/encryptionSettings", "position": Object { "column": 27, "line": 924, @@ -48970,13 +49562,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Snapshot resource properties.", "directives": Object {}, - "jsonPath": "$.value[0].properties.encryptionSettings", + "jsonPath": "$['value'][0]['properties']['encryptionSettings']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/compute/resource-manager/Microsoft.Compute/stable/2018-09-30/examples/ListSnapshotsInAResourceGroup.json", "message": "Additional properties not allowed: encryptionSettings", "params": Array [ "encryptionSettings", ], - "path": "value/0/properties/encryptionSettings", + "path": "$/value/0/properties/encryptionSettings", "position": Object { "column": 27, "line": 924, @@ -48996,13 +49588,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Snapshot resource properties.", "directives": Object {}, - "jsonPath": "$.value[1].properties.encryptionSettings", + "jsonPath": "$['value'][1]['properties']['encryptionSettings']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/compute/resource-manager/Microsoft.Compute/stable/2018-09-30/examples/ListSnapshotsInASubscription.json", "message": "Additional properties not allowed: encryptionSettings", "params": Array [ "encryptionSettings", ], - "path": "value/1/properties/encryptionSettings", + "path": "$/value/1/properties/encryptionSettings", "position": Object { "column": 27, "line": 924, @@ -49022,13 +49614,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Snapshot resource properties.", "directives": Object {}, - "jsonPath": "$.value[0].properties.encryptionSettings", + "jsonPath": "$['value'][0]['properties']['encryptionSettings']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/compute/resource-manager/Microsoft.Compute/stable/2018-09-30/examples/ListSnapshotsInASubscription.json", "message": "Additional properties not allowed: encryptionSettings", "params": Array [ "encryptionSettings", ], - "path": "value/0/properties/encryptionSettings", + "path": "$/value/0/properties/encryptionSettings", "position": Object { "column": 27, "line": 924, @@ -49055,13 +49647,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8530, @@ -49081,13 +49673,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8530, @@ -49107,13 +49699,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8530, @@ -49133,13 +49725,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8530, @@ -49159,13 +49751,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8530, @@ -49185,13 +49777,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8530, @@ -49211,13 +49803,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8530, @@ -49237,13 +49829,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8530, @@ -49263,13 +49855,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8530, @@ -49289,13 +49881,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8530, @@ -49315,13 +49907,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8530, @@ -49380,7 +49972,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[9][\\"$schema\\"]", + "jsonPath": "$['value'][9]['$schema']", "jsonPosition": Object { "column": 14, "line": 64, @@ -49390,7 +49982,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/9/$schema", + "path": "$/value/9/$schema", "position": Object { "column": 31, "line": 312, @@ -49410,7 +50002,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[9].schema", + "jsonPath": "$['value'][9]['schema']", "jsonPosition": Object { "column": 14, "line": 64, @@ -49420,7 +50012,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/9/schema", + "path": "$/value/9/schema", "position": Object { "column": 31, "line": 312, @@ -49440,7 +50032,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[8][\\"$schema\\"]", + "jsonPath": "$['value'][8]['$schema']", "jsonPosition": Object { "column": 14, "line": 58, @@ -49450,7 +50042,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/8/$schema", + "path": "$/value/8/$schema", "position": Object { "column": 31, "line": 312, @@ -49470,7 +50062,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[8].schema", + "jsonPath": "$['value'][8]['schema']", "jsonPosition": Object { "column": 14, "line": 58, @@ -49480,7 +50072,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/8/schema", + "path": "$/value/8/schema", "position": Object { "column": 31, "line": 312, @@ -49500,7 +50092,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[7][\\"$schema\\"]", + "jsonPath": "$['value'][7]['$schema']", "jsonPosition": Object { "column": 14, "line": 52, @@ -49510,7 +50102,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/7/$schema", + "path": "$/value/7/$schema", "position": Object { "column": 31, "line": 312, @@ -49530,7 +50122,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[7].schema", + "jsonPath": "$['value'][7]['schema']", "jsonPosition": Object { "column": 14, "line": 52, @@ -49540,7 +50132,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/7/schema", + "path": "$/value/7/schema", "position": Object { "column": 31, "line": 312, @@ -49560,7 +50152,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[6][\\"$schema\\"]", + "jsonPath": "$['value'][6]['$schema']", "jsonPosition": Object { "column": 14, "line": 46, @@ -49570,7 +50162,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/6/$schema", + "path": "$/value/6/$schema", "position": Object { "column": 31, "line": 312, @@ -49590,7 +50182,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[6].schema", + "jsonPath": "$['value'][6]['schema']", "jsonPosition": Object { "column": 14, "line": 46, @@ -49600,7 +50192,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/6/schema", + "path": "$/value/6/schema", "position": Object { "column": 31, "line": 312, @@ -49620,7 +50212,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[5][\\"$schema\\"]", + "jsonPath": "$['value'][5]['$schema']", "jsonPosition": Object { "column": 14, "line": 40, @@ -49630,7 +50222,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/5/$schema", + "path": "$/value/5/$schema", "position": Object { "column": 31, "line": 312, @@ -49650,7 +50242,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[5].schema", + "jsonPath": "$['value'][5]['schema']", "jsonPosition": Object { "column": 14, "line": 40, @@ -49660,7 +50252,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/5/schema", + "path": "$/value/5/schema", "position": Object { "column": 31, "line": 312, @@ -49680,7 +50272,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[4][\\"$schema\\"]", + "jsonPath": "$['value'][4]['$schema']", "jsonPosition": Object { "column": 14, "line": 34, @@ -49690,7 +50282,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/4/$schema", + "path": "$/value/4/$schema", "position": Object { "column": 31, "line": 312, @@ -49710,7 +50302,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[4].schema", + "jsonPath": "$['value'][4]['schema']", "jsonPosition": Object { "column": 14, "line": 34, @@ -49720,7 +50312,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/4/schema", + "path": "$/value/4/schema", "position": Object { "column": 31, "line": 312, @@ -49740,7 +50332,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[3][\\"$schema\\"]", + "jsonPath": "$['value'][3]['$schema']", "jsonPosition": Object { "column": 14, "line": 28, @@ -49750,7 +50342,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/3/$schema", + "path": "$/value/3/$schema", "position": Object { "column": 31, "line": 312, @@ -49770,7 +50362,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[3].schema", + "jsonPath": "$['value'][3]['schema']", "jsonPosition": Object { "column": 14, "line": 28, @@ -49780,7 +50372,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/3/schema", + "path": "$/value/3/schema", "position": Object { "column": 31, "line": 312, @@ -49800,7 +50392,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[2][\\"$schema\\"]", + "jsonPath": "$['value'][2]['$schema']", "jsonPosition": Object { "column": 14, "line": 22, @@ -49810,7 +50402,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/2/$schema", + "path": "$/value/2/$schema", "position": Object { "column": 31, "line": 312, @@ -49830,7 +50422,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[2].schema", + "jsonPath": "$['value'][2]['schema']", "jsonPosition": Object { "column": 14, "line": 22, @@ -49840,7 +50432,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/2/schema", + "path": "$/value/2/schema", "position": Object { "column": 31, "line": 312, @@ -49860,7 +50452,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[1][\\"$schema\\"]", + "jsonPath": "$['value'][1]['$schema']", "jsonPosition": Object { "column": 14, "line": 16, @@ -49870,7 +50462,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/1/$schema", + "path": "$/value/1/$schema", "position": Object { "column": 31, "line": 312, @@ -49890,7 +50482,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[1].schema", + "jsonPath": "$['value'][1]['schema']", "jsonPosition": Object { "column": 14, "line": 16, @@ -49900,7 +50492,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/1/schema", + "path": "$/value/1/schema", "position": Object { "column": 31, "line": 312, @@ -49920,7 +50512,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[0][\\"$schema\\"]", + "jsonPath": "$['value'][0]['$schema']", "jsonPosition": Object { "column": 19, "line": 10, @@ -49930,7 +50522,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/0/$schema", + "path": "$/value/0/$schema", "position": Object { "column": 31, "line": 312, @@ -49950,7 +50542,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[0].schema", + "jsonPath": "$['value'][0]['schema']", "jsonPosition": Object { "column": 19, "line": 10, @@ -49960,7 +50552,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/0/schema", + "path": "$/value/0/schema", "position": Object { "column": 31, "line": 312, @@ -49980,22 +50572,22 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a run command parameter.", "directives": Object {}, - "jsonPath": "$.parameters[0].value", + "jsonPath": "$['parameters'][0]['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/compute/resource-manager/Microsoft.Compute/stable/2018-10-01/examples/VirtualMachineRunCommandGet.json", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "parameters/0/value", + "path": "$/parameters/0/value", "position": Object { "column": 38, "line": 286, }, "similarJsonPaths": Array [ - "$.parameters[1].value", + "$['parameters'][1]['value']", ], "similarPaths": Array [ - "parameters/1/value", + "$/parameters/1/value", ], "title": "#/definitions/RunCommandParameterDefinition", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/compute/resource-manager/Microsoft.Compute/stable/2018-10-01/runCommands.json", @@ -50035,13 +50627,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8658, @@ -50061,13 +50653,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8658, @@ -50087,13 +50679,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8658, @@ -50113,13 +50705,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8658, @@ -50139,13 +50731,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8658, @@ -50165,13 +50757,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8658, @@ -50191,13 +50783,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8658, @@ -50217,13 +50809,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8658, @@ -50243,13 +50835,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8658, @@ -50269,13 +50861,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8658, @@ -50295,13 +50887,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myVM\\"\`, cannot be sent in the request.", "params": Array [ "name", "myVM", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8658, @@ -50364,7 +50956,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[9][\\"$schema\\"]", + "jsonPath": "$['value'][9]['$schema']", "jsonPosition": Object { "column": 14, "line": 64, @@ -50374,7 +50966,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/9/$schema", + "path": "$/value/9/$schema", "position": Object { "column": 31, "line": 312, @@ -50394,7 +50986,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[9].schema", + "jsonPath": "$['value'][9]['schema']", "jsonPosition": Object { "column": 14, "line": 64, @@ -50404,7 +50996,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/9/schema", + "path": "$/value/9/schema", "position": Object { "column": 31, "line": 312, @@ -50424,7 +51016,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[8][\\"$schema\\"]", + "jsonPath": "$['value'][8]['$schema']", "jsonPosition": Object { "column": 14, "line": 58, @@ -50434,7 +51026,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/8/$schema", + "path": "$/value/8/$schema", "position": Object { "column": 31, "line": 312, @@ -50454,7 +51046,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[8].schema", + "jsonPath": "$['value'][8]['schema']", "jsonPosition": Object { "column": 14, "line": 58, @@ -50464,7 +51056,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/8/schema", + "path": "$/value/8/schema", "position": Object { "column": 31, "line": 312, @@ -50484,7 +51076,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[7][\\"$schema\\"]", + "jsonPath": "$['value'][7]['$schema']", "jsonPosition": Object { "column": 14, "line": 52, @@ -50494,7 +51086,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/7/$schema", + "path": "$/value/7/$schema", "position": Object { "column": 31, "line": 312, @@ -50514,7 +51106,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[7].schema", + "jsonPath": "$['value'][7]['schema']", "jsonPosition": Object { "column": 14, "line": 52, @@ -50524,7 +51116,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/7/schema", + "path": "$/value/7/schema", "position": Object { "column": 31, "line": 312, @@ -50544,7 +51136,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[6][\\"$schema\\"]", + "jsonPath": "$['value'][6]['$schema']", "jsonPosition": Object { "column": 14, "line": 46, @@ -50554,7 +51146,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/6/$schema", + "path": "$/value/6/$schema", "position": Object { "column": 31, "line": 312, @@ -50574,7 +51166,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[6].schema", + "jsonPath": "$['value'][6]['schema']", "jsonPosition": Object { "column": 14, "line": 46, @@ -50584,7 +51176,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/6/schema", + "path": "$/value/6/schema", "position": Object { "column": 31, "line": 312, @@ -50604,7 +51196,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[5][\\"$schema\\"]", + "jsonPath": "$['value'][5]['$schema']", "jsonPosition": Object { "column": 14, "line": 40, @@ -50614,7 +51206,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/5/$schema", + "path": "$/value/5/$schema", "position": Object { "column": 31, "line": 312, @@ -50634,7 +51226,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[5].schema", + "jsonPath": "$['value'][5]['schema']", "jsonPosition": Object { "column": 14, "line": 40, @@ -50644,7 +51236,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/5/schema", + "path": "$/value/5/schema", "position": Object { "column": 31, "line": 312, @@ -50664,7 +51256,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[4][\\"$schema\\"]", + "jsonPath": "$['value'][4]['$schema']", "jsonPosition": Object { "column": 14, "line": 34, @@ -50674,7 +51266,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/4/$schema", + "path": "$/value/4/$schema", "position": Object { "column": 31, "line": 312, @@ -50694,7 +51286,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[4].schema", + "jsonPath": "$['value'][4]['schema']", "jsonPosition": Object { "column": 14, "line": 34, @@ -50704,7 +51296,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/4/schema", + "path": "$/value/4/schema", "position": Object { "column": 31, "line": 312, @@ -50724,7 +51316,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[3][\\"$schema\\"]", + "jsonPath": "$['value'][3]['$schema']", "jsonPosition": Object { "column": 14, "line": 28, @@ -50734,7 +51326,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/3/$schema", + "path": "$/value/3/$schema", "position": Object { "column": 31, "line": 312, @@ -50754,7 +51346,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[3].schema", + "jsonPath": "$['value'][3]['schema']", "jsonPosition": Object { "column": 14, "line": 28, @@ -50764,7 +51356,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/3/schema", + "path": "$/value/3/schema", "position": Object { "column": 31, "line": 312, @@ -50784,7 +51376,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[2][\\"$schema\\"]", + "jsonPath": "$['value'][2]['$schema']", "jsonPosition": Object { "column": 14, "line": 22, @@ -50794,7 +51386,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/2/$schema", + "path": "$/value/2/$schema", "position": Object { "column": 31, "line": 312, @@ -50814,7 +51406,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[2].schema", + "jsonPath": "$['value'][2]['schema']", "jsonPosition": Object { "column": 14, "line": 22, @@ -50824,7 +51416,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/2/schema", + "path": "$/value/2/schema", "position": Object { "column": 31, "line": 312, @@ -50844,7 +51436,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[1][\\"$schema\\"]", + "jsonPath": "$['value'][1]['$schema']", "jsonPosition": Object { "column": 14, "line": 16, @@ -50854,7 +51446,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/1/$schema", + "path": "$/value/1/$schema", "position": Object { "column": 31, "line": 312, @@ -50874,7 +51466,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[1].schema", + "jsonPath": "$['value'][1]['schema']", "jsonPosition": Object { "column": 14, "line": 16, @@ -50884,7 +51476,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/1/schema", + "path": "$/value/1/schema", "position": Object { "column": 31, "line": 312, @@ -50904,7 +51496,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[0][\\"$schema\\"]", + "jsonPath": "$['value'][0]['$schema']", "jsonPosition": Object { "column": 19, "line": 10, @@ -50914,7 +51506,7 @@ Array [ "params": Array [ "$schema", ], - "path": "value/0/$schema", + "path": "$/value/0/$schema", "position": Object { "column": 31, "line": 312, @@ -50934,7 +51526,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a Run Command metadata.", "directives": Object {}, - "jsonPath": "$.value[0].schema", + "jsonPath": "$['value'][0]['schema']", "jsonPosition": Object { "column": 19, "line": 10, @@ -50944,7 +51536,7 @@ Array [ "params": Array [ "schema", ], - "path": "value/0/schema", + "path": "$/value/0/schema", "position": Object { "column": 31, "line": 312, @@ -50964,22 +51556,22 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the properties of a run command parameter.", "directives": Object {}, - "jsonPath": "$.parameters[0].value", + "jsonPath": "$['parameters'][0]['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/compute/resource-manager/Microsoft.Compute/stable/2019-03-01/examples/VirtualMachineRunCommandGet.json", "message": "Additional properties not allowed: value", "params": Array [ "value", ], - "path": "parameters/0/value", + "path": "$/parameters/0/value", "position": Object { "column": 38, "line": 286, }, "similarJsonPaths": Array [ - "$.parameters[1].value", + "$['parameters'][1]['value']", ], "similarPaths": Array [ - "parameters/1/value", + "$/parameters/1/value", ], "title": "#/definitions/RunCommandParameterDefinition", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/compute/resource-manager/Microsoft.Compute/stable/2019-03-01/runCommands.json", @@ -51061,12 +51653,12 @@ Array [ "directives": Object { "R2059": ".*", }, - "jsonPath": "$.costTags", + "jsonPath": "$['costTags']", "message": "Additional properties not allowed: costTags", "params": Array [ "costTags", ], - "path": "costTags", + "path": "$/costTags", "position": Object { "column": 17, "line": 3328, @@ -51099,12 +51691,12 @@ Array [ "directives": Object { "R2059": ".*", }, - "jsonPath": "$.costTags", + "jsonPath": "$['costTags']", "message": "Additional properties not allowed: costTags", "params": Array [ "costTags", ], - "path": "costTags", + "path": "$/costTags", "position": Object { "column": 16, "line": 3671, @@ -51137,13 +51729,13 @@ Array [ "directives": Object { "R2059": ".*", }, - "jsonPath": "$.value[0].properties.BillingAccountId", + "jsonPath": "$['value'][0]['properties']['BillingAccountId']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/consumption/resource-manager/Microsoft.Consumption/stable/2018-10-01/examples/TenantsGet.json", "message": "Additional properties not allowed: BillingAccountId", "params": Array [ "BillingAccountId", ], - "path": "value/0/properties/BillingAccountId", + "path": "$/value/0/properties/BillingAccountId", "position": Object { "column": 25, "line": 3154, @@ -51172,13 +51764,13 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.value[0].properties.containers[0].properties.containers[0].properties.resources.requests.memoryInGb", + "jsonPath": "$['value'][0]['properties']['containers'][0]['properties']['containers'][0]['properties']['resources']['requests']['memoryInGb']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/containerinstance/resource-manager/Microsoft.ContainerInstance/preview/2017-08-01-preview/examples/ContainerGroupsList.json", "message": "Additional properties not allowed: memoryInGb", "params": Array [ "memoryInGb", ], - "path": "value/0/properties/containers/0/properties/containers/0/properties/resources/requests/memoryInGb", + "path": "$/value/0/properties/containers/0/properties/containers/0/properties/resources/requests/memoryInGb", "position": Object { "column": 25, "line": 466, @@ -51200,13 +51792,13 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.value[0].properties.containers[0].properties.containers[0].properties.resources.requests.memoryInGB", + "jsonPath": "$['value'][0]['properties']['containers'][0]['properties']['containers'][0]['properties']['resources']['requests']['memoryInGB']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/containerinstance/resource-manager/Microsoft.ContainerInstance/preview/2017-08-01-preview/examples/ContainerGroupsList.json", "message": "Missing required property: memoryInGB", "params": Array [ "memoryInGB", ], - "path": "value/0/properties/containers/0/properties/containers/0/properties/resources/requests/memoryInGB", + "path": "$/value/0/properties/containers/0/properties/containers/0/properties/resources/requests/memoryInGB", "position": Object { "column": 25, "line": 466, @@ -51228,13 +51820,13 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.value[0].properties.ipAddress.type", + "jsonPath": "$['value'][0]['properties']['ipAddress']['type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/containerinstance/resource-manager/Microsoft.ContainerInstance/preview/2017-08-01-preview/examples/ContainerGroupsList.json", "message": "Missing required property: type", "params": Array [ "type", ], - "path": "value/0/properties/ipAddress/type", + "path": "$/value/0/properties/ipAddress/type", "position": Object { "column": 18, "line": 674, @@ -51256,13 +51848,13 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.value[0].resourceGroup", + "jsonPath": "$['value'][0]['resourceGroup']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/containerinstance/resource-manager/Microsoft.ContainerInstance/preview/2017-08-01-preview/examples/ContainerGroupsList.json", "message": "Additional properties not allowed: resourceGroup", "params": Array [ "resourceGroup", ], - "path": "value/0/resourceGroup", + "path": "$/value/0/resourceGroup", "position": Object { "column": 23, "line": 568, @@ -51284,13 +51876,13 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.value[0].properties.containers[0].properties.containers[0].properties.resources.requests.memoryInGb", + "jsonPath": "$['value'][0]['properties']['containers'][0]['properties']['containers'][0]['properties']['resources']['requests']['memoryInGb']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/containerinstance/resource-manager/Microsoft.ContainerInstance/preview/2017-08-01-preview/examples/ContainerGroupsListByResourceGroup.json", "message": "Additional properties not allowed: memoryInGb", "params": Array [ "memoryInGb", ], - "path": "value/0/properties/containers/0/properties/containers/0/properties/resources/requests/memoryInGb", + "path": "$/value/0/properties/containers/0/properties/containers/0/properties/resources/requests/memoryInGb", "position": Object { "column": 25, "line": 466, @@ -51312,13 +51904,13 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.value[0].properties.containers[0].properties.containers[0].properties.resources.requests.memoryInGB", + "jsonPath": "$['value'][0]['properties']['containers'][0]['properties']['containers'][0]['properties']['resources']['requests']['memoryInGB']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/containerinstance/resource-manager/Microsoft.ContainerInstance/preview/2017-08-01-preview/examples/ContainerGroupsListByResourceGroup.json", "message": "Missing required property: memoryInGB", "params": Array [ "memoryInGB", ], - "path": "value/0/properties/containers/0/properties/containers/0/properties/resources/requests/memoryInGB", + "path": "$/value/0/properties/containers/0/properties/containers/0/properties/resources/requests/memoryInGB", "position": Object { "column": 25, "line": 466, @@ -51340,13 +51932,13 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.value[0].properties.ipAddress.type", + "jsonPath": "$['value'][0]['properties']['ipAddress']['type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/containerinstance/resource-manager/Microsoft.ContainerInstance/preview/2017-08-01-preview/examples/ContainerGroupsListByResourceGroup.json", "message": "Missing required property: type", "params": Array [ "type", ], - "path": "value/0/properties/ipAddress/type", + "path": "$/value/0/properties/ipAddress/type", "position": Object { "column": 18, "line": 674, @@ -51368,13 +51960,13 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.value[0].resourceGroup", + "jsonPath": "$['value'][0]['resourceGroup']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/containerinstance/resource-manager/Microsoft.ContainerInstance/preview/2017-08-01-preview/examples/ContainerGroupsListByResourceGroup.json", "message": "Additional properties not allowed: resourceGroup", "params": Array [ "resourceGroup", ], - "path": "value/0/resourceGroup", + "path": "$/value/0/resourceGroup", "position": Object { "column": 23, "line": 568, @@ -51419,7 +52011,7 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.resourceGroup", + "jsonPath": "$['resourceGroup']", "jsonPosition": Object { "column": 15, "line": 9, @@ -51429,7 +52021,7 @@ Array [ "params": Array [ "resourceGroup", ], - "path": "resourceGroup", + "path": "$/resourceGroup", "position": Object { "column": 23, "line": 568, @@ -51451,7 +52043,7 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.properties.ipAddress.type", + "jsonPath": "$['properties']['ipAddress']['type']", "jsonPosition": Object { "column": 24, "line": 51, @@ -51461,7 +52053,7 @@ Array [ "params": Array [ "type", ], - "path": "properties/ipAddress/type", + "path": "$/properties/ipAddress/type", "position": Object { "column": 18, "line": 674, @@ -51483,7 +52075,7 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.properties.containers[0].properties.containers[0].properties.resources.requests.memoryInGb", + "jsonPath": "$['properties']['containers'][0]['properties']['containers'][0]['properties']['resources']['requests']['memoryInGb']", "jsonPosition": Object { "column": 31, "line": 29, @@ -51493,7 +52085,7 @@ Array [ "params": Array [ "memoryInGb", ], - "path": "properties/containers/0/properties/containers/0/properties/resources/requests/memoryInGb", + "path": "$/properties/containers/0/properties/containers/0/properties/resources/requests/memoryInGb", "position": Object { "column": 25, "line": 466, @@ -51515,7 +52107,7 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.properties.containers[0].properties.containers[0].properties.resources.requests.memoryInGB", + "jsonPath": "$['properties']['containers'][0]['properties']['containers'][0]['properties']['resources']['requests']['memoryInGB']", "jsonPosition": Object { "column": 31, "line": 29, @@ -51525,7 +52117,7 @@ Array [ "params": Array [ "memoryInGB", ], - "path": "properties/containers/0/properties/containers/0/properties/resources/requests/memoryInGB", + "path": "$/properties/containers/0/properties/containers/0/properties/resources/requests/memoryInGB", "position": Object { "column": 25, "line": 466, @@ -51547,12 +52139,12 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.resourceGroup", + "jsonPath": "$['resourceGroup']", "message": "Additional properties not allowed: resourceGroup", "params": Array [ "resourceGroup", ], - "path": "resourceGroup", + "path": "$/resourceGroup", "position": Object { "column": 23, "line": 568, @@ -51574,13 +52166,13 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.ContainerInstance/containerGroups\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.ContainerInstance/containerGroups", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 805, @@ -51602,12 +52194,12 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.properties.ipAddress.ports", + "jsonPath": "$['properties']['ipAddress']['ports']", "message": "Missing required property: ports", "params": Array [ "ports", ], - "path": "properties/ipAddress/ports", + "path": "$/properties/ipAddress/ports", "position": Object { "column": 18, "line": 674, @@ -51629,15 +52221,15 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.properties.containers[0].properties.containers[0].properties.instanceView", + "jsonPath": "$['properties']['containers'][0]['properties']['containers'][0]['properties']['instanceView']", "message": "ReadOnly property \`\\"instanceView\\": {}\`, cannot be sent in the request.", "params": Array [ "instanceView", Object { - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], - "path": "properties/containers/0/properties/containers/0/properties/instanceView", + "path": "$/properties/containers/0/properties/containers/0/properties/instanceView", "position": Object { "column": 25, "line": 354, @@ -51659,12 +52251,12 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.properties.containers[0].properties.containers[0].properties.resources.requests.memoryInGb", + "jsonPath": "$['properties']['containers'][0]['properties']['containers'][0]['properties']['resources']['requests']['memoryInGb']", "message": "Additional properties not allowed: memoryInGb", "params": Array [ "memoryInGb", ], - "path": "properties/containers/0/properties/containers/0/properties/resources/requests/memoryInGb", + "path": "$/properties/containers/0/properties/containers/0/properties/resources/requests/memoryInGb", "position": Object { "column": 25, "line": 466, @@ -51686,12 +52278,12 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.properties.containers[0].properties.containers[0].properties.resources.requests.memoryInGB", + "jsonPath": "$['properties']['containers'][0]['properties']['containers'][0]['properties']['resources']['requests']['memoryInGB']", "message": "Missing required property: memoryInGB", "params": Array [ "memoryInGB", ], - "path": "properties/containers/0/properties/containers/0/properties/resources/requests/memoryInGB", + "path": "$/properties/containers/0/properties/containers/0/properties/resources/requests/memoryInGB", "position": Object { "column": 25, "line": 466, @@ -51713,13 +52305,13 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"demo1\\"\`, cannot be sent in the request.", "params": Array [ "name", "demo1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 800, @@ -51741,13 +52333,13 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/subid/resourceGroups/demo/providers/Microsoft.ContainerInstance/containerGroups/demo1\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/subid/resourceGroups/demo/providers/Microsoft.ContainerInstance/containerGroups/demo1", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 795, @@ -51769,7 +52361,7 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.resourceGroup", + "jsonPath": "$['resourceGroup']", "jsonPosition": Object { "column": 15, "line": 52, @@ -51779,7 +52371,7 @@ Array [ "params": Array [ "resourceGroup", ], - "path": "resourceGroup", + "path": "$/resourceGroup", "position": Object { "column": 23, "line": 568, @@ -51801,7 +52393,7 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.properties.ipAddress.type", + "jsonPath": "$['properties']['ipAddress']['type']", "jsonPosition": Object { "column": 24, "line": 82, @@ -51811,7 +52403,7 @@ Array [ "params": Array [ "type", ], - "path": "properties/ipAddress/type", + "path": "$/properties/ipAddress/type", "position": Object { "column": 18, "line": 674, @@ -51833,7 +52425,7 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.properties.containers[0].properties.containers[0].properties.resources.requests.memoryInGb", + "jsonPath": "$['properties']['containers'][0]['properties']['containers'][0]['properties']['resources']['requests']['memoryInGb']", "jsonPosition": Object { "column": 31, "line": 72, @@ -51843,7 +52435,7 @@ Array [ "params": Array [ "memoryInGb", ], - "path": "properties/containers/0/properties/containers/0/properties/resources/requests/memoryInGb", + "path": "$/properties/containers/0/properties/containers/0/properties/resources/requests/memoryInGb", "position": Object { "column": 25, "line": 466, @@ -51865,7 +52457,7 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.properties.containers[0].properties.containers[0].properties.resources.requests.memoryInGB", + "jsonPath": "$['properties']['containers'][0]['properties']['containers'][0]['properties']['resources']['requests']['memoryInGB']", "jsonPosition": Object { "column": 31, "line": 72, @@ -51875,7 +52467,7 @@ Array [ "params": Array [ "memoryInGB", ], - "path": "properties/containers/0/properties/containers/0/properties/resources/requests/memoryInGB", + "path": "$/properties/containers/0/properties/containers/0/properties/resources/requests/memoryInGB", "position": Object { "column": 25, "line": 466, @@ -51897,7 +52489,7 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.resourceGroup", + "jsonPath": "$['resourceGroup']", "jsonPosition": Object { "column": 15, "line": 103, @@ -51907,7 +52499,7 @@ Array [ "params": Array [ "resourceGroup", ], - "path": "resourceGroup", + "path": "$/resourceGroup", "position": Object { "column": 23, "line": 568, @@ -51929,7 +52521,7 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.properties.ipAddress.type", + "jsonPath": "$['properties']['ipAddress']['type']", "jsonPosition": Object { "column": 24, "line": 133, @@ -51939,7 +52531,7 @@ Array [ "params": Array [ "type", ], - "path": "properties/ipAddress/type", + "path": "$/properties/ipAddress/type", "position": Object { "column": 18, "line": 674, @@ -51961,7 +52553,7 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.properties.containers[0].properties.containers[0].properties.resources.requests.memoryInGb", + "jsonPath": "$['properties']['containers'][0]['properties']['containers'][0]['properties']['resources']['requests']['memoryInGb']", "jsonPosition": Object { "column": 31, "line": 123, @@ -51971,7 +52563,7 @@ Array [ "params": Array [ "memoryInGb", ], - "path": "properties/containers/0/properties/containers/0/properties/resources/requests/memoryInGb", + "path": "$/properties/containers/0/properties/containers/0/properties/resources/requests/memoryInGb", "position": Object { "column": 25, "line": 466, @@ -51993,7 +52585,7 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.properties.containers[0].properties.containers[0].properties.resources.requests.memoryInGB", + "jsonPath": "$['properties']['containers'][0]['properties']['containers'][0]['properties']['resources']['requests']['memoryInGB']", "jsonPosition": Object { "column": 31, "line": 123, @@ -52003,7 +52595,7 @@ Array [ "params": Array [ "memoryInGB", ], - "path": "properties/containers/0/properties/containers/0/properties/resources/requests/memoryInGB", + "path": "$/properties/containers/0/properties/containers/0/properties/resources/requests/memoryInGB", "position": Object { "column": 25, "line": 466, @@ -52048,15 +52640,15 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.properties.containers[0].properties.containers[0].properties.instanceView", + "jsonPath": "$['properties']['containers'][0]['properties']['containers'][0]['properties']['instanceView']", "message": "ReadOnly property \`\\"instanceView\\": {}\`, cannot be sent in the request.", "params": Array [ "instanceView", Object { - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], - "path": "properties/containers/0/properties/containers/0/properties/instanceView", + "path": "$/properties/containers/0/properties/containers/0/properties/instanceView", "position": Object { "column": 25, "line": 348, @@ -52078,13 +52670,13 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.ContainerInstance/containerGroups\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.ContainerInstance/containerGroups", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 901, @@ -52106,13 +52698,13 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"mycontainers\\"\`, cannot be sent in the request.", "params": Array [ "name", "mycontainers", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 896, @@ -52141,13 +52733,13 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.ContainerInstance/containerGroups\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.ContainerInstance/containerGroups", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1025, @@ -52169,13 +52761,13 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"demo1\\"\`, cannot be sent in the request.", "params": Array [ "name", "demo1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1020, @@ -52197,13 +52789,13 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/subid/resourceGroups/demo/providers/Microsoft.ContainerInstance/containerGroups/demo1\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/subid/resourceGroups/demo/providers/Microsoft.ContainerInstance/containerGroups/demo1", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1015, @@ -52248,13 +52840,13 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.ContainerInstance/containerGroups\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.ContainerInstance/containerGroups", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1164, @@ -52276,13 +52868,13 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"demo1\\"\`, cannot be sent in the request.", "params": Array [ "name", "demo1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1159, @@ -52304,13 +52896,13 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/subid/resourceGroups/demo/providers/Microsoft.ContainerInstance/containerGroups/demo1\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/subid/resourceGroups/demo/providers/Microsoft.ContainerInstance/containerGroups/demo1", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1154, @@ -52331,7 +52923,7 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.properties.tags", + "jsonPath": "$['properties']['tags']", "jsonPosition": Object { "column": 25, "line": 21, @@ -52341,7 +52933,7 @@ Array [ "params": Array [ "tags", ], - "path": "properties/tags", + "path": "$/properties/tags", "position": Object { "column": 27, "line": 747, @@ -52379,12 +52971,12 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.terminalSize.column", + "jsonPath": "$['terminalSize']['column']", "message": "Additional properties not allowed: column", "params": Array [ "column", ], - "path": "terminalSize/column", + "path": "$/terminalSize/column", "position": Object { "column": 25, "line": 1120, @@ -52406,12 +52998,12 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.terminalSize.row", + "jsonPath": "$['terminalSize']['row']", "message": "Additional properties not allowed: row", "params": Array [ "row", ], - "path": "terminalSize/row", + "path": "$/terminalSize/row", "position": Object { "column": 25, "line": 1120, @@ -52440,13 +53032,13 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.ContainerInstance/containerGroups\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.ContainerInstance/containerGroups", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1180, @@ -52468,13 +53060,13 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"demo1\\"\`, cannot be sent in the request.", "params": Array [ "name", "demo1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1175, @@ -52496,13 +53088,13 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/subid/resourceGroups/demo/providers/Microsoft.ContainerInstance/containerGroups/demo1\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/subid/resourceGroups/demo/providers/Microsoft.ContainerInstance/containerGroups/demo1", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1170, @@ -52523,7 +53115,7 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.properties.tags", + "jsonPath": "$['properties']['tags']", "jsonPosition": Object { "column": 23, "line": 21, @@ -52533,7 +53125,7 @@ Array [ "params": Array [ "tags", ], - "path": "properties/tags", + "path": "$/properties/tags", "position": Object { "column": 27, "line": 758, @@ -52578,13 +53170,13 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.ContainerInstance/containerGroups\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.ContainerInstance/containerGroups", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1348, @@ -52606,13 +53198,13 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"demo1\\"\`, cannot be sent in the request.", "params": Array [ "name", "demo1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1343, @@ -52634,13 +53226,13 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/subid/resourceGroups/demo/providers/Microsoft.ContainerInstance/containerGroups/demo1\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/subid/resourceGroups/demo/providers/Microsoft.ContainerInstance/containerGroups/demo1", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1338, @@ -52678,12 +53270,12 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.terminalSize.column", + "jsonPath": "$['terminalSize']['column']", "message": "Additional properties not allowed: column", "params": Array [ "column", ], - "path": "terminalSize/column", + "path": "$/terminalSize/column", "position": Object { "column": 25, "line": 1304, @@ -52705,12 +53297,12 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.terminalSize.row", + "jsonPath": "$['terminalSize']['row']", "message": "Additional properties not allowed: row", "params": Array [ "row", ], - "path": "terminalSize/row", + "path": "$/terminalSize/row", "position": Object { "column": 25, "line": 1304, @@ -52739,13 +53331,13 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.ContainerInstance/containerGroups\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.ContainerInstance/containerGroups", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1385, @@ -52767,13 +53359,13 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"demo1\\"\`, cannot be sent in the request.", "params": Array [ "name", "demo1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1380, @@ -52795,13 +53387,13 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/subid/resourceGroups/demo/providers/Microsoft.ContainerInstance/containerGroups/demo1\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/subid/resourceGroups/demo/providers/Microsoft.ContainerInstance/containerGroups/demo1", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1375, @@ -52839,12 +53431,12 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.terminalSize.column", + "jsonPath": "$['terminalSize']['column']", "message": "Additional properties not allowed: column", "params": Array [ "column", ], - "path": "terminalSize/column", + "path": "$/terminalSize/column", "position": Object { "column": 25, "line": 1341, @@ -52866,12 +53458,12 @@ Array [ "directives": Object { "UniqueResourcePaths": ".*", }, - "jsonPath": "$.terminalSize.row", + "jsonPath": "$['terminalSize']['row']", "message": "Additional properties not allowed: row", "params": Array [ "row", ], - "path": "terminalSize/row", + "path": "$/terminalSize/row", "position": Object { "column": 25, "line": 1341, @@ -52929,13 +53521,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the step.", "directives": Object {}, - "jsonPath": "$.properties.type", + "jsonPath": "$['properties']['type']", "message": "ReadOnly property \`\\"type\\": \\"Docker\\"\`, cannot be sent in the request.", "params": Array [ "type", "Docker", ], - "path": "properties/type", + "path": "$/properties/type", "position": Object { "column": 17, "line": 1341, @@ -52955,13 +53547,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the step.", "directives": Object {}, - "jsonPath": "$.properties.type", + "jsonPath": "$['properties']['type']", "message": "ReadOnly property \`\\"type\\": \\"Docker\\"\`, cannot be sent in the request.", "params": Array [ "type", "Docker", ], - "path": "properties/type", + "path": "$/properties/type", "position": Object { "column": 17, "line": 1377, @@ -52981,12 +53573,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties for updating a build task.", "directives": Object {}, - "jsonPath": "$.properties.base_image_trigger", + "jsonPath": "$['properties']['base_image_trigger']", "message": "Additional properties not allowed: base_image_trigger", "params": Array [ "base_image_trigger", ], - "path": "properties/base_image_trigger", + "path": "$/properties/base_image_trigger", "position": Object { "column": 44, "line": 1644, @@ -53006,13 +53598,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the build request.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"QuickBuild\\"\`, cannot be sent in the request.", "params": Array [ "type", "QuickBuild", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1699, @@ -53047,13 +53639,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the run request.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"DockerBuildRequest\\"\`, cannot be sent in the request.", "params": Array [ "type", "DockerBuildRequest", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 670, @@ -53073,13 +53665,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the run request.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"EncodedTaskRunRequest\\"\`, cannot be sent in the request.", "params": Array [ "type", "EncodedTaskRunRequest", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 670, @@ -53099,13 +53691,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the run request.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"FileTaskRunRequest\\"\`, cannot be sent in the request.", "params": Array [ "type", "FileTaskRunRequest", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 670, @@ -53125,13 +53717,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the run request.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"TaskRunRequest\\"\`, cannot be sent in the request.", "params": Array [ "type", "TaskRunRequest", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 670, @@ -53151,13 +53743,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the run request.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"FileTaskRunRequest\\"\`, cannot be sent in the request.", "params": Array [ "type", "FileTaskRunRequest", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 670, @@ -53177,13 +53769,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the run request.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"DockerBuildRequest\\"\`, cannot be sent in the request.", "params": Array [ "type", "DockerBuildRequest", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 670, @@ -53203,13 +53795,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the step.", "directives": Object {}, - "jsonPath": "$.properties.step.type", + "jsonPath": "$['properties']['step']['type']", "message": "ReadOnly property \`\\"type\\": \\"Docker\\"\`, cannot be sent in the request.", "params": Array [ "type", "Docker", ], - "path": "properties/step/type", + "path": "$/properties/step/type", "position": Object { "column": 17, "line": 1186, @@ -53229,13 +53821,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the step.", "directives": Object {}, - "jsonPath": "$.properties.step.type", + "jsonPath": "$['properties']['step']['type']", "message": "ReadOnly property \`\\"type\\": \\"Docker\\"\`, cannot be sent in the request.", "params": Array [ "type", "Docker", ], - "path": "properties/step/type", + "path": "$/properties/step/type", "position": Object { "column": 17, "line": 1606, @@ -53290,28 +53882,28 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Contains information about orchestrator.", "directives": Object {}, - "jsonPath": "$.properties.orchestrators[11].upgrades[0].orchestratorType", + "jsonPath": "$['properties']['orchestrators'][11]['upgrades'][0]['orchestratorType']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2017-09-30/examples/ContainerServiceListOrchestrators.json", "message": "Missing required property: orchestratorType", "params": Array [ "orchestratorType", ], - "path": "properties/orchestrators/11/upgrades/0/orchestratorType", + "path": "$/properties/orchestrators/11/upgrades/0/orchestratorType", "position": Object { "column": 28, "line": 76, }, "similarJsonPaths": Array [ - "$.properties.orchestrators[11].upgrades[1].orchestratorType", - "$.properties.orchestrators[11].upgrades[2].orchestratorType", - "$.properties.orchestrators[11].upgrades[3].orchestratorType", - "$.properties.orchestrators[11].upgrades[4].orchestratorType", + "$['properties']['orchestrators'][11]['upgrades'][1]['orchestratorType']", + "$['properties']['orchestrators'][11]['upgrades'][2]['orchestratorType']", + "$['properties']['orchestrators'][11]['upgrades'][3]['orchestratorType']", + "$['properties']['orchestrators'][11]['upgrades'][4]['orchestratorType']", ], "similarPaths": Array [ - "properties/orchestrators/11/upgrades/1/orchestratorType", - "properties/orchestrators/11/upgrades/2/orchestratorType", - "properties/orchestrators/11/upgrades/3/orchestratorType", - "properties/orchestrators/11/upgrades/4/orchestratorType", + "$/properties/orchestrators/11/upgrades/1/orchestratorType", + "$/properties/orchestrators/11/upgrades/2/orchestratorType", + "$/properties/orchestrators/11/upgrades/3/orchestratorType", + "$/properties/orchestrators/11/upgrades/4/orchestratorType", ], "title": "#/definitions/OrchestratorProfile", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2017-09-30/location.json", @@ -53328,40 +53920,40 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Contains information about orchestrator.", "directives": Object {}, - "jsonPath": "$.properties.orchestrators[10].upgrades[0].orchestratorType", + "jsonPath": "$['properties']['orchestrators'][10]['upgrades'][0]['orchestratorType']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2017-09-30/examples/ContainerServiceListOrchestrators.json", "message": "Missing required property: orchestratorType", "params": Array [ "orchestratorType", ], - "path": "properties/orchestrators/10/upgrades/0/orchestratorType", + "path": "$/properties/orchestrators/10/upgrades/0/orchestratorType", "position": Object { "column": 28, "line": 76, }, "similarJsonPaths": Array [ - "$.properties.orchestrators[10].upgrades[1].orchestratorType", - "$.properties.orchestrators[10].upgrades[2].orchestratorType", - "$.properties.orchestrators[10].upgrades[3].orchestratorType", - "$.properties.orchestrators[10].upgrades[4].orchestratorType", - "$.properties.orchestrators[10].upgrades[5].orchestratorType", - "$.properties.orchestrators[10].upgrades[6].orchestratorType", - "$.properties.orchestrators[10].upgrades[7].orchestratorType", - "$.properties.orchestrators[10].upgrades[8].orchestratorType", - "$.properties.orchestrators[10].upgrades[9].orchestratorType", - "$.properties.orchestrators[10].upgrades[10].orchestratorType", + "$['properties']['orchestrators'][10]['upgrades'][1]['orchestratorType']", + "$['properties']['orchestrators'][10]['upgrades'][2]['orchestratorType']", + "$['properties']['orchestrators'][10]['upgrades'][3]['orchestratorType']", + "$['properties']['orchestrators'][10]['upgrades'][4]['orchestratorType']", + "$['properties']['orchestrators'][10]['upgrades'][5]['orchestratorType']", + "$['properties']['orchestrators'][10]['upgrades'][6]['orchestratorType']", + "$['properties']['orchestrators'][10]['upgrades'][7]['orchestratorType']", + "$['properties']['orchestrators'][10]['upgrades'][8]['orchestratorType']", + "$['properties']['orchestrators'][10]['upgrades'][9]['orchestratorType']", + "$['properties']['orchestrators'][10]['upgrades'][10]['orchestratorType']", ], "similarPaths": Array [ - "properties/orchestrators/10/upgrades/1/orchestratorType", - "properties/orchestrators/10/upgrades/2/orchestratorType", - "properties/orchestrators/10/upgrades/3/orchestratorType", - "properties/orchestrators/10/upgrades/4/orchestratorType", - "properties/orchestrators/10/upgrades/5/orchestratorType", - "properties/orchestrators/10/upgrades/6/orchestratorType", - "properties/orchestrators/10/upgrades/7/orchestratorType", - "properties/orchestrators/10/upgrades/8/orchestratorType", - "properties/orchestrators/10/upgrades/9/orchestratorType", - "properties/orchestrators/10/upgrades/10/orchestratorType", + "$/properties/orchestrators/10/upgrades/1/orchestratorType", + "$/properties/orchestrators/10/upgrades/2/orchestratorType", + "$/properties/orchestrators/10/upgrades/3/orchestratorType", + "$/properties/orchestrators/10/upgrades/4/orchestratorType", + "$/properties/orchestrators/10/upgrades/5/orchestratorType", + "$/properties/orchestrators/10/upgrades/6/orchestratorType", + "$/properties/orchestrators/10/upgrades/7/orchestratorType", + "$/properties/orchestrators/10/upgrades/8/orchestratorType", + "$/properties/orchestrators/10/upgrades/9/orchestratorType", + "$/properties/orchestrators/10/upgrades/10/orchestratorType", ], "title": "#/definitions/OrchestratorProfile", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2017-09-30/location.json", @@ -53378,7 +53970,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "The profile of an orchestrator and its available versions.", "directives": Object {}, - "jsonPath": "$.properties.orchestrators[10].default", + "jsonPath": "$['properties']['orchestrators'][10]['default']", "jsonPosition": Object { "column": 13, "line": 138, @@ -53388,7 +53980,7 @@ Array [ "params": Array [ "default", ], - "path": "properties/orchestrators/10/default", + "path": "$/properties/orchestrators/10/default", "position": Object { "column": 35, "line": 93, @@ -53408,28 +54000,28 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Contains information about orchestrator.", "directives": Object {}, - "jsonPath": "$.properties.orchestrators[9].upgrades[0].orchestratorType", + "jsonPath": "$['properties']['orchestrators'][9]['upgrades'][0]['orchestratorType']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2017-09-30/examples/ContainerServiceListOrchestrators.json", "message": "Missing required property: orchestratorType", "params": Array [ "orchestratorType", ], - "path": "properties/orchestrators/9/upgrades/0/orchestratorType", + "path": "$/properties/orchestrators/9/upgrades/0/orchestratorType", "position": Object { "column": 28, "line": 76, }, "similarJsonPaths": Array [ - "$.properties.orchestrators[9].upgrades[1].orchestratorType", - "$.properties.orchestrators[9].upgrades[2].orchestratorType", - "$.properties.orchestrators[9].upgrades[3].orchestratorType", - "$.properties.orchestrators[9].upgrades[4].orchestratorType", + "$['properties']['orchestrators'][9]['upgrades'][1]['orchestratorType']", + "$['properties']['orchestrators'][9]['upgrades'][2]['orchestratorType']", + "$['properties']['orchestrators'][9]['upgrades'][3]['orchestratorType']", + "$['properties']['orchestrators'][9]['upgrades'][4]['orchestratorType']", ], "similarPaths": Array [ - "properties/orchestrators/9/upgrades/1/orchestratorType", - "properties/orchestrators/9/upgrades/2/orchestratorType", - "properties/orchestrators/9/upgrades/3/orchestratorType", - "properties/orchestrators/9/upgrades/4/orchestratorType", + "$/properties/orchestrators/9/upgrades/1/orchestratorType", + "$/properties/orchestrators/9/upgrades/2/orchestratorType", + "$/properties/orchestrators/9/upgrades/3/orchestratorType", + "$/properties/orchestrators/9/upgrades/4/orchestratorType", ], "title": "#/definitions/OrchestratorProfile", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2017-09-30/location.json", @@ -53446,7 +54038,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "The profile of an orchestrator and its available versions.", "directives": Object {}, - "jsonPath": "$.properties.orchestrators[9].default", + "jsonPath": "$['properties']['orchestrators'][9]['default']", "jsonPosition": Object { "column": 13, "line": 117, @@ -53456,7 +54048,7 @@ Array [ "params": Array [ "default", ], - "path": "properties/orchestrators/9/default", + "path": "$/properties/orchestrators/9/default", "position": Object { "column": 35, "line": 93, @@ -53476,30 +54068,30 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Contains information about orchestrator.", "directives": Object {}, - "jsonPath": "$.properties.orchestrators[8].upgrades[0].orchestratorType", + "jsonPath": "$['properties']['orchestrators'][8]['upgrades'][0]['orchestratorType']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2017-09-30/examples/ContainerServiceListOrchestrators.json", "message": "Missing required property: orchestratorType", "params": Array [ "orchestratorType", ], - "path": "properties/orchestrators/8/upgrades/0/orchestratorType", + "path": "$/properties/orchestrators/8/upgrades/0/orchestratorType", "position": Object { "column": 28, "line": 76, }, "similarJsonPaths": Array [ - "$.properties.orchestrators[8].upgrades[1].orchestratorType", - "$.properties.orchestrators[8].upgrades[2].orchestratorType", - "$.properties.orchestrators[8].upgrades[3].orchestratorType", - "$.properties.orchestrators[8].upgrades[4].orchestratorType", - "$.properties.orchestrators[8].upgrades[5].orchestratorType", + "$['properties']['orchestrators'][8]['upgrades'][1]['orchestratorType']", + "$['properties']['orchestrators'][8]['upgrades'][2]['orchestratorType']", + "$['properties']['orchestrators'][8]['upgrades'][3]['orchestratorType']", + "$['properties']['orchestrators'][8]['upgrades'][4]['orchestratorType']", + "$['properties']['orchestrators'][8]['upgrades'][5]['orchestratorType']", ], "similarPaths": Array [ - "properties/orchestrators/8/upgrades/1/orchestratorType", - "properties/orchestrators/8/upgrades/2/orchestratorType", - "properties/orchestrators/8/upgrades/3/orchestratorType", - "properties/orchestrators/8/upgrades/4/orchestratorType", - "properties/orchestrators/8/upgrades/5/orchestratorType", + "$/properties/orchestrators/8/upgrades/1/orchestratorType", + "$/properties/orchestrators/8/upgrades/2/orchestratorType", + "$/properties/orchestrators/8/upgrades/3/orchestratorType", + "$/properties/orchestrators/8/upgrades/4/orchestratorType", + "$/properties/orchestrators/8/upgrades/5/orchestratorType", ], "title": "#/definitions/OrchestratorProfile", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2017-09-30/location.json", @@ -53516,7 +54108,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "The profile of an orchestrator and its available versions.", "directives": Object {}, - "jsonPath": "$.properties.orchestrators[8].default", + "jsonPath": "$['properties']['orchestrators'][8]['default']", "jsonPosition": Object { "column": 13, "line": 93, @@ -53526,7 +54118,7 @@ Array [ "params": Array [ "default", ], - "path": "properties/orchestrators/8/default", + "path": "$/properties/orchestrators/8/default", "position": Object { "column": 35, "line": 93, @@ -53546,38 +54138,38 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Contains information about orchestrator.", "directives": Object {}, - "jsonPath": "$.properties.orchestrators[7].upgrades[0].orchestratorType", + "jsonPath": "$['properties']['orchestrators'][7]['upgrades'][0]['orchestratorType']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2017-09-30/examples/ContainerServiceListOrchestrators.json", "message": "Missing required property: orchestratorType", "params": Array [ "orchestratorType", ], - "path": "properties/orchestrators/7/upgrades/0/orchestratorType", + "path": "$/properties/orchestrators/7/upgrades/0/orchestratorType", "position": Object { "column": 28, "line": 76, }, "similarJsonPaths": Array [ - "$.properties.orchestrators[7].upgrades[1].orchestratorType", - "$.properties.orchestrators[7].upgrades[2].orchestratorType", - "$.properties.orchestrators[7].upgrades[3].orchestratorType", - "$.properties.orchestrators[7].upgrades[4].orchestratorType", - "$.properties.orchestrators[7].upgrades[5].orchestratorType", - "$.properties.orchestrators[7].upgrades[6].orchestratorType", - "$.properties.orchestrators[7].upgrades[7].orchestratorType", - "$.properties.orchestrators[7].upgrades[8].orchestratorType", - "$.properties.orchestrators[7].upgrades[9].orchestratorType", + "$['properties']['orchestrators'][7]['upgrades'][1]['orchestratorType']", + "$['properties']['orchestrators'][7]['upgrades'][2]['orchestratorType']", + "$['properties']['orchestrators'][7]['upgrades'][3]['orchestratorType']", + "$['properties']['orchestrators'][7]['upgrades'][4]['orchestratorType']", + "$['properties']['orchestrators'][7]['upgrades'][5]['orchestratorType']", + "$['properties']['orchestrators'][7]['upgrades'][6]['orchestratorType']", + "$['properties']['orchestrators'][7]['upgrades'][7]['orchestratorType']", + "$['properties']['orchestrators'][7]['upgrades'][8]['orchestratorType']", + "$['properties']['orchestrators'][7]['upgrades'][9]['orchestratorType']", ], "similarPaths": Array [ - "properties/orchestrators/7/upgrades/1/orchestratorType", - "properties/orchestrators/7/upgrades/2/orchestratorType", - "properties/orchestrators/7/upgrades/3/orchestratorType", - "properties/orchestrators/7/upgrades/4/orchestratorType", - "properties/orchestrators/7/upgrades/5/orchestratorType", - "properties/orchestrators/7/upgrades/6/orchestratorType", - "properties/orchestrators/7/upgrades/7/orchestratorType", - "properties/orchestrators/7/upgrades/8/orchestratorType", - "properties/orchestrators/7/upgrades/9/orchestratorType", + "$/properties/orchestrators/7/upgrades/1/orchestratorType", + "$/properties/orchestrators/7/upgrades/2/orchestratorType", + "$/properties/orchestrators/7/upgrades/3/orchestratorType", + "$/properties/orchestrators/7/upgrades/4/orchestratorType", + "$/properties/orchestrators/7/upgrades/5/orchestratorType", + "$/properties/orchestrators/7/upgrades/6/orchestratorType", + "$/properties/orchestrators/7/upgrades/7/orchestratorType", + "$/properties/orchestrators/7/upgrades/8/orchestratorType", + "$/properties/orchestrators/7/upgrades/9/orchestratorType", ], "title": "#/definitions/OrchestratorProfile", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2017-09-30/location.json", @@ -53594,7 +54186,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "The profile of an orchestrator and its available versions.", "directives": Object {}, - "jsonPath": "$.properties.orchestrators[7].default", + "jsonPath": "$['properties']['orchestrators'][7]['default']", "jsonPosition": Object { "column": 13, "line": 57, @@ -53604,7 +54196,7 @@ Array [ "params": Array [ "default", ], - "path": "properties/orchestrators/7/default", + "path": "$/properties/orchestrators/7/default", "position": Object { "column": 35, "line": 93, @@ -53624,13 +54216,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Contains information about orchestrator.", "directives": Object {}, - "jsonPath": "$.properties.orchestrators[6].upgrades[0].orchestratorType", + "jsonPath": "$['properties']['orchestrators'][6]['upgrades'][0]['orchestratorType']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2017-09-30/examples/ContainerServiceListOrchestrators.json", "message": "Missing required property: orchestratorType", "params": Array [ "orchestratorType", ], - "path": "properties/orchestrators/6/upgrades/0/orchestratorType", + "path": "$/properties/orchestrators/6/upgrades/0/orchestratorType", "position": Object { "column": 28, "line": 76, @@ -53650,7 +54242,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "The profile of an orchestrator and its available versions.", "directives": Object {}, - "jsonPath": "$.properties.orchestrators[6].default", + "jsonPath": "$['properties']['orchestrators'][6]['default']", "jsonPosition": Object { "column": 13, "line": 48, @@ -53660,7 +54252,7 @@ Array [ "params": Array [ "default", ], - "path": "properties/orchestrators/6/default", + "path": "$/properties/orchestrators/6/default", "position": Object { "column": 35, "line": 93, @@ -53680,22 +54272,22 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Contains information about orchestrator.", "directives": Object {}, - "jsonPath": "$.properties.orchestrators[5].upgrades[0].orchestratorType", + "jsonPath": "$['properties']['orchestrators'][5]['upgrades'][0]['orchestratorType']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2017-09-30/examples/ContainerServiceListOrchestrators.json", "message": "Missing required property: orchestratorType", "params": Array [ "orchestratorType", ], - "path": "properties/orchestrators/5/upgrades/0/orchestratorType", + "path": "$/properties/orchestrators/5/upgrades/0/orchestratorType", "position": Object { "column": 28, "line": 76, }, "similarJsonPaths": Array [ - "$.properties.orchestrators[5].upgrades[1].orchestratorType", + "$['properties']['orchestrators'][5]['upgrades'][1]['orchestratorType']", ], "similarPaths": Array [ - "properties/orchestrators/5/upgrades/1/orchestratorType", + "$/properties/orchestrators/5/upgrades/1/orchestratorType", ], "title": "#/definitions/OrchestratorProfile", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2017-09-30/location.json", @@ -53712,7 +54304,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "The profile of an orchestrator and its available versions.", "directives": Object {}, - "jsonPath": "$.properties.orchestrators[5].default", + "jsonPath": "$['properties']['orchestrators'][5]['default']", "jsonPosition": Object { "column": 13, "line": 36, @@ -53722,7 +54314,7 @@ Array [ "params": Array [ "default", ], - "path": "properties/orchestrators/5/default", + "path": "$/properties/orchestrators/5/default", "position": Object { "column": 35, "line": 93, @@ -53742,7 +54334,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "The profile of an orchestrator and its available versions.", "directives": Object {}, - "jsonPath": "$.properties.orchestrators[4].upgrades", + "jsonPath": "$['properties']['orchestrators'][4]['upgrades']", "jsonPosition": Object { "column": 13, "line": 32, @@ -53752,7 +54344,7 @@ Array [ "params": Array [ "upgrades", ], - "path": "properties/orchestrators/4/upgrades", + "path": "$/properties/orchestrators/4/upgrades", "position": Object { "column": 35, "line": 93, @@ -53772,7 +54364,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "The profile of an orchestrator and its available versions.", "directives": Object {}, - "jsonPath": "$.properties.orchestrators[4].default", + "jsonPath": "$['properties']['orchestrators'][4]['default']", "jsonPosition": Object { "column": 13, "line": 32, @@ -53782,7 +54374,7 @@ Array [ "params": Array [ "default", ], - "path": "properties/orchestrators/4/default", + "path": "$/properties/orchestrators/4/default", "position": Object { "column": 35, "line": 93, @@ -53802,7 +54394,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "The profile of an orchestrator and its available versions.", "directives": Object {}, - "jsonPath": "$.properties.orchestrators[3].upgrades", + "jsonPath": "$['properties']['orchestrators'][3]['upgrades']", "jsonPosition": Object { "column": 13, "line": 28, @@ -53812,7 +54404,7 @@ Array [ "params": Array [ "upgrades", ], - "path": "properties/orchestrators/3/upgrades", + "path": "$/properties/orchestrators/3/upgrades", "position": Object { "column": 35, "line": 93, @@ -53832,7 +54424,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "The profile of an orchestrator and its available versions.", "directives": Object {}, - "jsonPath": "$.properties.orchestrators[3].default", + "jsonPath": "$['properties']['orchestrators'][3]['default']", "jsonPosition": Object { "column": 13, "line": 28, @@ -53842,7 +54434,7 @@ Array [ "params": Array [ "default", ], - "path": "properties/orchestrators/3/default", + "path": "$/properties/orchestrators/3/default", "position": Object { "column": 35, "line": 93, @@ -53862,7 +54454,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "The profile of an orchestrator and its available versions.", "directives": Object {}, - "jsonPath": "$.properties.orchestrators[2].upgrades", + "jsonPath": "$['properties']['orchestrators'][2]['upgrades']", "jsonPosition": Object { "column": 13, "line": 24, @@ -53872,7 +54464,7 @@ Array [ "params": Array [ "upgrades", ], - "path": "properties/orchestrators/2/upgrades", + "path": "$/properties/orchestrators/2/upgrades", "position": Object { "column": 35, "line": 93, @@ -53892,7 +54484,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "The profile of an orchestrator and its available versions.", "directives": Object {}, - "jsonPath": "$.properties.orchestrators[2].default", + "jsonPath": "$['properties']['orchestrators'][2]['default']", "jsonPosition": Object { "column": 13, "line": 24, @@ -53902,7 +54494,7 @@ Array [ "params": Array [ "default", ], - "path": "properties/orchestrators/2/default", + "path": "$/properties/orchestrators/2/default", "position": Object { "column": 35, "line": 93, @@ -53922,7 +54514,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "The profile of an orchestrator and its available versions.", "directives": Object {}, - "jsonPath": "$.properties.orchestrators[1].upgrades", + "jsonPath": "$['properties']['orchestrators'][1]['upgrades']", "jsonPosition": Object { "column": 13, "line": 19, @@ -53932,7 +54524,7 @@ Array [ "params": Array [ "upgrades", ], - "path": "properties/orchestrators/1/upgrades", + "path": "$/properties/orchestrators/1/upgrades", "position": Object { "column": 35, "line": 93, @@ -53952,7 +54544,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "The profile of an orchestrator and its available versions.", "directives": Object {}, - "jsonPath": "$.properties.orchestrators[0].upgrades", + "jsonPath": "$['properties']['orchestrators'][0]['upgrades']", "jsonPosition": Object { "column": 13, "line": 15, @@ -53962,7 +54554,7 @@ Array [ "params": Array [ "upgrades", ], - "path": "properties/orchestrators/0/upgrades", + "path": "$/properties/orchestrators/0/upgrades", "position": Object { "column": 35, "line": 93, @@ -53982,7 +54574,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "The profile of an orchestrator and its available versions.", "directives": Object {}, - "jsonPath": "$.properties.orchestrators[0].default", + "jsonPath": "$['properties']['orchestrators'][0]['default']", "jsonPosition": Object { "column": 13, "line": 15, @@ -53992,7 +54584,7 @@ Array [ "params": Array [ "default", ], - "path": "properties/orchestrators/0/default", + "path": "$/properties/orchestrators/0/default", "position": Object { "column": 35, "line": 93, @@ -54035,22 +54627,22 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of an Alert.", "directives": Object {}, - "jsonPath": "$.value[0].properties.statusModificationUserName", + "jsonPath": "$['value'][0]['properties']['statusModificationUserName']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2018-08-01-preview/examples/AlertList.json", "message": "Additional properties not allowed: statusModificationUserName", "params": Array [ "statusModificationUserName", ], - "path": "value/0/properties/statusModificationUserName", + "path": "$/value/0/properties/statusModificationUserName", "position": Object { "column": 24, "line": 3703, }, "similarJsonPaths": Array [ - "$.value[1].properties.statusModificationUserName", + "$['value'][1]['properties']['statusModificationUserName']", ], "similarPaths": Array [ - "value/1/properties/statusModificationUserName", + "$/value/1/properties/statusModificationUserName", ], "title": "#/definitions/AlertProperties", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2018-08-01-preview/costmanagement.json", @@ -54067,22 +54659,22 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of an Alert.", "directives": Object {}, - "jsonPath": "$.value[0].properties.statusModificationUserName", + "jsonPath": "$['value'][0]['properties']['statusModificationUserName']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2018-08-01-preview/examples/AlertList.json", "message": "Additional properties not allowed: statusModificationUserName", "params": Array [ "statusModificationUserName", ], - "path": "value/0/properties/statusModificationUserName", + "path": "$/value/0/properties/statusModificationUserName", "position": Object { "column": 24, "line": 3703, }, "similarJsonPaths": Array [ - "$.value[1].properties.statusModificationUserName", + "$['value'][1]['properties']['statusModificationUserName']", ], "similarPaths": Array [ - "value/1/properties/statusModificationUserName", + "$/value/1/properties/statusModificationUserName", ], "title": "#/definitions/AlertProperties", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2018-08-01-preview/costmanagement.json", @@ -54123,22 +54715,22 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of an Alert.", "directives": Object {}, - "jsonPath": "$.value[0].properties.statusModificationUserName", + "jsonPath": "$['value'][0]['properties']['statusModificationUserName']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2018-08-01-preview/examples/AlertList.json", "message": "Additional properties not allowed: statusModificationUserName", "params": Array [ "statusModificationUserName", ], - "path": "value/0/properties/statusModificationUserName", + "path": "$/value/0/properties/statusModificationUserName", "position": Object { "column": 24, "line": 3703, }, "similarJsonPaths": Array [ - "$.value[1].properties.statusModificationUserName", + "$['value'][1]['properties']['statusModificationUserName']", ], "similarPaths": Array [ - "value/1/properties/statusModificationUserName", + "$/value/1/properties/statusModificationUserName", ], "title": "#/definitions/AlertProperties", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2018-08-01-preview/costmanagement.json", @@ -54179,22 +54771,22 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of an Alert.", "directives": Object {}, - "jsonPath": "$.value[0].properties.statusModificationUserName", + "jsonPath": "$['value'][0]['properties']['statusModificationUserName']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2018-08-01-preview/examples/AlertList.json", "message": "Additional properties not allowed: statusModificationUserName", "params": Array [ "statusModificationUserName", ], - "path": "value/0/properties/statusModificationUserName", + "path": "$/value/0/properties/statusModificationUserName", "position": Object { "column": 24, "line": 3703, }, "similarJsonPaths": Array [ - "$.value[1].properties.statusModificationUserName", + "$['value'][1]['properties']['statusModificationUserName']", ], "similarPaths": Array [ - "value/1/properties/statusModificationUserName", + "$/value/1/properties/statusModificationUserName", ], "title": "#/definitions/AlertProperties", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2018-08-01-preview/costmanagement.json", @@ -54235,22 +54827,22 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of an Alert.", "directives": Object {}, - "jsonPath": "$.value[0].properties.statusModificationUserName", + "jsonPath": "$['value'][0]['properties']['statusModificationUserName']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2018-08-01-preview/examples/AlertList.json", "message": "Additional properties not allowed: statusModificationUserName", "params": Array [ "statusModificationUserName", ], - "path": "value/0/properties/statusModificationUserName", + "path": "$/value/0/properties/statusModificationUserName", "position": Object { "column": 24, "line": 3703, }, "similarJsonPaths": Array [ - "$.value[1].properties.statusModificationUserName", + "$['value'][1]['properties']['statusModificationUserName']", ], "similarPaths": Array [ - "value/1/properties/statusModificationUserName", + "$/value/1/properties/statusModificationUserName", ], "title": "#/definitions/AlertProperties", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2018-08-01-preview/costmanagement.json", @@ -54291,22 +54883,22 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of an Alert.", "directives": Object {}, - "jsonPath": "$.value[0].properties.statusModificationUserName", + "jsonPath": "$['value'][0]['properties']['statusModificationUserName']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2018-08-01-preview/examples/AlertList.json", "message": "Additional properties not allowed: statusModificationUserName", "params": Array [ "statusModificationUserName", ], - "path": "value/0/properties/statusModificationUserName", + "path": "$/value/0/properties/statusModificationUserName", "position": Object { "column": 24, "line": 3703, }, "similarJsonPaths": Array [ - "$.value[1].properties.statusModificationUserName", + "$['value'][1]['properties']['statusModificationUserName']", ], "similarPaths": Array [ - "value/1/properties/statusModificationUserName", + "$/value/1/properties/statusModificationUserName", ], "title": "#/definitions/AlertProperties", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2018-08-01-preview/costmanagement.json", @@ -54323,7 +54915,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of an Alert.", "directives": Object {}, - "jsonPath": "$.properties.statusModificationUserName", + "jsonPath": "$['properties']['statusModificationUserName']", "jsonPosition": Object { "column": 25, "line": 14, @@ -54333,7 +54925,7 @@ Array [ "params": Array [ "statusModificationUserName", ], - "path": "properties/statusModificationUserName", + "path": "$/properties/statusModificationUserName", "position": Object { "column": 24, "line": 3703, @@ -54353,7 +54945,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of an Alert.", "directives": Object {}, - "jsonPath": "$.properties.statusModificationUserName", + "jsonPath": "$['properties']['statusModificationUserName']", "jsonPosition": Object { "column": 25, "line": 14, @@ -54363,7 +54955,7 @@ Array [ "params": Array [ "statusModificationUserName", ], - "path": "properties/statusModificationUserName", + "path": "$/properties/statusModificationUserName", "position": Object { "column": 24, "line": 3703, @@ -54407,7 +54999,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of an Alert.", "directives": Object {}, - "jsonPath": "$.properties.statusModificationUserName", + "jsonPath": "$['properties']['statusModificationUserName']", "jsonPosition": Object { "column": 25, "line": 14, @@ -54417,7 +55009,7 @@ Array [ "params": Array [ "statusModificationUserName", ], - "path": "properties/statusModificationUserName", + "path": "$/properties/statusModificationUserName", "position": Object { "column": 24, "line": 3703, @@ -54461,7 +55053,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of an Alert.", "directives": Object {}, - "jsonPath": "$.properties.statusModificationUserName", + "jsonPath": "$['properties']['statusModificationUserName']", "jsonPosition": Object { "column": 25, "line": 14, @@ -54471,7 +55063,7 @@ Array [ "params": Array [ "statusModificationUserName", ], - "path": "properties/statusModificationUserName", + "path": "$/properties/statusModificationUserName", "position": Object { "column": 24, "line": 3703, @@ -54515,7 +55107,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of an Alert.", "directives": Object {}, - "jsonPath": "$.properties.statusModificationUserName", + "jsonPath": "$['properties']['statusModificationUserName']", "jsonPosition": Object { "column": 25, "line": 14, @@ -54525,7 +55117,7 @@ Array [ "params": Array [ "statusModificationUserName", ], - "path": "properties/statusModificationUserName", + "path": "$/properties/statusModificationUserName", "position": Object { "column": 24, "line": 3703, @@ -54569,7 +55161,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of an Alert.", "directives": Object {}, - "jsonPath": "$.properties.statusModificationUserName", + "jsonPath": "$['properties']['statusModificationUserName']", "jsonPosition": Object { "column": 25, "line": 14, @@ -54579,7 +55171,7 @@ Array [ "params": Array [ "statusModificationUserName", ], - "path": "properties/statusModificationUserName", + "path": "$/properties/statusModificationUserName", "position": Object { "column": 24, "line": 3703, @@ -54623,7 +55215,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of an Alert.", "directives": Object {}, - "jsonPath": "$.properties.statusModificationUserName", + "jsonPath": "$['properties']['statusModificationUserName']", "jsonPosition": Object { "column": 25, "line": 14, @@ -54633,7 +55225,7 @@ Array [ "params": Array [ "statusModificationUserName", ], - "path": "properties/statusModificationUserName", + "path": "$/properties/statusModificationUserName", "position": Object { "column": 24, "line": 3703, @@ -54677,7 +55269,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of an Alert.", "directives": Object {}, - "jsonPath": "$.properties.statusModificationUserName", + "jsonPath": "$['properties']['statusModificationUserName']", "jsonPosition": Object { "column": 25, "line": 14, @@ -54687,7 +55279,7 @@ Array [ "params": Array [ "statusModificationUserName", ], - "path": "properties/statusModificationUserName", + "path": "$/properties/statusModificationUserName", "position": Object { "column": 24, "line": 3703, @@ -54731,7 +55323,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of an Alert.", "directives": Object {}, - "jsonPath": "$.properties.statusModificationUserName", + "jsonPath": "$['properties']['statusModificationUserName']", "jsonPosition": Object { "column": 25, "line": 14, @@ -54741,7 +55333,7 @@ Array [ "params": Array [ "statusModificationUserName", ], - "path": "properties/statusModificationUserName", + "path": "$/properties/statusModificationUserName", "position": Object { "column": 24, "line": 3703, @@ -54785,7 +55377,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of an Alert.", "directives": Object {}, - "jsonPath": "$.properties.statusModificationUserName", + "jsonPath": "$['properties']['statusModificationUserName']", "jsonPosition": Object { "column": 25, "line": 14, @@ -54795,7 +55387,7 @@ Array [ "params": Array [ "statusModificationUserName", ], - "path": "properties/statusModificationUserName", + "path": "$/properties/statusModificationUserName", "position": Object { "column": 24, "line": 3703, @@ -54839,7 +55431,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of an Alert.", "directives": Object {}, - "jsonPath": "$.properties.statusModificationUserName", + "jsonPath": "$['properties']['statusModificationUserName']", "jsonPosition": Object { "column": 25, "line": 14, @@ -54849,7 +55441,7 @@ Array [ "params": Array [ "statusModificationUserName", ], - "path": "properties/statusModificationUserName", + "path": "$/properties/statusModificationUserName", "position": Object { "column": 24, "line": 3703, @@ -54893,7 +55485,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of an Alert.", "directives": Object {}, - "jsonPath": "$.properties.statusModificationUserName", + "jsonPath": "$['properties']['statusModificationUserName']", "jsonPosition": Object { "column": 25, "line": 14, @@ -54903,7 +55495,7 @@ Array [ "params": Array [ "statusModificationUserName", ], - "path": "properties/statusModificationUserName", + "path": "$/properties/statusModificationUserName", "position": Object { "column": 24, "line": 3703, @@ -54934,14 +55526,14 @@ Array [ "code": "INVALID_FORMAT", "description": "The current time when showback rule was deprecate.", "directives": Object {}, - "jsonPath": "$.value[0].properties.deprecationTime", + "jsonPath": "$['value'][0]['properties']['deprecationTime']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-03-01-preview/examples/ShowbackRulesList.json", "message": "Object didn't pass validation for format date-time: 0001-01-01T00:00:00", "params": Array [ "date-time", "0001-01-01T00:00:00", ], - "path": "value/0/properties/deprecationTime", + "path": "$/value/0/properties/deprecationTime", "position": Object { "column": 28, "line": 2886, @@ -54961,14 +55553,14 @@ Array [ "code": "INVALID_FORMAT", "description": "The current status when showback rule was modified.", "directives": Object {}, - "jsonPath": "$.value[0].properties.modificationTime", + "jsonPath": "$['value'][0]['properties']['modificationTime']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-03-01-preview/examples/ShowbackRulesList.json", "message": "Object didn't pass validation for format date-time: 0001-01-01T00:00:00", "params": Array [ "date-time", "0001-01-01T00:00:00", ], - "path": "value/0/properties/modificationTime", + "path": "$/value/0/properties/modificationTime", "position": Object { "column": 29, "line": 2892, @@ -54988,13 +55580,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of a showback rule.", "directives": Object {}, - "jsonPath": "$.value[0].properties.details", + "jsonPath": "$['value'][0]['properties']['details']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-03-01-preview/examples/ShowbackRulesList.json", "message": "Additional properties not allowed: details", "params": Array [ "details", ], - "path": "value/0/properties/details", + "path": "$/value/0/properties/details", "position": Object { "column": 31, "line": 2848, @@ -55014,13 +55606,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of a showback rule.", "directives": Object {}, - "jsonPath": "$.value[0].properties.assignedScopes", + "jsonPath": "$['value'][0]['properties']['assignedScopes']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-03-01-preview/examples/ShowbackRulesList.json", "message": "Additional properties not allowed: assignedScopes", "params": Array [ "assignedScopes", ], - "path": "value/0/properties/assignedScopes", + "path": "$/value/0/properties/assignedScopes", "position": Object { "column": 31, "line": 2848, @@ -55040,13 +55632,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of a showback rule.", "directives": Object {}, - "jsonPath": "$.value[0].properties.ruleType", + "jsonPath": "$['value'][0]['properties']['ruleType']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-03-01-preview/examples/ShowbackRulesList.json", "message": "Additional properties not allowed: ruleType", "params": Array [ "ruleType", ], - "path": "value/0/properties/ruleType", + "path": "$/value/0/properties/ruleType", "position": Object { "column": 31, "line": 2848, @@ -55066,13 +55658,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The showback rule model definition", "directives": Object {}, - "jsonPath": "$.value[0].eTag", + "jsonPath": "$['value'][0]['eTag']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/cost-management/resource-manager/Microsoft.CostManagement/preview/2019-03-01-preview/examples/ShowbackRulesList.json", "message": "Additional properties not allowed: eTag", "params": Array [ "eTag", ], - "path": "value/0/eTag", + "path": "$/value/0/eTag", "position": Object { "column": 21, "line": 2822, @@ -55092,7 +55684,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The showback rule model definition", "directives": Object {}, - "jsonPath": "$.eTag", + "jsonPath": "$['eTag']", "jsonPosition": Object { "column": 15, "line": 9, @@ -55102,7 +55694,7 @@ Array [ "params": Array [ "eTag", ], - "path": "eTag", + "path": "$/eTag", "position": Object { "column": 21, "line": 2822, @@ -55122,7 +55714,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of a showback rule.", "directives": Object {}, - "jsonPath": "$.properties.ruleType", + "jsonPath": "$['properties']['ruleType']", "jsonPosition": Object { "column": 23, "line": 14, @@ -55132,7 +55724,7 @@ Array [ "params": Array [ "ruleType", ], - "path": "properties/ruleType", + "path": "$/properties/ruleType", "position": Object { "column": 31, "line": 2848, @@ -55152,7 +55744,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of a showback rule.", "directives": Object {}, - "jsonPath": "$.properties.assignedScopes", + "jsonPath": "$['properties']['assignedScopes']", "jsonPosition": Object { "column": 23, "line": 14, @@ -55162,7 +55754,7 @@ Array [ "params": Array [ "assignedScopes", ], - "path": "properties/assignedScopes", + "path": "$/properties/assignedScopes", "position": Object { "column": 31, "line": 2848, @@ -55182,7 +55774,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of a showback rule.", "directives": Object {}, - "jsonPath": "$.properties.details", + "jsonPath": "$['properties']['details']", "jsonPosition": Object { "column": 23, "line": 14, @@ -55192,7 +55784,7 @@ Array [ "params": Array [ "details", ], - "path": "properties/details", + "path": "$/properties/details", "position": Object { "column": 31, "line": 2848, @@ -55212,7 +55804,7 @@ Array [ "code": "INVALID_FORMAT", "description": "The current status when showback rule was modified.", "directives": Object {}, - "jsonPath": "$.properties.modificationTime", + "jsonPath": "$['properties']['modificationTime']", "jsonPosition": Object { "column": 31, "line": 20, @@ -55223,7 +55815,7 @@ Array [ "date-time", "0001-01-01T00:00:00", ], - "path": "properties/modificationTime", + "path": "$/properties/modificationTime", "position": Object { "column": 29, "line": 2892, @@ -55243,7 +55835,7 @@ Array [ "code": "INVALID_FORMAT", "description": "The current time when showback rule was deprecate.", "directives": Object {}, - "jsonPath": "$.properties.deprecationTime", + "jsonPath": "$['properties']['deprecationTime']", "jsonPosition": Object { "column": 30, "line": 18, @@ -55254,7 +55846,7 @@ Array [ "date-time", "0001-01-01T00:00:00", ], - "path": "properties/deprecationTime", + "path": "$/properties/deprecationTime", "position": Object { "column": 28, "line": 2886, @@ -55274,12 +55866,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of a showback rule.", "directives": Object {}, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "message": "Additional properties not allowed: properties", "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 31, "line": 2848, @@ -55299,7 +55891,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The showback rule model definition", "directives": Object {}, - "jsonPath": "$.eTag", + "jsonPath": "$['eTag']", "jsonPosition": Object { "column": 15, "line": 34, @@ -55309,7 +55901,7 @@ Array [ "params": Array [ "eTag", ], - "path": "eTag", + "path": "$/eTag", "position": Object { "column": 21, "line": 2822, @@ -55329,7 +55921,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of a showback rule.", "directives": Object {}, - "jsonPath": "$.properties.ruleType", + "jsonPath": "$['properties']['ruleType']", "jsonPosition": Object { "column": 23, "line": 39, @@ -55339,7 +55931,7 @@ Array [ "params": Array [ "ruleType", ], - "path": "properties/ruleType", + "path": "$/properties/ruleType", "position": Object { "column": 31, "line": 2848, @@ -55359,7 +55951,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of a showback rule.", "directives": Object {}, - "jsonPath": "$.properties.details", + "jsonPath": "$['properties']['details']", "jsonPosition": Object { "column": 23, "line": 39, @@ -55369,7 +55961,7 @@ Array [ "params": Array [ "details", ], - "path": "properties/details", + "path": "$/properties/details", "position": Object { "column": 31, "line": 2848, @@ -55389,7 +55981,7 @@ Array [ "code": "INVALID_FORMAT", "description": "The current status when showback rule was modified.", "directives": Object {}, - "jsonPath": "$.properties.modificationTime", + "jsonPath": "$['properties']['modificationTime']", "jsonPosition": Object { "column": 31, "line": 43, @@ -55400,7 +55992,7 @@ Array [ "date-time", "0001-01-01T00:00:00", ], - "path": "properties/modificationTime", + "path": "$/properties/modificationTime", "position": Object { "column": 29, "line": 2892, @@ -55420,7 +56012,7 @@ Array [ "code": "INVALID_FORMAT", "description": "The current time when showback rule was deprecate.", "directives": Object {}, - "jsonPath": "$.properties.deprecationTime", + "jsonPath": "$['properties']['deprecationTime']", "jsonPosition": Object { "column": 30, "line": 41, @@ -55431,7 +56023,7 @@ Array [ "date-time", "0001-01-01T00:00:00", ], - "path": "properties/deprecationTime", + "path": "$/properties/deprecationTime", "position": Object { "column": 28, "line": 2886, @@ -55466,80 +56058,80 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The object that represents the operation.", "directives": Object {}, - "jsonPath": "$.value[0].display.description", + "jsonPath": "$['value'][0]['display']['description']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/examples/DCIOperations_List.json", "message": "Additional properties not allowed: description", "params": Array [ "description", ], - "path": "value/0/display/description", + "path": "$/value/0/display/description", "position": Object { "column": 20, "line": 5661, }, "similarJsonPaths": Array [ - "$.value[1].display.description", - "$.value[2].display.description", - "$.value[3].display.description", - "$.value[4].display.description", - "$.value[5].display.description", - "$.value[6].display.description", - "$.value[7].display.description", - "$.value[8].display.description", - "$.value[9].display.description", - "$.value[10].display.description", - "$.value[11].display.description", - "$.value[12].display.description", - "$.value[13].display.description", - "$.value[14].display.description", - "$.value[15].display.description", - "$.value[16].display.description", - "$.value[17].display.description", - "$.value[18].display.description", - "$.value[19].display.description", - "$.value[20].display.description", - "$.value[21].display.description", - "$.value[22].display.description", - "$.value[23].display.description", - "$.value[24].display.description", - "$.value[25].display.description", - "$.value[26].display.description", - "$.value[27].display.description", - "$.value[28].display.description", - "$.value[29].display.description", - "$.value[30].display.description", + "$['value'][1]['display']['description']", + "$['value'][2]['display']['description']", + "$['value'][3]['display']['description']", + "$['value'][4]['display']['description']", + "$['value'][5]['display']['description']", + "$['value'][6]['display']['description']", + "$['value'][7]['display']['description']", + "$['value'][8]['display']['description']", + "$['value'][9]['display']['description']", + "$['value'][10]['display']['description']", + "$['value'][11]['display']['description']", + "$['value'][12]['display']['description']", + "$['value'][13]['display']['description']", + "$['value'][14]['display']['description']", + "$['value'][15]['display']['description']", + "$['value'][16]['display']['description']", + "$['value'][17]['display']['description']", + "$['value'][18]['display']['description']", + "$['value'][19]['display']['description']", + "$['value'][20]['display']['description']", + "$['value'][21]['display']['description']", + "$['value'][22]['display']['description']", + "$['value'][23]['display']['description']", + "$['value'][24]['display']['description']", + "$['value'][25]['display']['description']", + "$['value'][26]['display']['description']", + "$['value'][27]['display']['description']", + "$['value'][28]['display']['description']", + "$['value'][29]['display']['description']", + "$['value'][30]['display']['description']", ], "similarPaths": Array [ - "value/1/display/description", - "value/2/display/description", - "value/3/display/description", - "value/4/display/description", - "value/5/display/description", - "value/6/display/description", - "value/7/display/description", - "value/8/display/description", - "value/9/display/description", - "value/10/display/description", - "value/11/display/description", - "value/12/display/description", - "value/13/display/description", - "value/14/display/description", - "value/15/display/description", - "value/16/display/description", - "value/17/display/description", - "value/18/display/description", - "value/19/display/description", - "value/20/display/description", - "value/21/display/description", - "value/22/display/description", - "value/23/display/description", - "value/24/display/description", - "value/25/display/description", - "value/26/display/description", - "value/27/display/description", - "value/28/display/description", - "value/29/display/description", - "value/30/display/description", + "$/value/1/display/description", + "$/value/2/display/description", + "$/value/3/display/description", + "$/value/4/display/description", + "$/value/5/display/description", + "$/value/6/display/description", + "$/value/7/display/description", + "$/value/8/display/description", + "$/value/9/display/description", + "$/value/10/display/description", + "$/value/11/display/description", + "$/value/12/display/description", + "$/value/13/display/description", + "$/value/14/display/description", + "$/value/15/display/description", + "$/value/16/display/description", + "$/value/17/display/description", + "$/value/18/display/description", + "$/value/19/display/description", + "$/value/20/display/description", + "$/value/21/display/description", + "$/value/22/display/description", + "$/value/23/display/description", + "$/value/24/display/description", + "$/value/25/display/description", + "$/value/26/display/description", + "$/value/27/display/description", + "$/value/28/display/description", + "$/value/29/display/description", + "$/value/30/display/description", ], "title": "#/definitions/Operation/properties/display", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/customer-insights/resource-manager/Microsoft.CustomerInsights/stable/2017-01-01/customer-insights.json", @@ -55556,13 +56148,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the Relationship Link.", "directives": Object {}, - "jsonPath": "$.properties.linkName", + "jsonPath": "$['properties']['linkName']", "message": "ReadOnly property \`\\"linkName\\": \\"Somelink\\"\`, cannot be sent in the request.", "params": Array [ "linkName", "Somelink", ], - "path": "properties/linkName", + "path": "$/properties/linkName", "position": Object { "column": 21, "line": 4636, @@ -55582,13 +56174,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The link name.", "directives": Object {}, - "jsonPath": "$.properties.linkName", + "jsonPath": "$['properties']['linkName']", "message": "ReadOnly property \`\\"linkName\\": \\"linkTest4806\\"\`, cannot be sent in the request.", "params": Array [ "linkName", "linkTest4806", ], - "path": "properties/linkName", + "path": "$/properties/linkName", "position": Object { "column": 21, "line": 4401, @@ -55619,12 +56211,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Factory's VSTS repo information.", "directives": Object {}, - "jsonPath": "$.factoryId", + "jsonPath": "$['factoryId']", "message": "Additional properties not allowed: factoryId", "params": Array [ "factoryId", ], - "path": "factoryId", + "path": "$/factoryId", "position": Object { "column": 28, "line": 2938, @@ -55676,13 +56268,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The state of integration runtime auto update.", "directives": Object {}, - "jsonPath": "$.autoUpdate", + "jsonPath": "$['autoUpdate']", "message": "ReadOnly property \`\\"IntegrationRuntimeAutoUpdate\\": \\"Off\\"\`, cannot be sent in the request.", "params": Array [ "IntegrationRuntimeAutoUpdate", "Off", ], - "path": "autoUpdate", + "path": "$/autoUpdate", "position": Object { "column": 37, "line": 613, @@ -55702,7 +56294,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Self-hosted integration runtime status type properties.", "directives": Object {}, - "jsonPath": "$.properties.typeProperties.nodeCommunicationChannelEncryptionMode", + "jsonPath": "$['properties']['typeProperties']['nodeCommunicationChannelEncryptionMode']", "jsonPosition": Object { "column": 29, "line": 25, @@ -55712,7 +56304,7 @@ Array [ "params": Array [ "nodeCommunicationChannelEncryptionMode", ], - "path": "properties/typeProperties/nodeCommunicationChannelEncryptionMode", + "path": "$/properties/typeProperties/nodeCommunicationChannelEncryptionMode", "position": Object { "column": 57, "line": 520, @@ -55732,7 +56324,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Self-hosted integration runtime status type properties.", "directives": Object {}, - "jsonPath": "$.properties.typeProperties.state", + "jsonPath": "$['properties']['typeProperties']['state']", "jsonPosition": Object { "column": 29, "line": 25, @@ -55742,7 +56334,7 @@ Array [ "params": Array [ "state", ], - "path": "properties/typeProperties/state", + "path": "$/properties/typeProperties/state", "position": Object { "column": 57, "line": 520, @@ -55794,7 +56386,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Managed integration runtime status.", "directives": Object {}, - "jsonPath": "$.properties.dataFactoryLocation", + "jsonPath": "$['properties']['dataFactoryLocation']", "jsonPosition": Object { "column": 23, "line": 18, @@ -55804,7 +56396,7 @@ Array [ "params": Array [ "dataFactoryLocation", ], - "path": "properties/dataFactoryLocation", + "path": "$/properties/dataFactoryLocation", "position": Object { "column": 40, "line": 336, @@ -55824,7 +56416,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Managed integration runtime status.", "directives": Object {}, - "jsonPath": "$.properties.resourceUri", + "jsonPath": "$['properties']['resourceUri']", "jsonPosition": Object { "column": 23, "line": 18, @@ -55834,7 +56426,7 @@ Array [ "params": Array [ "resourceUri", ], - "path": "properties/resourceUri", + "path": "$/properties/resourceUri", "position": Object { "column": 40, "line": 336, @@ -55854,7 +56446,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Managed integration runtime status type properties.", "directives": Object {}, - "jsonPath": "$.properties.typeProperties.state", + "jsonPath": "$['properties']['typeProperties']['state']", "jsonPosition": Object { "column": 29, "line": 31, @@ -55864,7 +56456,7 @@ Array [ "params": Array [ "state", ], - "path": "properties/typeProperties/state", + "path": "$/properties/typeProperties/state", "position": Object { "column": 54, "line": 356, @@ -56275,12 +56867,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "ARM tracked top level resource.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "message": "Missing required property: location", "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 24, "line": 193, @@ -56428,12 +57020,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "ARM tracked top level resource.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "message": "Missing required property: location", "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 24, "line": 193, @@ -56520,12 +57112,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "ARM tracked top level resource.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "message": "Missing required property: location", "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 24, "line": 193, @@ -56673,12 +57265,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "ARM tracked top level resource.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "message": "Missing required property: location", "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 24, "line": 193, @@ -56777,12 +57369,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "ARM tracked top level resource.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "message": "Missing required property: location", "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 24, "line": 193, @@ -56930,12 +57522,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "ARM tracked top level resource.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "message": "Missing required property: location", "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 24, "line": 193, @@ -57034,12 +57626,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "ARM tracked top level resource.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "message": "Missing required property: location", "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 24, "line": 197, @@ -57155,12 +57747,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Base class for all types of DMS command properties. If command is not supported by current client, this object is returned.", "directives": Object {}, - "jsonPath": "$.commandType", + "jsonPath": "$['commandType']", "message": "Missing required property: commandType", "params": Array [ "commandType", ], - "path": "commandType", + "path": "$/commandType", "position": Object { "column": 26, "line": 20, @@ -57212,12 +57804,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "ARM tracked top level resource.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "message": "Missing required property: location", "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 24, "line": 197, @@ -57407,13 +57999,13 @@ Array [ "DescriptionAndTitleMissing": ".*", "TrackedResourceListByImmediateParent": ".*", }, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.DeploymentManager/serviceTopologies\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.DeploymentManager/serviceTopologies", ], - "path": "type", + "path": "$/type", "position": Object { "column": 13, "line": 21, @@ -57436,13 +58028,13 @@ Array [ "DescriptionAndTitleMissing": ".*", "TrackedResourceListByImmediateParent": ".*", }, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.DeploymentManager/serviceTopologies\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.DeploymentManager/serviceTopologies", ], - "path": "type", + "path": "$/type", "position": Object { "column": 13, "line": 21, @@ -57465,13 +58057,13 @@ Array [ "DescriptionAndTitleMissing": ".*", "TrackedResourceListByImmediateParent": ".*", }, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.DeploymentManager/serviceTopologies/services\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.DeploymentManager/serviceTopologies/services", ], - "path": "type", + "path": "$/type", "position": Object { "column": 13, "line": 21, @@ -57494,13 +58086,13 @@ Array [ "DescriptionAndTitleMissing": ".*", "TrackedResourceListByImmediateParent": ".*", }, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits", ], - "path": "type", + "path": "$/type", "position": Object { "column": 13, "line": 21, @@ -57523,13 +58115,13 @@ Array [ "DescriptionAndTitleMissing": ".*", "TrackedResourceListByImmediateParent": ".*", }, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits", ], - "path": "type", + "path": "$/type", "position": Object { "column": 13, "line": 21, @@ -57552,13 +58144,13 @@ Array [ "DescriptionAndTitleMissing": ".*", "TrackedResourceListByImmediateParent": ".*", }, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.DeploymentManager/steps\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.DeploymentManager/steps", ], - "path": "type", + "path": "$/type", "position": Object { "column": 13, "line": 21, @@ -57581,13 +58173,13 @@ Array [ "DescriptionAndTitleMissing": ".*", "TrackedResourceListByImmediateParent": ".*", }, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.DeploymentManager/rollouts\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.DeploymentManager/rollouts", ], - "path": "type", + "path": "$/type", "position": Object { "column": 13, "line": 21, @@ -57610,13 +58202,13 @@ Array [ "DescriptionAndTitleMissing": ".*", "TrackedResourceListByImmediateParent": ".*", }, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.DeploymentManager/artifactSources\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.DeploymentManager/artifactSources", ], - "path": "type", + "path": "$/type", "position": Object { "column": 13, "line": 21, @@ -57639,13 +58231,13 @@ Array [ "DescriptionAndTitleMissing": ".*", "TrackedResourceListByImmediateParent": ".*", }, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.DeploymentManager/artifactSources\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.DeploymentManager/artifactSources", ], - "path": "type", + "path": "$/type", "position": Object { "column": 13, "line": 21, @@ -57672,88 +58264,88 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The object that represents the operation.", "directives": Object {}, - "jsonPath": "$.value[0].display.description", + "jsonPath": "$['value'][0]['display']['description']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/deviceprovisioningservices/resource-manager/Microsoft.Devices/preview/2017-08-21-preview/examples/DPSOperations.json", "message": "Additional properties not allowed: description", "params": Array [ "description", ], - "path": "value/0/display/description", + "path": "$/value/0/display/description", "position": Object { "column": 19, "line": 1584, }, "similarJsonPaths": Array [ - "$.value[1].display.description", - "$.value[2].display.description", - "$.value[3].display.description", - "$.value[4].display.description", - "$.value[5].display.description", - "$.value[6].display.description", - "$.value[7].display.description", - "$.value[8].display.description", - "$.value[9].display.description", - "$.value[10].display.description", - "$.value[11].display.description", - "$.value[12].display.description", - "$.value[13].display.description", - "$.value[14].display.description", - "$.value[15].display.description", - "$.value[16].display.description", - "$.value[17].display.description", - "$.value[18].display.description", - "$.value[19].display.description", - "$.value[20].display.description", - "$.value[21].display.description", - "$.value[22].display.description", - "$.value[23].display.description", - "$.value[24].display.description", - "$.value[25].display.description", - "$.value[26].display.description", - "$.value[27].display.description", - "$.value[28].display.description", - "$.value[29].display.description", - "$.value[30].display.description", - "$.value[31].display.description", - "$.value[32].display.description", - "$.value[33].display.description", - "$.value[34].display.description", + "$['value'][1]['display']['description']", + "$['value'][2]['display']['description']", + "$['value'][3]['display']['description']", + "$['value'][4]['display']['description']", + "$['value'][5]['display']['description']", + "$['value'][6]['display']['description']", + "$['value'][7]['display']['description']", + "$['value'][8]['display']['description']", + "$['value'][9]['display']['description']", + "$['value'][10]['display']['description']", + "$['value'][11]['display']['description']", + "$['value'][12]['display']['description']", + "$['value'][13]['display']['description']", + "$['value'][14]['display']['description']", + "$['value'][15]['display']['description']", + "$['value'][16]['display']['description']", + "$['value'][17]['display']['description']", + "$['value'][18]['display']['description']", + "$['value'][19]['display']['description']", + "$['value'][20]['display']['description']", + "$['value'][21]['display']['description']", + "$['value'][22]['display']['description']", + "$['value'][23]['display']['description']", + "$['value'][24]['display']['description']", + "$['value'][25]['display']['description']", + "$['value'][26]['display']['description']", + "$['value'][27]['display']['description']", + "$['value'][28]['display']['description']", + "$['value'][29]['display']['description']", + "$['value'][30]['display']['description']", + "$['value'][31]['display']['description']", + "$['value'][32]['display']['description']", + "$['value'][33]['display']['description']", + "$['value'][34]['display']['description']", ], "similarPaths": Array [ - "value/1/display/description", - "value/2/display/description", - "value/3/display/description", - "value/4/display/description", - "value/5/display/description", - "value/6/display/description", - "value/7/display/description", - "value/8/display/description", - "value/9/display/description", - "value/10/display/description", - "value/11/display/description", - "value/12/display/description", - "value/13/display/description", - "value/14/display/description", - "value/15/display/description", - "value/16/display/description", - "value/17/display/description", - "value/18/display/description", - "value/19/display/description", - "value/20/display/description", - "value/21/display/description", - "value/22/display/description", - "value/23/display/description", - "value/24/display/description", - "value/25/display/description", - "value/26/display/description", - "value/27/display/description", - "value/28/display/description", - "value/29/display/description", - "value/30/display/description", - "value/31/display/description", - "value/32/display/description", - "value/33/display/description", - "value/34/display/description", + "$/value/1/display/description", + "$/value/2/display/description", + "$/value/3/display/description", + "$/value/4/display/description", + "$/value/5/display/description", + "$/value/6/display/description", + "$/value/7/display/description", + "$/value/8/display/description", + "$/value/9/display/description", + "$/value/10/display/description", + "$/value/11/display/description", + "$/value/12/display/description", + "$/value/13/display/description", + "$/value/14/display/description", + "$/value/15/display/description", + "$/value/16/display/description", + "$/value/17/display/description", + "$/value/18/display/description", + "$/value/19/display/description", + "$/value/20/display/description", + "$/value/21/display/description", + "$/value/22/display/description", + "$/value/23/display/description", + "$/value/24/display/description", + "$/value/25/display/description", + "$/value/26/display/description", + "$/value/27/display/description", + "$/value/28/display/description", + "$/value/29/display/description", + "$/value/30/display/description", + "$/value/31/display/description", + "$/value/32/display/description", + "$/value/33/display/description", + "$/value/34/display/description", ], "title": "#/definitions/Operation/properties/display", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/deviceprovisioningservices/resource-manager/Microsoft.Devices/preview/2017-08-21-preview/iotdps.json", @@ -57770,13 +58362,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Pricing tier of the provisioning service.", "directives": Object {}, - "jsonPath": "$.sku.tier", + "jsonPath": "$['sku']['tier']", "message": "ReadOnly property \`\\"tier\\": \\"Standard\\"\`, cannot be sent in the request.", "params": Array [ "tier", "Standard", ], - "path": "sku/tier", + "path": "$/sku/tier", "position": Object { "column": 16, "line": 1344, @@ -57796,13 +58388,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Devices/ProvisioningServices\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Devices/ProvisioningServices", ], - "path": "type", + "path": "$/type", "position": Object { "column": 16, "line": 1535, @@ -57829,88 +58421,88 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The object that represents the operation.", "directives": Object {}, - "jsonPath": "$.value[0].display.description", + "jsonPath": "$['value'][0]['display']['description']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/deviceprovisioningservices/resource-manager/Microsoft.Devices/stable/2017-11-15/examples/DPSOperations.json", "message": "Additional properties not allowed: description", "params": Array [ "description", ], - "path": "value/0/display/description", + "path": "$/value/0/display/description", "position": Object { "column": 19, "line": 1660, }, "similarJsonPaths": Array [ - "$.value[1].display.description", - "$.value[2].display.description", - "$.value[3].display.description", - "$.value[4].display.description", - "$.value[5].display.description", - "$.value[6].display.description", - "$.value[7].display.description", - "$.value[8].display.description", - "$.value[9].display.description", - "$.value[10].display.description", - "$.value[11].display.description", - "$.value[12].display.description", - "$.value[13].display.description", - "$.value[14].display.description", - "$.value[15].display.description", - "$.value[16].display.description", - "$.value[17].display.description", - "$.value[18].display.description", - "$.value[19].display.description", - "$.value[20].display.description", - "$.value[21].display.description", - "$.value[22].display.description", - "$.value[23].display.description", - "$.value[24].display.description", - "$.value[25].display.description", - "$.value[26].display.description", - "$.value[27].display.description", - "$.value[28].display.description", - "$.value[29].display.description", - "$.value[30].display.description", - "$.value[31].display.description", - "$.value[32].display.description", - "$.value[33].display.description", - "$.value[34].display.description", + "$['value'][1]['display']['description']", + "$['value'][2]['display']['description']", + "$['value'][3]['display']['description']", + "$['value'][4]['display']['description']", + "$['value'][5]['display']['description']", + "$['value'][6]['display']['description']", + "$['value'][7]['display']['description']", + "$['value'][8]['display']['description']", + "$['value'][9]['display']['description']", + "$['value'][10]['display']['description']", + "$['value'][11]['display']['description']", + "$['value'][12]['display']['description']", + "$['value'][13]['display']['description']", + "$['value'][14]['display']['description']", + "$['value'][15]['display']['description']", + "$['value'][16]['display']['description']", + "$['value'][17]['display']['description']", + "$['value'][18]['display']['description']", + "$['value'][19]['display']['description']", + "$['value'][20]['display']['description']", + "$['value'][21]['display']['description']", + "$['value'][22]['display']['description']", + "$['value'][23]['display']['description']", + "$['value'][24]['display']['description']", + "$['value'][25]['display']['description']", + "$['value'][26]['display']['description']", + "$['value'][27]['display']['description']", + "$['value'][28]['display']['description']", + "$['value'][29]['display']['description']", + "$['value'][30]['display']['description']", + "$['value'][31]['display']['description']", + "$['value'][32]['display']['description']", + "$['value'][33]['display']['description']", + "$['value'][34]['display']['description']", ], "similarPaths": Array [ - "value/1/display/description", - "value/2/display/description", - "value/3/display/description", - "value/4/display/description", - "value/5/display/description", - "value/6/display/description", - "value/7/display/description", - "value/8/display/description", - "value/9/display/description", - "value/10/display/description", - "value/11/display/description", - "value/12/display/description", - "value/13/display/description", - "value/14/display/description", - "value/15/display/description", - "value/16/display/description", - "value/17/display/description", - "value/18/display/description", - "value/19/display/description", - "value/20/display/description", - "value/21/display/description", - "value/22/display/description", - "value/23/display/description", - "value/24/display/description", - "value/25/display/description", - "value/26/display/description", - "value/27/display/description", - "value/28/display/description", - "value/29/display/description", - "value/30/display/description", - "value/31/display/description", - "value/32/display/description", - "value/33/display/description", - "value/34/display/description", + "$/value/1/display/description", + "$/value/2/display/description", + "$/value/3/display/description", + "$/value/4/display/description", + "$/value/5/display/description", + "$/value/6/display/description", + "$/value/7/display/description", + "$/value/8/display/description", + "$/value/9/display/description", + "$/value/10/display/description", + "$/value/11/display/description", + "$/value/12/display/description", + "$/value/13/display/description", + "$/value/14/display/description", + "$/value/15/display/description", + "$/value/16/display/description", + "$/value/17/display/description", + "$/value/18/display/description", + "$/value/19/display/description", + "$/value/20/display/description", + "$/value/21/display/description", + "$/value/22/display/description", + "$/value/23/display/description", + "$/value/24/display/description", + "$/value/25/display/description", + "$/value/26/display/description", + "$/value/27/display/description", + "$/value/28/display/description", + "$/value/29/display/description", + "$/value/30/display/description", + "$/value/31/display/description", + "$/value/32/display/description", + "$/value/33/display/description", + "$/value/34/display/description", ], "title": "#/definitions/Operation/properties/display", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/deviceprovisioningservices/resource-manager/Microsoft.Devices/stable/2017-11-15/iotdps.json", @@ -57927,13 +58519,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Pricing tier name of the provisioning service.", "directives": Object {}, - "jsonPath": "$.sku.tier", + "jsonPath": "$['sku']['tier']", "message": "ReadOnly property \`\\"tier\\": \\"Standard\\"\`, cannot be sent in the request.", "params": Array [ "tier", "Standard", ], - "path": "sku/tier", + "path": "$/sku/tier", "position": Object { "column": 16, "line": 1414, @@ -57953,13 +58545,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Devices/ProvisioningServices\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Devices/ProvisioningServices", ], - "path": "type", + "path": "$/type", "position": Object { "column": 16, "line": 1611, @@ -57986,88 +58578,88 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The object that represents the operation.", "directives": Object {}, - "jsonPath": "$.value[0].display.description", + "jsonPath": "$['value'][0]['display']['description']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/deviceprovisioningservices/resource-manager/Microsoft.Devices/stable/2018-01-22/examples/DPSOperations.json", "message": "Additional properties not allowed: description", "params": Array [ "description", ], - "path": "value/0/display/description", + "path": "$/value/0/display/description", "position": Object { "column": 19, "line": 1660, }, "similarJsonPaths": Array [ - "$.value[1].display.description", - "$.value[2].display.description", - "$.value[3].display.description", - "$.value[4].display.description", - "$.value[5].display.description", - "$.value[6].display.description", - "$.value[7].display.description", - "$.value[8].display.description", - "$.value[9].display.description", - "$.value[10].display.description", - "$.value[11].display.description", - "$.value[12].display.description", - "$.value[13].display.description", - "$.value[14].display.description", - "$.value[15].display.description", - "$.value[16].display.description", - "$.value[17].display.description", - "$.value[18].display.description", - "$.value[19].display.description", - "$.value[20].display.description", - "$.value[21].display.description", - "$.value[22].display.description", - "$.value[23].display.description", - "$.value[24].display.description", - "$.value[25].display.description", - "$.value[26].display.description", - "$.value[27].display.description", - "$.value[28].display.description", - "$.value[29].display.description", - "$.value[30].display.description", - "$.value[31].display.description", - "$.value[32].display.description", - "$.value[33].display.description", - "$.value[34].display.description", + "$['value'][1]['display']['description']", + "$['value'][2]['display']['description']", + "$['value'][3]['display']['description']", + "$['value'][4]['display']['description']", + "$['value'][5]['display']['description']", + "$['value'][6]['display']['description']", + "$['value'][7]['display']['description']", + "$['value'][8]['display']['description']", + "$['value'][9]['display']['description']", + "$['value'][10]['display']['description']", + "$['value'][11]['display']['description']", + "$['value'][12]['display']['description']", + "$['value'][13]['display']['description']", + "$['value'][14]['display']['description']", + "$['value'][15]['display']['description']", + "$['value'][16]['display']['description']", + "$['value'][17]['display']['description']", + "$['value'][18]['display']['description']", + "$['value'][19]['display']['description']", + "$['value'][20]['display']['description']", + "$['value'][21]['display']['description']", + "$['value'][22]['display']['description']", + "$['value'][23]['display']['description']", + "$['value'][24]['display']['description']", + "$['value'][25]['display']['description']", + "$['value'][26]['display']['description']", + "$['value'][27]['display']['description']", + "$['value'][28]['display']['description']", + "$['value'][29]['display']['description']", + "$['value'][30]['display']['description']", + "$['value'][31]['display']['description']", + "$['value'][32]['display']['description']", + "$['value'][33]['display']['description']", + "$['value'][34]['display']['description']", ], "similarPaths": Array [ - "value/1/display/description", - "value/2/display/description", - "value/3/display/description", - "value/4/display/description", - "value/5/display/description", - "value/6/display/description", - "value/7/display/description", - "value/8/display/description", - "value/9/display/description", - "value/10/display/description", - "value/11/display/description", - "value/12/display/description", - "value/13/display/description", - "value/14/display/description", - "value/15/display/description", - "value/16/display/description", - "value/17/display/description", - "value/18/display/description", - "value/19/display/description", - "value/20/display/description", - "value/21/display/description", - "value/22/display/description", - "value/23/display/description", - "value/24/display/description", - "value/25/display/description", - "value/26/display/description", - "value/27/display/description", - "value/28/display/description", - "value/29/display/description", - "value/30/display/description", - "value/31/display/description", - "value/32/display/description", - "value/33/display/description", - "value/34/display/description", + "$/value/1/display/description", + "$/value/2/display/description", + "$/value/3/display/description", + "$/value/4/display/description", + "$/value/5/display/description", + "$/value/6/display/description", + "$/value/7/display/description", + "$/value/8/display/description", + "$/value/9/display/description", + "$/value/10/display/description", + "$/value/11/display/description", + "$/value/12/display/description", + "$/value/13/display/description", + "$/value/14/display/description", + "$/value/15/display/description", + "$/value/16/display/description", + "$/value/17/display/description", + "$/value/18/display/description", + "$/value/19/display/description", + "$/value/20/display/description", + "$/value/21/display/description", + "$/value/22/display/description", + "$/value/23/display/description", + "$/value/24/display/description", + "$/value/25/display/description", + "$/value/26/display/description", + "$/value/27/display/description", + "$/value/28/display/description", + "$/value/29/display/description", + "$/value/30/display/description", + "$/value/31/display/description", + "$/value/32/display/description", + "$/value/33/display/description", + "$/value/34/display/description", ], "title": "#/definitions/Operation/properties/display", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/deviceprovisioningservices/resource-manager/Microsoft.Devices/stable/2018-01-22/iotdps.json", @@ -58084,13 +58676,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Pricing tier name of the provisioning service.", "directives": Object {}, - "jsonPath": "$.sku.tier", + "jsonPath": "$['sku']['tier']", "message": "ReadOnly property \`\\"tier\\": \\"Standard\\"\`, cannot be sent in the request.", "params": Array [ "tier", "Standard", ], - "path": "sku/tier", + "path": "$/sku/tier", "position": Object { "column": 16, "line": 1414, @@ -58110,13 +58702,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Devices/ProvisioningServices\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Devices/ProvisioningServices", ], - "path": "type", + "path": "$/type", "position": Object { "column": 16, "line": 1611, @@ -58179,7 +58771,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Represents the properties of the records in the record set.", "directives": Object {}, - "jsonPath": "$.properties.ProvisioningState", + "jsonPath": "$['properties']['ProvisioningState']", "jsonPosition": Object { "column": 23, "line": 26, @@ -58189,7 +58781,7 @@ Array [ "params": Array [ "ProvisioningState", ], - "path": "properties/ProvisioningState", + "path": "$/properties/ProvisioningState", "position": Object { "column": 28, "line": 1318, @@ -58209,7 +58801,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Represents the properties of the records in the record set.", "directives": Object {}, - "jsonPath": "$.properties.ProvisioningState", + "jsonPath": "$['properties']['ProvisioningState']", "jsonPosition": Object { "column": 23, "line": 43, @@ -58219,7 +58811,7 @@ Array [ "params": Array [ "ProvisioningState", ], - "path": "properties/ProvisioningState", + "path": "$/properties/ProvisioningState", "position": Object { "column": 28, "line": 1318, @@ -58239,12 +58831,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Represents the properties of the Dns Resource Reference Request.", "directives": Object {}, - "jsonPath": "$.targetResources", + "jsonPath": "$['targetResources']", "message": "Additional properties not allowed: targetResources", "params": Array [ "targetResources", ], - "path": "targetResources", + "path": "$/targetResources", "position": Object { "column": 36, "line": 1578, @@ -58271,13 +58863,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"zdomain.zforest.com\\"\`, cannot be sent in the request.", "params": Array [ "name", "zdomain.zforest.com", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 325, @@ -58297,13 +58889,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Id", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/1639790a-76a2-4ac4-98d9-8562f5dfcb4d/resourceGroups/sva-tt-WUS/providers/Microsoft.AAD/domainServices/zdomain.zforest.com\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/1639790a-76a2-4ac4-98d9-8562f5dfcb4d/resourceGroups/sva-tt-WUS/providers/Microsoft.AAD/domainServices/zdomain.zforest.com", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 320, @@ -58339,13 +58931,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"zdomain.zforest.com\\"\`, cannot be sent in the request.", "params": Array [ "name", "zdomain.zforest.com", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 325, @@ -58365,13 +58957,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Id", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/1639790a-76a2-4ac4-98d9-8562f5dfcb4d/resourceGroups/sva-tt-WUS/providers/Microsoft.AAD/domainServices/zdomain.zforest.com\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/1639790a-76a2-4ac4-98d9-8562f5dfcb4d/resourceGroups/sva-tt-WUS/providers/Microsoft.AAD/domainServices/zdomain.zforest.com", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 320, @@ -58525,7 +59117,7 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "jsonPosition": Object { "column": 21, "line": 11, @@ -58535,7 +59127,7 @@ Array [ "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 24, "line": 2203, @@ -58557,7 +59149,7 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.location", + "jsonPath": "$['location']", "jsonPosition": Object { "column": 21, "line": 11, @@ -58567,7 +59159,7 @@ Array [ "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 24, "line": 2203, @@ -58612,22 +59204,22 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.value[0].tags", + "jsonPath": "$['value'][0]['tags']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/eventgrid/resource-manager/Microsoft.EventGrid/preview/2018-09-15-preview/examples/DomainTopics_ListByDomain.json", "message": "Additional properties not allowed: tags", "params": Array [ "tags", ], - "path": "value/0/tags", + "path": "$/value/0/tags", "position": Object { "column": 24, "line": 2203, }, "similarJsonPaths": Array [ - "$.value[1].tags", + "$['value'][1]['tags']", ], "similarPaths": Array [ - "value/1/tags", + "$/value/1/tags", ], "title": "#/definitions/DomainTopic", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/eventgrid/resource-manager/Microsoft.EventGrid/preview/2018-09-15-preview/EventGrid.json", @@ -58646,22 +59238,22 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.value[0].location", + "jsonPath": "$['value'][0]['location']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/eventgrid/resource-manager/Microsoft.EventGrid/preview/2018-09-15-preview/examples/DomainTopics_ListByDomain.json", "message": "Additional properties not allowed: location", "params": Array [ "location", ], - "path": "value/0/location", + "path": "$/value/0/location", "position": Object { "column": 24, "line": 2203, }, "similarJsonPaths": Array [ - "$.value[1].location", + "$['value'][1]['location']", ], "similarPaths": Array [ - "value/1/location", + "$/value/1/location", ], "title": "#/definitions/DomainTopic", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/eventgrid/resource-manager/Microsoft.EventGrid/preview/2018-09-15-preview/EventGrid.json", @@ -58680,22 +59272,22 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.value[0].properties", + "jsonPath": "$['value'][0]['properties']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/eventgrid/resource-manager/Microsoft.EventGrid/preview/2018-09-15-preview/examples/DomainTopics_ListByDomain.json", "message": "Additional properties not allowed: properties", "params": Array [ "properties", ], - "path": "value/0/properties", + "path": "$/value/0/properties", "position": Object { "column": 24, "line": 2203, }, "similarJsonPaths": Array [ - "$.value[1].properties", + "$['value'][1]['properties']", ], "similarPaths": Array [ - "value/1/properties", + "$/value/1/properties", ], "title": "#/definitions/DomainTopic", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/eventgrid/resource-manager/Microsoft.EventGrid/preview/2018-09-15-preview/EventGrid.json", @@ -58744,7 +59336,7 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.location", + "jsonPath": "$['location']", "jsonPosition": Object { "column": 21, "line": 11, @@ -58754,7 +59346,7 @@ Array [ "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 24, "line": 2606, @@ -58799,22 +59391,22 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.value[0].properties.endpoint", + "jsonPath": "$['value'][0]['properties']['endpoint']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/eventgrid/resource-manager/Microsoft.EventGrid/preview/2019-02-01-preview/examples/DomainTopics_ListByDomain.json", "message": "Additional properties not allowed: endpoint", "params": Array [ "endpoint", ], - "path": "value/0/properties/endpoint", + "path": "$/value/0/properties/endpoint", "position": Object { "column": 34, "line": 2584, }, "similarJsonPaths": Array [ - "$.value[1].properties.endpoint", + "$['value'][1]['properties']['endpoint']", ], "similarPaths": Array [ - "value/1/properties/endpoint", + "$/value/1/properties/endpoint", ], "title": "#/definitions/DomainTopicProperties", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/eventgrid/resource-manager/Microsoft.EventGrid/preview/2019-02-01-preview/EventGrid.json", @@ -58833,22 +59425,22 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.value[0].tags", + "jsonPath": "$['value'][0]['tags']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/eventgrid/resource-manager/Microsoft.EventGrid/preview/2019-02-01-preview/examples/DomainTopics_ListByDomain.json", "message": "Additional properties not allowed: tags", "params": Array [ "tags", ], - "path": "value/0/tags", + "path": "$/value/0/tags", "position": Object { "column": 24, "line": 2606, }, "similarJsonPaths": Array [ - "$.value[1].tags", + "$['value'][1]['tags']", ], "similarPaths": Array [ - "value/1/tags", + "$/value/1/tags", ], "title": "#/definitions/DomainTopic", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/eventgrid/resource-manager/Microsoft.EventGrid/preview/2019-02-01-preview/EventGrid.json", @@ -58867,22 +59459,22 @@ Array [ "directives": Object { "TrackedResourcePatchOperation": ".*", }, - "jsonPath": "$.value[0].location", + "jsonPath": "$['value'][0]['location']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/eventgrid/resource-manager/Microsoft.EventGrid/preview/2019-02-01-preview/examples/DomainTopics_ListByDomain.json", "message": "Additional properties not allowed: location", "params": Array [ "location", ], - "path": "value/0/location", + "path": "$/value/0/location", "position": Object { "column": 24, "line": 2606, }, "similarJsonPaths": Array [ - "$.value[1].location", + "$['value'][1]['location']", ], "similarPaths": Array [ - "value/1/location", + "$/value/1/location", ], "title": "#/definitions/DomainTopic", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/eventgrid/resource-manager/Microsoft.EventGrid/preview/2019-02-01-preview/EventGrid.json", @@ -58918,68 +59510,68 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The object that represents the operation.", "directives": Object {}, - "jsonPath": "$.value[0].display.description", + "jsonPath": "$['value'][0]['display']['description']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/examples/EHOperations_List.json", "message": "Additional properties not allowed: description", "params": Array [ "description", ], - "path": "value/0/display/description", + "path": "$/value/0/display/description", "position": Object { "column": 20, "line": 1261, }, "similarJsonPaths": Array [ - "$.value[1].display.description", - "$.value[2].display.description", - "$.value[3].display.description", - "$.value[4].display.description", - "$.value[5].display.description", - "$.value[6].display.description", - "$.value[7].display.description", - "$.value[8].display.description", - "$.value[9].display.description", - "$.value[10].display.description", - "$.value[11].display.description", - "$.value[12].display.description", - "$.value[13].display.description", - "$.value[14].display.description", - "$.value[15].display.description", - "$.value[16].display.description", - "$.value[17].display.description", - "$.value[18].display.description", - "$.value[19].display.description", - "$.value[20].display.description", - "$.value[21].display.description", - "$.value[22].display.description", - "$.value[23].display.description", - "$.value[24].display.description", + "$['value'][1]['display']['description']", + "$['value'][2]['display']['description']", + "$['value'][3]['display']['description']", + "$['value'][4]['display']['description']", + "$['value'][5]['display']['description']", + "$['value'][6]['display']['description']", + "$['value'][7]['display']['description']", + "$['value'][8]['display']['description']", + "$['value'][9]['display']['description']", + "$['value'][10]['display']['description']", + "$['value'][11]['display']['description']", + "$['value'][12]['display']['description']", + "$['value'][13]['display']['description']", + "$['value'][14]['display']['description']", + "$['value'][15]['display']['description']", + "$['value'][16]['display']['description']", + "$['value'][17]['display']['description']", + "$['value'][18]['display']['description']", + "$['value'][19]['display']['description']", + "$['value'][20]['display']['description']", + "$['value'][21]['display']['description']", + "$['value'][22]['display']['description']", + "$['value'][23]['display']['description']", + "$['value'][24]['display']['description']", ], "similarPaths": Array [ - "value/1/display/description", - "value/2/display/description", - "value/3/display/description", - "value/4/display/description", - "value/5/display/description", - "value/6/display/description", - "value/7/display/description", - "value/8/display/description", - "value/9/display/description", - "value/10/display/description", - "value/11/display/description", - "value/12/display/description", - "value/13/display/description", - "value/14/display/description", - "value/15/display/description", - "value/16/display/description", - "value/17/display/description", - "value/18/display/description", - "value/19/display/description", - "value/20/display/description", - "value/21/display/description", - "value/22/display/description", - "value/23/display/description", - "value/24/display/description", + "$/value/1/display/description", + "$/value/2/display/description", + "$/value/3/display/description", + "$/value/4/display/description", + "$/value/5/display/description", + "$/value/6/display/description", + "$/value/7/display/description", + "$/value/8/display/description", + "$/value/9/display/description", + "$/value/10/display/description", + "$/value/11/display/description", + "$/value/12/display/description", + "$/value/13/display/description", + "$/value/14/display/description", + "$/value/15/display/description", + "$/value/16/display/description", + "$/value/17/display/description", + "$/value/18/display/description", + "$/value/19/display/description", + "$/value/20/display/description", + "$/value/21/display/description", + "$/value/22/display/description", + "$/value/23/display/description", + "$/value/24/display/description", ], "title": "#/definitions/Operation/properties/display", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2015-08-01/EventHub.json", @@ -59003,13 +59595,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties required to the Create Or Update Alias(Disaster Recovery configurations)", "directives": Object {}, - "jsonPath": "$.value[0].properties.type", + "jsonPath": "$['value'][0]['properties']['type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/eventhub/resource-manager/Microsoft.EventHub/stable/2017-04-01/examples/disasterRecoveryConfigs/EHAliasList.json", "message": "Additional properties not allowed: type", "params": Array [ "type", ], - "path": "value/0/properties/type", + "path": "$/value/0/properties/type", "position": Object { "column": 23, "line": 2554, @@ -59029,7 +59621,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties required to the Create Or Update Alias(Disaster Recovery configurations)", "directives": Object {}, - "jsonPath": "$.properties.type", + "jsonPath": "$['properties']['type']", "jsonPosition": Object { "column": 23, "line": 20, @@ -59039,7 +59631,7 @@ Array [ "params": Array [ "type", ], - "path": "properties/type", + "path": "$/properties/type", "position": Object { "column": 23, "line": 2554, @@ -59059,7 +59651,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties required to the Create Or Update Alias(Disaster Recovery configurations)", "directives": Object {}, - "jsonPath": "$.properties.type", + "jsonPath": "$['properties']['type']", "jsonPosition": Object { "column": 23, "line": 15, @@ -59069,7 +59661,7 @@ Array [ "params": Array [ "type", ], - "path": "properties/type", + "path": "$/properties/type", "position": Object { "column": 23, "line": 2554, @@ -59096,12 +59688,12 @@ Array [ "code": "ENUM_CASE_MISMATCH", "description": "Type of Front Door resource used in CheckNameAvailability.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "Enum does not match case for: Microsoft.Network/FrontDoors", "params": Array [ "Microsoft.Network/FrontDoors", ], - "path": "type", + "path": "$/type", "position": Object { "column": 21, "line": 2455, @@ -59121,12 +59713,12 @@ Array [ "code": "ENUM_CASE_MISMATCH", "description": "Type of Front Door resource used in CheckNameAvailability.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "Enum does not match case for: Microsoft.Network/FrontDoors/frontendEndpoints", "params": Array [ "Microsoft.Network/FrontDoors/frontendEndpoints", ], - "path": "type", + "path": "$/type", "position": Object { "column": 21, "line": 2455, @@ -59146,13 +59738,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource ID.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/frontDoors/frontDoor1\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/frontDoors/frontDoor1", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 99, @@ -59172,12 +59764,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Input of the custom domain to be validated for DNS mapping.", "directives": Object {}, - "jsonPath": "$.hostName", + "jsonPath": "$['hostName']", "message": "Missing required property: hostName", "params": Array [ "hostName", ], - "path": "hostName", + "path": "$/hostName", "position": Object { "column": 34, "line": 2358, @@ -59197,12 +59789,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Input of the custom domain to be validated for DNS mapping.", "directives": Object {}, - "jsonPath": "$.hostname", + "jsonPath": "$['hostname']", "message": "Additional properties not allowed: hostname", "params": Array [ "hostname", ], - "path": "hostname", + "path": "$/hostname", "position": Object { "column": 34, "line": 2358, @@ -59253,13 +59845,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Name of the guest configuration.", "directives": Object {}, - "jsonPath": "$.properties.guestConfiguration.name", + "jsonPath": "$['properties']['guestConfiguration']['name']", "message": "ReadOnly property \`\\"name\\": \\"SecureProtocol\\"\`, cannot be sent in the request.", "params": Array [ "name", "SecureProtocol", ], - "path": "properties/guestConfiguration/name", + "path": "$/properties/guestConfiguration/name", "position": Object { "column": 17, "line": 356, @@ -59279,13 +59871,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Name of the guest configuration assignment.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"SecureProtocol\\"\`, cannot be sent in the request.", "params": Array [ "name", "SecureProtocol", ], - "path": "name", + "path": "$/name", "position": Object { "column": 27, "line": 45, @@ -59305,13 +59897,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Region where the VM is located.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "message": "ReadOnly property \`\\"location\\": \\"westcentralus\\"\`, cannot be sent in the request.", "params": Array [ "location", "westcentralus", ], - "path": "location", + "path": "$/location", "position": Object { "column": 31, "line": 50, @@ -59338,13 +59930,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Name of the guest configuration assignment.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"multiconfigassignment2\\"\`, cannot be sent in the request.", "params": Array [ "name", "multiconfigassignment2", ], - "path": "name", + "path": "$/name", "position": Object { "column": 27, "line": 45, @@ -59364,13 +59956,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Region where the VM is located.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "message": "ReadOnly property \`\\"location\\": \\"westcentralus\\"\`, cannot be sent in the request.", "params": Array [ "location", "westcentralus", ], - "path": "location", + "path": "$/location", "position": Object { "column": 31, "line": 50, @@ -59401,13 +59993,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...", "directives": Object {}, - "jsonPath": "$.properties.networkProfile.networkInterfaces[0].id", + "jsonPath": "$['properties']['networkProfile']['networkInterfaces'][0]['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/networkInterfaces/hsm_vnic\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/networkInterfaces/hsm_vnic", ], - "path": "properties/networkProfile/networkInterfaces/0/id", + "path": "$/properties/networkProfile/networkInterfaces/0/id", "position": Object { "column": 15, "line": 380, @@ -59473,12 +60065,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Gets the application HTTP endpoints.", "directives": Object {}, - "jsonPath": "$.properties.httpsEndpoints[0].subDomainSuffix", + "jsonPath": "$['properties']['httpsEndpoints'][0]['subDomainSuffix']", "message": "Additional properties not allowed: subDomainSuffix", "params": Array [ "subDomainSuffix", ], - "path": "properties/httpsEndpoints/0/subDomainSuffix", + "path": "$/properties/httpsEndpoints/0/subDomainSuffix", "position": Object { "column": 40, "line": 227, @@ -59498,13 +60090,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The provisioning state of the application.", "directives": Object {}, - "jsonPath": "$.properties.provisioningState", + "jsonPath": "$['properties']['provisioningState']", "message": "ReadOnly property \`\\"provisioningState\\": \\"\\"\`, cannot be sent in the request.", "params": Array [ "provisioningState", "", ], - "path": "properties/provisioningState", + "path": "$/properties/provisioningState", "position": Object { "column": 38, "line": 310, @@ -59813,12 +60405,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Distribute as a Managed Disk Image.", "directives": Object {}, - "jsonPath": "$.properties.distribute[0].tags", + "jsonPath": "$['properties']['distribute'][0]['tags']", "message": "Additional properties not allowed: tags", "params": Array [ "tags", ], - "path": "properties/distribute/0/tags", + "path": "$/properties/distribute/0/tags", "position": Object { "column": 45, "line": 618, @@ -59854,7 +60446,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Distribute as a Managed Disk Image.", "directives": Object {}, - "jsonPath": "$.properties.distribute[0].tags", + "jsonPath": "$['properties']['distribute'][0]['tags']", "jsonPosition": Object { "column": 13, "line": 61, @@ -59864,7 +60456,7 @@ Array [ "params": Array [ "tags", ], - "path": "properties/distribute/0/tags", + "path": "$/properties/distribute/0/tags", "position": Object { "column": 45, "line": 618, @@ -59884,7 +60476,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Distribute as a Managed Disk Image.", "directives": Object {}, - "jsonPath": "$.properties.distribute[0].tags", + "jsonPath": "$['properties']['distribute'][0]['tags']", "jsonPosition": Object { "column": 13, "line": 37, @@ -59894,7 +60486,7 @@ Array [ "params": Array [ "tags", ], - "path": "properties/distribute/0/tags", + "path": "$/properties/distribute/0/tags", "position": Object { "column": 45, "line": 618, @@ -60086,12 +60678,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Distribute as a Managed Disk Image.", "directives": Object {}, - "jsonPath": "$.properties.distribute[0].tags", + "jsonPath": "$['properties']['distribute'][0]['tags']", "message": "Additional properties not allowed: tags", "params": Array [ "tags", ], - "path": "properties/distribute/0/tags", + "path": "$/properties/distribute/0/tags", "position": Object { "column": 45, "line": 695, @@ -60127,7 +60719,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Distribute as a Managed Disk Image.", "directives": Object {}, - "jsonPath": "$.properties.distribute[0].tags", + "jsonPath": "$['properties']['distribute'][0]['tags']", "jsonPosition": Object { "column": 13, "line": 59, @@ -60137,7 +60729,7 @@ Array [ "params": Array [ "tags", ], - "path": "properties/distribute/0/tags", + "path": "$/properties/distribute/0/tags", "position": Object { "column": 45, "line": 695, @@ -60157,7 +60749,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Distribute as a Managed Disk Image.", "directives": Object {}, - "jsonPath": "$.properties.distribute[0].tags", + "jsonPath": "$['properties']['distribute'][0]['tags']", "jsonPosition": Object { "column": 13, "line": 37, @@ -60167,7 +60759,7 @@ Array [ "params": Array [ "tags", ], - "path": "properties/distribute/0/tags", + "path": "$/properties/distribute/0/tags", "position": Object { "column": 45, "line": 695, @@ -60286,12 +60878,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The IoT Central application.", "directives": Object {}, - "jsonPath": "$.displayName", + "jsonPath": "$['displayName']", "message": "Additional properties not allowed: displayName", "params": Array [ "displayName", ], - "path": "displayName", + "path": "$/displayName", "position": Object { "column": 12, "line": 456, @@ -60311,12 +60903,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The IoT Central application.", "directives": Object {}, - "jsonPath": "$.subdomain", + "jsonPath": "$['subdomain']", "message": "Additional properties not allowed: subdomain", "params": Array [ "subdomain", ], - "path": "subdomain", + "path": "$/subdomain", "position": Object { "column": 12, "line": 456, @@ -60336,12 +60928,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The IoT Central application.", "directives": Object {}, - "jsonPath": "$.template", + "jsonPath": "$['template']", "message": "Additional properties not allowed: template", "params": Array [ "template", ], - "path": "template", + "path": "$/template", "position": Object { "column": 12, "line": 456, @@ -60361,12 +60953,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The description of the IoT Central application.", "directives": Object {}, - "jsonPath": "$.displayName", + "jsonPath": "$['displayName']", "message": "Additional properties not allowed: displayName", "params": Array [ "displayName", ], - "path": "displayName", + "path": "$/displayName", "position": Object { "column": 17, "line": 479, @@ -60393,13 +60985,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The billing tier for the IoT hub.", "directives": Object {}, - "jsonPath": "$.sku.tier", + "jsonPath": "$['sku']['tier']", "message": "ReadOnly property \`\\"tier\\": \\"Standard\\"\`, cannot be sent in the request.", "params": Array [ "tier", "Standard", ], - "path": "sku/tier", + "path": "$/sku/tier", "position": Object { "column": 17, "line": 2005, @@ -60419,13 +61011,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The hub state.", "directives": Object {}, - "jsonPath": "$.properties.state", + "jsonPath": "$['properties']['state']", "message": "ReadOnly property \`\\"state\\": \\"Active\\"\`, cannot be sent in the request.", "params": Array [ "state", "Active", ], - "path": "properties/state", + "path": "$/properties/state", "position": Object { "column": 18, "line": 1912, @@ -60445,13 +61037,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The provisioning state.", "directives": Object {}, - "jsonPath": "$.properties.provisioningState", + "jsonPath": "$['properties']['provisioningState']", "message": "ReadOnly property \`\\"provisioningState\\": \\"Succeeded\\"\`, cannot be sent in the request.", "params": Array [ "provisioningState", "Succeeded", ], - "path": "properties/provisioningState", + "path": "$/properties/provisioningState", "position": Object { "column": 30, "line": 1907, @@ -60471,13 +61063,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the host.", "directives": Object {}, - "jsonPath": "$.properties.hostName", + "jsonPath": "$['properties']['hostName']", "message": "ReadOnly property \`\\"hostName\\": \\"iot-dps-cit-hub-1.azure-devices.net\\"\`, cannot be sent in the request.", "params": Array [ "hostName", "iot-dps-cit-hub-1.azure-devices.net", ], - "path": "properties/hostName", + "path": "$/properties/hostName", "position": Object { "column": 21, "line": 1917, @@ -60497,7 +61089,7 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The partition ids in the Event Hub-compatible endpoint.", "directives": Object {}, - "jsonPath": "$.properties.eventHubEndpoints.events.partitionIds", + "jsonPath": "$['properties']['eventHubEndpoints']['events']['partitionIds']", "message": "ReadOnly property \`\\"partitionIds\\": 0,1\`, cannot be sent in the request.", "params": Array [ "partitionIds", @@ -60506,7 +61098,7 @@ Array [ "1", ], ], - "path": "properties/eventHubEndpoints/events/partitionIds", + "path": "$/properties/eventHubEndpoints/events/partitionIds", "position": Object { "column": 25, "line": 2043, @@ -60526,13 +61118,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The Event Hub-compatible name.", "directives": Object {}, - "jsonPath": "$.properties.eventHubEndpoints.events.path", + "jsonPath": "$['properties']['eventHubEndpoints']['events']['path']", "message": "ReadOnly property \`\\"path\\": \\"iot-dps-cit-hub-1\\"\`, cannot be sent in the request.", "params": Array [ "path", "iot-dps-cit-hub-1", ], - "path": "properties/eventHubEndpoints/events/path", + "path": "$/properties/eventHubEndpoints/events/path", "position": Object { "column": 17, "line": 2051, @@ -60552,13 +61144,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The Event Hub-compatible endpoint.", "directives": Object {}, - "jsonPath": "$.properties.eventHubEndpoints.events.endpoint", + "jsonPath": "$['properties']['eventHubEndpoints']['events']['endpoint']", "message": "ReadOnly property \`\\"endpoint\\": \\"sb://iothub-ns-iot-dps-ci-245306-76aca8e13b.servicebus.windows.net/\\"\`, cannot be sent in the request.", "params": Array [ "endpoint", "sb://iothub-ns-iot-dps-ci-245306-76aca8e13b.servicebus.windows.net/", ], - "path": "properties/eventHubEndpoints/events/endpoint", + "path": "$/properties/eventHubEndpoints/events/endpoint", "position": Object { "column": 21, "line": 2056, @@ -60578,13 +61170,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Devices/IotHubs\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Devices/IotHubs", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 2510, @@ -60604,13 +61196,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"iot-dps-cit-hub-1\\"\`, cannot be sent in the request.", "params": Array [ "name", "iot-dps-cit-hub-1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 2504, @@ -60630,13 +61222,13 @@ Array [ "code": "INVALID_TYPE", "description": "App properties", "directives": Object {}, - "jsonPath": "$.message.appProperties", + "jsonPath": "$['message']['appProperties']", "message": "Expected type object but found type string", "params": Array [ "object", "string", ], - "path": "message/appProperties", + "path": "$/message/appProperties", "position": Object { "column": 26, "line": 3155, @@ -60656,13 +61248,13 @@ Array [ "code": "INVALID_TYPE", "description": "System properties", "directives": Object {}, - "jsonPath": "$.message.systemProperties", + "jsonPath": "$['message']['systemProperties']", "message": "Expected type object but found type string", "params": Array [ "object", "string", ], - "path": "message/systemProperties", + "path": "$/message/systemProperties", "position": Object { "column": 29, "line": 3162, @@ -60682,13 +61274,13 @@ Array [ "code": "INVALID_TYPE", "description": "App properties", "directives": Object {}, - "jsonPath": "$.message.appProperties", + "jsonPath": "$['message']['appProperties']", "message": "Expected type object but found type string", "params": Array [ "object", "string", ], - "path": "message/appProperties", + "path": "$/message/appProperties", "position": Object { "column": 26, "line": 3155, @@ -60708,13 +61300,13 @@ Array [ "code": "INVALID_TYPE", "description": "System properties", "directives": Object {}, - "jsonPath": "$.message.systemProperties", + "jsonPath": "$['message']['systemProperties']", "message": "Expected type object but found type string", "params": Array [ "object", "string", ], - "path": "message/systemProperties", + "path": "$/message/systemProperties", "position": Object { "column": 29, "line": 3162, @@ -60741,13 +61333,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The billing tier for the IoT hub.", "directives": Object {}, - "jsonPath": "$.sku.tier", + "jsonPath": "$['sku']['tier']", "message": "ReadOnly property \`\\"tier\\": \\"Standard\\"\`, cannot be sent in the request.", "params": Array [ "tier", "Standard", ], - "path": "sku/tier", + "path": "$/sku/tier", "position": Object { "column": 17, "line": 2071, @@ -60767,13 +61359,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The hub state.", "directives": Object {}, - "jsonPath": "$.properties.state", + "jsonPath": "$['properties']['state']", "message": "ReadOnly property \`\\"state\\": \\"Active\\"\`, cannot be sent in the request.", "params": Array [ "state", "Active", ], - "path": "properties/state", + "path": "$/properties/state", "position": Object { "column": 18, "line": 1978, @@ -60793,13 +61385,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The provisioning state.", "directives": Object {}, - "jsonPath": "$.properties.provisioningState", + "jsonPath": "$['properties']['provisioningState']", "message": "ReadOnly property \`\\"provisioningState\\": \\"Succeeded\\"\`, cannot be sent in the request.", "params": Array [ "provisioningState", "Succeeded", ], - "path": "properties/provisioningState", + "path": "$/properties/provisioningState", "position": Object { "column": 30, "line": 1973, @@ -60819,13 +61411,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the host.", "directives": Object {}, - "jsonPath": "$.properties.hostName", + "jsonPath": "$['properties']['hostName']", "message": "ReadOnly property \`\\"hostName\\": \\"iot-dps-cit-hub-1.azure-devices.net\\"\`, cannot be sent in the request.", "params": Array [ "hostName", "iot-dps-cit-hub-1.azure-devices.net", ], - "path": "properties/hostName", + "path": "$/properties/hostName", "position": Object { "column": 21, "line": 1983, @@ -60845,7 +61437,7 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The partition ids in the Event Hub-compatible endpoint.", "directives": Object {}, - "jsonPath": "$.properties.eventHubEndpoints.events.partitionIds", + "jsonPath": "$['properties']['eventHubEndpoints']['events']['partitionIds']", "message": "ReadOnly property \`\\"partitionIds\\": 0,1\`, cannot be sent in the request.", "params": Array [ "partitionIds", @@ -60854,7 +61446,7 @@ Array [ "1", ], ], - "path": "properties/eventHubEndpoints/events/partitionIds", + "path": "$/properties/eventHubEndpoints/events/partitionIds", "position": Object { "column": 25, "line": 2109, @@ -60874,13 +61466,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The Event Hub-compatible name.", "directives": Object {}, - "jsonPath": "$.properties.eventHubEndpoints.events.path", + "jsonPath": "$['properties']['eventHubEndpoints']['events']['path']", "message": "ReadOnly property \`\\"path\\": \\"iot-dps-cit-hub-1\\"\`, cannot be sent in the request.", "params": Array [ "path", "iot-dps-cit-hub-1", ], - "path": "properties/eventHubEndpoints/events/path", + "path": "$/properties/eventHubEndpoints/events/path", "position": Object { "column": 17, "line": 2117, @@ -60900,13 +61492,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The Event Hub-compatible endpoint.", "directives": Object {}, - "jsonPath": "$.properties.eventHubEndpoints.events.endpoint", + "jsonPath": "$['properties']['eventHubEndpoints']['events']['endpoint']", "message": "ReadOnly property \`\\"endpoint\\": \\"sb://iothub-ns-iot-dps-ci-245306-76aca8e13b.servicebus.windows.net/\\"\`, cannot be sent in the request.", "params": Array [ "endpoint", "sb://iothub-ns-iot-dps-ci-245306-76aca8e13b.servicebus.windows.net/", ], - "path": "properties/eventHubEndpoints/events/endpoint", + "path": "$/properties/eventHubEndpoints/events/endpoint", "position": Object { "column": 21, "line": 2122, @@ -60926,13 +61518,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Devices/IotHubs\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Devices/IotHubs", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 2610, @@ -60952,13 +61544,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"iot-dps-cit-hub-1\\"\`, cannot be sent in the request.", "params": Array [ "name", "iot-dps-cit-hub-1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 2604, @@ -60978,13 +61570,13 @@ Array [ "code": "INVALID_TYPE", "description": "App properties", "directives": Object {}, - "jsonPath": "$.message.appProperties", + "jsonPath": "$['message']['appProperties']", "message": "Expected type object but found type string", "params": Array [ "object", "string", ], - "path": "message/appProperties", + "path": "$/message/appProperties", "position": Object { "column": 26, "line": 3255, @@ -61004,13 +61596,13 @@ Array [ "code": "INVALID_TYPE", "description": "System properties", "directives": Object {}, - "jsonPath": "$.message.systemProperties", + "jsonPath": "$['message']['systemProperties']", "message": "Expected type object but found type string", "params": Array [ "object", "string", ], - "path": "message/systemProperties", + "path": "$/message/systemProperties", "position": Object { "column": 29, "line": 3262, @@ -61030,13 +61622,13 @@ Array [ "code": "INVALID_TYPE", "description": "App properties", "directives": Object {}, - "jsonPath": "$.message.appProperties", + "jsonPath": "$['message']['appProperties']", "message": "Expected type object but found type string", "params": Array [ "object", "string", ], - "path": "message/appProperties", + "path": "$/message/appProperties", "position": Object { "column": 26, "line": 3255, @@ -61056,13 +61648,13 @@ Array [ "code": "INVALID_TYPE", "description": "System properties", "directives": Object {}, - "jsonPath": "$.message.systemProperties", + "jsonPath": "$['message']['systemProperties']", "message": "Expected type object but found type string", "params": Array [ "object", "string", ], - "path": "message/systemProperties", + "path": "$/message/systemProperties", "position": Object { "column": 29, "line": 3262, @@ -61101,88 +61693,88 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The object that represents the operation.", "directives": Object {}, - "jsonPath": "$.value[0].display.description", + "jsonPath": "$['value'][0]['display']['description']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/iothub/resource-manager/Microsoft.Devices/stable/2018-01-22/examples/iothub_operations.json", "message": "Additional properties not allowed: description", "params": Array [ "description", ], - "path": "value/0/display/description", + "path": "$/value/0/display/description", "position": Object { "column": 20, "line": 2202, }, "similarJsonPaths": Array [ - "$.value[1].display.description", - "$.value[2].display.description", - "$.value[3].display.description", - "$.value[4].display.description", - "$.value[5].display.description", - "$.value[6].display.description", - "$.value[7].display.description", - "$.value[8].display.description", - "$.value[9].display.description", - "$.value[10].display.description", - "$.value[11].display.description", - "$.value[12].display.description", - "$.value[13].display.description", - "$.value[14].display.description", - "$.value[15].display.description", - "$.value[16].display.description", - "$.value[17].display.description", - "$.value[18].display.description", - "$.value[19].display.description", - "$.value[20].display.description", - "$.value[21].display.description", - "$.value[22].display.description", - "$.value[23].display.description", - "$.value[24].display.description", - "$.value[25].display.description", - "$.value[26].display.description", - "$.value[27].display.description", - "$.value[28].display.description", - "$.value[29].display.description", - "$.value[30].display.description", - "$.value[31].display.description", - "$.value[32].display.description", - "$.value[33].display.description", - "$.value[34].display.description", + "$['value'][1]['display']['description']", + "$['value'][2]['display']['description']", + "$['value'][3]['display']['description']", + "$['value'][4]['display']['description']", + "$['value'][5]['display']['description']", + "$['value'][6]['display']['description']", + "$['value'][7]['display']['description']", + "$['value'][8]['display']['description']", + "$['value'][9]['display']['description']", + "$['value'][10]['display']['description']", + "$['value'][11]['display']['description']", + "$['value'][12]['display']['description']", + "$['value'][13]['display']['description']", + "$['value'][14]['display']['description']", + "$['value'][15]['display']['description']", + "$['value'][16]['display']['description']", + "$['value'][17]['display']['description']", + "$['value'][18]['display']['description']", + "$['value'][19]['display']['description']", + "$['value'][20]['display']['description']", + "$['value'][21]['display']['description']", + "$['value'][22]['display']['description']", + "$['value'][23]['display']['description']", + "$['value'][24]['display']['description']", + "$['value'][25]['display']['description']", + "$['value'][26]['display']['description']", + "$['value'][27]['display']['description']", + "$['value'][28]['display']['description']", + "$['value'][29]['display']['description']", + "$['value'][30]['display']['description']", + "$['value'][31]['display']['description']", + "$['value'][32]['display']['description']", + "$['value'][33]['display']['description']", + "$['value'][34]['display']['description']", ], "similarPaths": Array [ - "value/1/display/description", - "value/2/display/description", - "value/3/display/description", - "value/4/display/description", - "value/5/display/description", - "value/6/display/description", - "value/7/display/description", - "value/8/display/description", - "value/9/display/description", - "value/10/display/description", - "value/11/display/description", - "value/12/display/description", - "value/13/display/description", - "value/14/display/description", - "value/15/display/description", - "value/16/display/description", - "value/17/display/description", - "value/18/display/description", - "value/19/display/description", - "value/20/display/description", - "value/21/display/description", - "value/22/display/description", - "value/23/display/description", - "value/24/display/description", - "value/25/display/description", - "value/26/display/description", - "value/27/display/description", - "value/28/display/description", - "value/29/display/description", - "value/30/display/description", - "value/31/display/description", - "value/32/display/description", - "value/33/display/description", - "value/34/display/description", + "$/value/1/display/description", + "$/value/2/display/description", + "$/value/3/display/description", + "$/value/4/display/description", + "$/value/5/display/description", + "$/value/6/display/description", + "$/value/7/display/description", + "$/value/8/display/description", + "$/value/9/display/description", + "$/value/10/display/description", + "$/value/11/display/description", + "$/value/12/display/description", + "$/value/13/display/description", + "$/value/14/display/description", + "$/value/15/display/description", + "$/value/16/display/description", + "$/value/17/display/description", + "$/value/18/display/description", + "$/value/19/display/description", + "$/value/20/display/description", + "$/value/21/display/description", + "$/value/22/display/description", + "$/value/23/display/description", + "$/value/24/display/description", + "$/value/25/display/description", + "$/value/26/display/description", + "$/value/27/display/description", + "$/value/28/display/description", + "$/value/29/display/description", + "$/value/30/display/description", + "$/value/31/display/description", + "$/value/32/display/description", + "$/value/33/display/description", + "$/value/34/display/description", ], "title": "#/definitions/Operation/properties/display", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/iothub/resource-manager/Microsoft.Devices/stable/2018-01-22/iothub.json", @@ -61199,13 +61791,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The billing tier for the IoT hub.", "directives": Object {}, - "jsonPath": "$.sku.tier", + "jsonPath": "$['sku']['tier']", "message": "ReadOnly property \`\\"tier\\": \\"Standard\\"\`, cannot be sent in the request.", "params": Array [ "tier", "Standard", ], - "path": "sku/tier", + "path": "$/sku/tier", "position": Object { "column": 17, "line": 1634, @@ -61225,13 +61817,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The hub state.", "directives": Object {}, - "jsonPath": "$.properties.state", + "jsonPath": "$['properties']['state']", "message": "ReadOnly property \`\\"state\\": \\"Active\\"\`, cannot be sent in the request.", "params": Array [ "state", "Active", ], - "path": "properties/state", + "path": "$/properties/state", "position": Object { "column": 18, "line": 1562, @@ -61251,13 +61843,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The provisioning state.", "directives": Object {}, - "jsonPath": "$.properties.provisioningState", + "jsonPath": "$['properties']['provisioningState']", "message": "ReadOnly property \`\\"provisioningState\\": \\"Succeeded\\"\`, cannot be sent in the request.", "params": Array [ "provisioningState", "Succeeded", ], - "path": "properties/provisioningState", + "path": "$/properties/provisioningState", "position": Object { "column": 30, "line": 1557, @@ -61277,13 +61869,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the host.", "directives": Object {}, - "jsonPath": "$.properties.hostName", + "jsonPath": "$['properties']['hostName']", "message": "ReadOnly property \`\\"hostName\\": \\"iot-dps-cit-hub-1.azure-devices.net\\"\`, cannot be sent in the request.", "params": Array [ "hostName", "iot-dps-cit-hub-1.azure-devices.net", ], - "path": "properties/hostName", + "path": "$/properties/hostName", "position": Object { "column": 21, "line": 1567, @@ -61303,7 +61895,7 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The partition ids in the Event Hub-compatible endpoint.", "directives": Object {}, - "jsonPath": "$.properties.eventHubEndpoints.events.partitionIds", + "jsonPath": "$['properties']['eventHubEndpoints']['events']['partitionIds']", "message": "ReadOnly property \`\\"partitionIds\\": 0,1\`, cannot be sent in the request.", "params": Array [ "partitionIds", @@ -61312,7 +61904,7 @@ Array [ "1", ], ], - "path": "properties/eventHubEndpoints/events/partitionIds", + "path": "$/properties/eventHubEndpoints/events/partitionIds", "position": Object { "column": 25, "line": 1668, @@ -61332,13 +61924,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The Event Hub-compatible name.", "directives": Object {}, - "jsonPath": "$.properties.eventHubEndpoints.events.path", + "jsonPath": "$['properties']['eventHubEndpoints']['events']['path']", "message": "ReadOnly property \`\\"path\\": \\"iot-dps-cit-hub-1\\"\`, cannot be sent in the request.", "params": Array [ "path", "iot-dps-cit-hub-1", ], - "path": "properties/eventHubEndpoints/events/path", + "path": "$/properties/eventHubEndpoints/events/path", "position": Object { "column": 17, "line": 1676, @@ -61358,13 +61950,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The Event Hub-compatible endpoint.", "directives": Object {}, - "jsonPath": "$.properties.eventHubEndpoints.events.endpoint", + "jsonPath": "$['properties']['eventHubEndpoints']['events']['endpoint']", "message": "ReadOnly property \`\\"endpoint\\": \\"sb://iothub-ns-iot-dps-ci-245306-76aca8e13b.servicebus.windows.net/\\"\`, cannot be sent in the request.", "params": Array [ "endpoint", "sb://iothub-ns-iot-dps-ci-245306-76aca8e13b.servicebus.windows.net/", ], - "path": "properties/eventHubEndpoints/events/endpoint", + "path": "$/properties/eventHubEndpoints/events/endpoint", "position": Object { "column": 21, "line": 1681, @@ -61384,7 +61976,7 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The partition ids in the Event Hub-compatible endpoint.", "directives": Object {}, - "jsonPath": "$.properties.eventHubEndpoints.operationsMonitoringEvents.partitionIds", + "jsonPath": "$['properties']['eventHubEndpoints']['operationsMonitoringEvents']['partitionIds']", "message": "ReadOnly property \`\\"partitionIds\\": 0,1\`, cannot be sent in the request.", "params": Array [ "partitionIds", @@ -61393,7 +61985,7 @@ Array [ "1", ], ], - "path": "properties/eventHubEndpoints/operationsMonitoringEvents/partitionIds", + "path": "$/properties/eventHubEndpoints/operationsMonitoringEvents/partitionIds", "position": Object { "column": 25, "line": 1668, @@ -61413,13 +62005,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The Event Hub-compatible name.", "directives": Object {}, - "jsonPath": "$.properties.eventHubEndpoints.operationsMonitoringEvents.path", + "jsonPath": "$['properties']['eventHubEndpoints']['operationsMonitoringEvents']['path']", "message": "ReadOnly property \`\\"path\\": \\"iot-dps-cit-hub-1-operationmonitoring\\"\`, cannot be sent in the request.", "params": Array [ "path", "iot-dps-cit-hub-1-operationmonitoring", ], - "path": "properties/eventHubEndpoints/operationsMonitoringEvents/path", + "path": "$/properties/eventHubEndpoints/operationsMonitoringEvents/path", "position": Object { "column": 17, "line": 1676, @@ -61439,13 +62031,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The Event Hub-compatible endpoint.", "directives": Object {}, - "jsonPath": "$.properties.eventHubEndpoints.operationsMonitoringEvents.endpoint", + "jsonPath": "$['properties']['eventHubEndpoints']['operationsMonitoringEvents']['endpoint']", "message": "ReadOnly property \`\\"endpoint\\": \\"sb://iothub-ns-iot-dps-ci-245306-76aca8e13b.servicebus.windows.net/\\"\`, cannot be sent in the request.", "params": Array [ "endpoint", "sb://iothub-ns-iot-dps-ci-245306-76aca8e13b.servicebus.windows.net/", ], - "path": "properties/eventHubEndpoints/operationsMonitoringEvents/endpoint", + "path": "$/properties/eventHubEndpoints/operationsMonitoringEvents/endpoint", "position": Object { "column": 21, "line": 1681, @@ -61465,13 +62057,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Devices/IotHubs\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Devices/IotHubs", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 2135, @@ -61491,13 +62083,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"iot-dps-cit-hub-1\\"\`, cannot be sent in the request.", "params": Array [ "name", "iot-dps-cit-hub-1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 2129, @@ -61549,7 +62141,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The attributes of a key managed by the key vault service.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 40, @@ -61559,7 +62151,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 22, "line": 3857, @@ -61600,7 +62192,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The attributes of a key managed by the key vault service.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 39, @@ -61610,7 +62202,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 22, "line": 3857, @@ -61651,7 +62243,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The attributes of a key managed by the key vault service.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 26, @@ -61661,7 +62253,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 22, "line": 3857, @@ -61702,7 +62294,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The attributes of a key managed by the key vault service.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 31, @@ -61712,7 +62304,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 22, "line": 3857, @@ -61753,7 +62345,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The attributes of a key managed by the key vault service.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 24, @@ -61763,7 +62355,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 22, "line": 3857, @@ -61804,13 +62396,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The attributes of a key managed by the key vault service.", "directives": Object {}, - "jsonPath": "$.value[0].attributes.recoverylevel", + "jsonPath": "$['value'][0]['attributes']['recoverylevel']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/keyvault/data-plane/Microsoft.KeyVault/preview/7.0/examples/GetKeyVersions-example.json", "message": "Additional properties not allowed: recoverylevel", "params": Array [ "recoverylevel", ], - "path": "value/0/attributes/recoverylevel", + "path": "$/value/0/attributes/recoverylevel", "position": Object { "column": 22, "line": 3857, @@ -61851,13 +62443,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The attributes of a key managed by the key vault service.", "directives": Object {}, - "jsonPath": "$.value[0].attributes.recoverylevel", + "jsonPath": "$['value'][0]['attributes']['recoverylevel']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/keyvault/data-plane/Microsoft.KeyVault/preview/7.0/examples/GetKeys-example.json", "message": "Additional properties not allowed: recoverylevel", "params": Array [ "recoverylevel", ], - "path": "value/0/attributes/recoverylevel", + "path": "$/value/0/attributes/recoverylevel", "position": Object { "column": 22, "line": 3857, @@ -61919,7 +62511,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The attributes of a key managed by the key vault service.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 24, @@ -61929,7 +62521,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 22, "line": 3857, @@ -62096,13 +62688,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The attributes of a key managed by the key vault service.", "directives": Object {}, - "jsonPath": "$.value[0].attributes.recoverylevel", + "jsonPath": "$['value'][0]['attributes']['recoverylevel']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/keyvault/data-plane/Microsoft.KeyVault/preview/7.0/examples/GetDeletedKeys-example.json", "message": "Additional properties not allowed: recoverylevel", "params": Array [ "recoverylevel", ], - "path": "value/0/attributes/recoverylevel", + "path": "$/value/0/attributes/recoverylevel", "position": Object { "column": 22, "line": 3857, @@ -62143,7 +62735,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The attributes of a key managed by the key vault service.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 26, @@ -62153,7 +62745,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 22, "line": 3857, @@ -62231,7 +62823,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The attributes of a key managed by the key vault service.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 23, @@ -62241,7 +62833,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 22, "line": 3857, @@ -62282,7 +62874,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The secret management attributes.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 14, @@ -62292,7 +62884,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 25, "line": 4099, @@ -62333,7 +62925,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The secret management attributes.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 13, @@ -62343,7 +62935,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 25, "line": 4099, @@ -62384,7 +62976,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The secret management attributes.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 19, @@ -62394,7 +62986,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 25, "line": 4099, @@ -62435,7 +63027,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The secret management attributes.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 12, @@ -62445,7 +63037,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 25, "line": 4099, @@ -62528,13 +63120,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The secret management attributes.", "directives": Object {}, - "jsonPath": "$.value[0].attributes.recoverylevel", + "jsonPath": "$['value'][0]['attributes']['recoverylevel']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/keyvault/data-plane/Microsoft.KeyVault/preview/7.0/examples/GetDeletedSecrets-example.json", "message": "Additional properties not allowed: recoverylevel", "params": Array [ "recoverylevel", ], - "path": "value/0/attributes/recoverylevel", + "path": "$/value/0/attributes/recoverylevel", "position": Object { "column": 25, "line": 4099, @@ -62575,7 +63167,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The secret management attributes.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 13, @@ -62585,7 +63177,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 25, "line": 4099, @@ -62663,7 +63255,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The secret management attributes.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 10, @@ -62673,7 +63265,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 25, "line": 4099, @@ -62735,7 +63327,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The secret management attributes.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 13, @@ -62745,7 +63337,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 25, "line": 4099, @@ -62807,13 +63399,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of the X509 component of a certificate.", "directives": Object {}, - "jsonPath": "$.policy.x509_props.basic_constraints", + "jsonPath": "$['policy']['x509_props']['basic_constraints']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/keyvault/data-plane/Microsoft.KeyVault/preview/7.0/examples/DeleteCertificate-example.json", "message": "Additional properties not allowed: basic_constraints", "params": Array [ "basic_constraints", ], - "path": "policy/x509_props/basic_constraints", + "path": "$/policy/x509_props/basic_constraints", "position": Object { "column": 34, "line": 4440, @@ -62833,7 +63425,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The certificate management attributes.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 17, @@ -62843,7 +63435,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 30, "line": 4144, @@ -62968,7 +63560,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Details of the organization of the certificate issuer.", "directives": Object {}, - "jsonPath": "$.org_details.zip", + "jsonPath": "$['org_details']['zip']", "jsonPosition": Object { "column": 24, "line": 31, @@ -62978,7 +63570,7 @@ Array [ "params": Array [ "zip", ], - "path": "org_details/zip", + "path": "$/org_details/zip", "position": Object { "column": 28, "line": 4631, @@ -63019,7 +63611,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Details of the organization of the certificate issuer.", "directives": Object {}, - "jsonPath": "$.org_details.zip", + "jsonPath": "$['org_details']['zip']", "jsonPosition": Object { "column": 24, "line": 21, @@ -63029,7 +63621,7 @@ Array [ "params": Array [ "zip", ], - "path": "org_details/zip", + "path": "$/org_details/zip", "position": Object { "column": 28, "line": 4631, @@ -63070,7 +63662,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Details of the organization of the certificate issuer.", "directives": Object {}, - "jsonPath": "$.org_details.zip", + "jsonPath": "$['org_details']['zip']", "jsonPosition": Object { "column": 24, "line": 14, @@ -63080,7 +63672,7 @@ Array [ "params": Array [ "zip", ], - "path": "org_details/zip", + "path": "$/org_details/zip", "position": Object { "column": 28, "line": 4631, @@ -63121,7 +63713,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Details of the organization of the certificate issuer.", "directives": Object {}, - "jsonPath": "$.org_details.zip", + "jsonPath": "$['org_details']['zip']", "jsonPosition": Object { "column": 24, "line": 14, @@ -63131,7 +63723,7 @@ Array [ "params": Array [ "zip", ], - "path": "org_details/zip", + "path": "$/org_details/zip", "position": Object { "column": 28, "line": 4631, @@ -63193,13 +63785,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of the X509 component of a certificate.", "directives": Object {}, - "jsonPath": "$.policy.x509_props.basic_constraints", + "jsonPath": "$['policy']['x509_props']['basic_constraints']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/keyvault/data-plane/Microsoft.KeyVault/preview/7.0/examples/ImportCertificate-example.json", "message": "Additional properties not allowed: basic_constraints", "params": Array [ "basic_constraints", ], - "path": "policy/x509_props/basic_constraints", + "path": "$/policy/x509_props/basic_constraints", "position": Object { "column": 34, "line": 4440, @@ -63219,7 +63811,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The certificate management attributes.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 29, @@ -63229,7 +63821,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 30, "line": 4144, @@ -63291,7 +63883,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of the X509 component of a certificate.", "directives": Object {}, - "jsonPath": "$.x509_props.basic_constraints", + "jsonPath": "$['x509_props']['basic_constraints']", "jsonPosition": Object { "column": 23, "line": 19, @@ -63301,7 +63893,7 @@ Array [ "params": Array [ "basic_constraints", ], - "path": "x509_props/basic_constraints", + "path": "$/x509_props/basic_constraints", "position": Object { "column": 34, "line": 4440, @@ -63342,7 +63934,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of the X509 component of a certificate.", "directives": Object {}, - "jsonPath": "$.x509_props.basic_constraints", + "jsonPath": "$['x509_props']['basic_constraints']", "jsonPosition": Object { "column": 23, "line": 52, @@ -63352,7 +63944,7 @@ Array [ "params": Array [ "basic_constraints", ], - "path": "x509_props/basic_constraints", + "path": "$/x509_props/basic_constraints", "position": Object { "column": 34, "line": 4440, @@ -63414,7 +64006,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A certificate bundle consists of a certificate (X509) plus its attributes.", "directives": Object {}, - "jsonPath": "$.issuer", + "jsonPath": "$['issuer']", "jsonPosition": Object { "column": 15, "line": 9, @@ -63424,7 +64016,7 @@ Array [ "params": Array [ "issuer", ], - "path": "issuer", + "path": "$/issuer", "position": Object { "column": 26, "line": 4204, @@ -63444,7 +64036,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A certificate bundle consists of a certificate (X509) plus its attributes.", "directives": Object {}, - "jsonPath": "$.csr", + "jsonPath": "$['csr']", "jsonPosition": Object { "column": 15, "line": 9, @@ -63454,7 +64046,7 @@ Array [ "params": Array [ "csr", ], - "path": "csr", + "path": "$/csr", "position": Object { "column": 26, "line": 4204, @@ -63474,7 +64066,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A certificate bundle consists of a certificate (X509) plus its attributes.", "directives": Object {}, - "jsonPath": "$.cancellation_requested", + "jsonPath": "$['cancellation_requested']", "jsonPosition": Object { "column": 15, "line": 9, @@ -63484,7 +64076,7 @@ Array [ "params": Array [ "cancellation_requested", ], - "path": "cancellation_requested", + "path": "$/cancellation_requested", "position": Object { "column": 26, "line": 4204, @@ -63504,7 +64096,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A certificate bundle consists of a certificate (X509) plus its attributes.", "directives": Object {}, - "jsonPath": "$.status", + "jsonPath": "$['status']", "jsonPosition": Object { "column": 15, "line": 9, @@ -63514,7 +64106,7 @@ Array [ "params": Array [ "status", ], - "path": "status", + "path": "$/status", "position": Object { "column": 26, "line": 4204, @@ -63534,7 +64126,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A certificate bundle consists of a certificate (X509) plus its attributes.", "directives": Object {}, - "jsonPath": "$.target", + "jsonPath": "$['target']", "jsonPosition": Object { "column": 15, "line": 9, @@ -63544,7 +64136,7 @@ Array [ "params": Array [ "target", ], - "path": "target", + "path": "$/target", "position": Object { "column": 26, "line": 4204, @@ -63564,7 +64156,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A certificate bundle consists of a certificate (X509) plus its attributes.", "directives": Object {}, - "jsonPath": "$.request_id", + "jsonPath": "$['request_id']", "jsonPosition": Object { "column": 15, "line": 9, @@ -63574,7 +64166,7 @@ Array [ "params": Array [ "request_id", ], - "path": "request_id", + "path": "$/request_id", "position": Object { "column": 26, "line": 4204, @@ -63678,7 +64270,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A certificate bundle consists of a certificate (X509) plus its attributes.", "directives": Object {}, - "jsonPath": "$.pending", + "jsonPath": "$['pending']", "jsonPosition": Object { "column": 17, "line": 13, @@ -63688,7 +64280,7 @@ Array [ "params": Array [ "pending", ], - "path": "pending", + "path": "$/pending", "position": Object { "column": 26, "line": 4204, @@ -63750,13 +64342,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of the X509 component of a certificate.", "directives": Object {}, - "jsonPath": "$.policy.x509_props.basic_constraints", + "jsonPath": "$['policy']['x509_props']['basic_constraints']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/keyvault/data-plane/Microsoft.KeyVault/preview/7.0/examples/RestoreCertificate-example.json", "message": "Additional properties not allowed: basic_constraints", "params": Array [ "basic_constraints", ], - "path": "policy/x509_props/basic_constraints", + "path": "$/policy/x509_props/basic_constraints", "position": Object { "column": 34, "line": 4440, @@ -63797,13 +64389,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The certificate management attributes.", "directives": Object {}, - "jsonPath": "$.value[0].attributes.recoverylevel", + "jsonPath": "$['value'][0]['attributes']['recoverylevel']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/keyvault/data-plane/Microsoft.KeyVault/preview/7.0/examples/GetDeletedCertificates-example.json", "message": "Additional properties not allowed: recoverylevel", "params": Array [ "recoverylevel", ], - "path": "value/0/attributes/recoverylevel", + "path": "$/value/0/attributes/recoverylevel", "position": Object { "column": 30, "line": 4144, @@ -63844,13 +64436,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of the X509 component of a certificate.", "directives": Object {}, - "jsonPath": "$.policy.x509_props.basic_constraints", + "jsonPath": "$['policy']['x509_props']['basic_constraints']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/keyvault/data-plane/Microsoft.KeyVault/preview/7.0/examples/GetDeletedCertificate-example.json", "message": "Additional properties not allowed: basic_constraints", "params": Array [ "basic_constraints", ], - "path": "policy/x509_props/basic_constraints", + "path": "$/policy/x509_props/basic_constraints", "position": Object { "column": 34, "line": 4440, @@ -63870,7 +64462,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The certificate management attributes.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 18, @@ -63880,7 +64472,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 30, "line": 4144, @@ -63958,13 +64550,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of the X509 component of a certificate.", "directives": Object {}, - "jsonPath": "$.policy.x509_props.basic_constraints", + "jsonPath": "$['policy']['x509_props']['basic_constraints']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/keyvault/data-plane/Microsoft.KeyVault/preview/7.0/examples/RecoverDeletedCertificate-example.json", "message": "Additional properties not allowed: basic_constraints", "params": Array [ "basic_constraints", ], - "path": "policy/x509_props/basic_constraints", + "path": "$/policy/x509_props/basic_constraints", "position": Object { "column": 34, "line": 4440, @@ -63984,7 +64576,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The certificate management attributes.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 14, @@ -63994,7 +64586,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 30, "line": 4144, @@ -64058,7 +64650,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The attributes of a key managed by the key vault service.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 40, @@ -64068,7 +64660,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 22, "line": 3857, @@ -64109,7 +64701,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The attributes of a key managed by the key vault service.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 39, @@ -64119,7 +64711,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 22, "line": 3857, @@ -64160,7 +64752,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The attributes of a key managed by the key vault service.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 26, @@ -64170,7 +64762,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 22, "line": 3857, @@ -64211,7 +64803,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The attributes of a key managed by the key vault service.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 31, @@ -64221,7 +64813,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 22, "line": 3857, @@ -64262,7 +64854,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The attributes of a key managed by the key vault service.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 24, @@ -64272,7 +64864,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 22, "line": 3857, @@ -64313,13 +64905,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The attributes of a key managed by the key vault service.", "directives": Object {}, - "jsonPath": "$.value[0].attributes.recoverylevel", + "jsonPath": "$['value'][0]['attributes']['recoverylevel']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/keyvault/data-plane/Microsoft.KeyVault/stable/7.0/examples/GetKeyVersions-example.json", "message": "Additional properties not allowed: recoverylevel", "params": Array [ "recoverylevel", ], - "path": "value/0/attributes/recoverylevel", + "path": "$/value/0/attributes/recoverylevel", "position": Object { "column": 22, "line": 3857, @@ -64360,13 +64952,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The attributes of a key managed by the key vault service.", "directives": Object {}, - "jsonPath": "$.value[0].attributes.recoverylevel", + "jsonPath": "$['value'][0]['attributes']['recoverylevel']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/keyvault/data-plane/Microsoft.KeyVault/stable/7.0/examples/GetKeys-example.json", "message": "Additional properties not allowed: recoverylevel", "params": Array [ "recoverylevel", ], - "path": "value/0/attributes/recoverylevel", + "path": "$/value/0/attributes/recoverylevel", "position": Object { "column": 22, "line": 3857, @@ -64428,7 +65020,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The attributes of a key managed by the key vault service.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 24, @@ -64438,7 +65030,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 22, "line": 3857, @@ -64605,13 +65197,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The attributes of a key managed by the key vault service.", "directives": Object {}, - "jsonPath": "$.value[0].attributes.recoverylevel", + "jsonPath": "$['value'][0]['attributes']['recoverylevel']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/keyvault/data-plane/Microsoft.KeyVault/stable/7.0/examples/GetDeletedKeys-example.json", "message": "Additional properties not allowed: recoverylevel", "params": Array [ "recoverylevel", ], - "path": "value/0/attributes/recoverylevel", + "path": "$/value/0/attributes/recoverylevel", "position": Object { "column": 22, "line": 3857, @@ -64652,7 +65244,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The attributes of a key managed by the key vault service.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 26, @@ -64662,7 +65254,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 22, "line": 3857, @@ -64740,7 +65332,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The attributes of a key managed by the key vault service.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 23, @@ -64750,7 +65342,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 22, "line": 3857, @@ -64791,7 +65383,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The secret management attributes.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 14, @@ -64801,7 +65393,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 25, "line": 4099, @@ -64842,7 +65434,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The secret management attributes.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 13, @@ -64852,7 +65444,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 25, "line": 4099, @@ -64893,7 +65485,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The secret management attributes.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 19, @@ -64903,7 +65495,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 25, "line": 4099, @@ -64944,7 +65536,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The secret management attributes.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 12, @@ -64954,7 +65546,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 25, "line": 4099, @@ -65037,13 +65629,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The secret management attributes.", "directives": Object {}, - "jsonPath": "$.value[0].attributes.recoverylevel", + "jsonPath": "$['value'][0]['attributes']['recoverylevel']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/keyvault/data-plane/Microsoft.KeyVault/stable/7.0/examples/GetDeletedSecrets-example.json", "message": "Additional properties not allowed: recoverylevel", "params": Array [ "recoverylevel", ], - "path": "value/0/attributes/recoverylevel", + "path": "$/value/0/attributes/recoverylevel", "position": Object { "column": 25, "line": 4099, @@ -65084,7 +65676,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The secret management attributes.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 13, @@ -65094,7 +65686,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 25, "line": 4099, @@ -65172,7 +65764,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The secret management attributes.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 10, @@ -65182,7 +65774,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 25, "line": 4099, @@ -65244,7 +65836,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The secret management attributes.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 13, @@ -65254,7 +65846,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 25, "line": 4099, @@ -65316,13 +65908,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of the X509 component of a certificate.", "directives": Object {}, - "jsonPath": "$.policy.x509_props.basic_constraints", + "jsonPath": "$['policy']['x509_props']['basic_constraints']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/keyvault/data-plane/Microsoft.KeyVault/stable/7.0/examples/DeleteCertificate-example.json", "message": "Additional properties not allowed: basic_constraints", "params": Array [ "basic_constraints", ], - "path": "policy/x509_props/basic_constraints", + "path": "$/policy/x509_props/basic_constraints", "position": Object { "column": 34, "line": 4440, @@ -65342,7 +65934,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The certificate management attributes.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 17, @@ -65352,7 +65944,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 30, "line": 4144, @@ -65477,7 +66069,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Details of the organization of the certificate issuer.", "directives": Object {}, - "jsonPath": "$.org_details.zip", + "jsonPath": "$['org_details']['zip']", "jsonPosition": Object { "column": 24, "line": 31, @@ -65487,7 +66079,7 @@ Array [ "params": Array [ "zip", ], - "path": "org_details/zip", + "path": "$/org_details/zip", "position": Object { "column": 28, "line": 4631, @@ -65528,7 +66120,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Details of the organization of the certificate issuer.", "directives": Object {}, - "jsonPath": "$.org_details.zip", + "jsonPath": "$['org_details']['zip']", "jsonPosition": Object { "column": 24, "line": 21, @@ -65538,7 +66130,7 @@ Array [ "params": Array [ "zip", ], - "path": "org_details/zip", + "path": "$/org_details/zip", "position": Object { "column": 28, "line": 4631, @@ -65579,7 +66171,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Details of the organization of the certificate issuer.", "directives": Object {}, - "jsonPath": "$.org_details.zip", + "jsonPath": "$['org_details']['zip']", "jsonPosition": Object { "column": 24, "line": 14, @@ -65589,7 +66181,7 @@ Array [ "params": Array [ "zip", ], - "path": "org_details/zip", + "path": "$/org_details/zip", "position": Object { "column": 28, "line": 4631, @@ -65630,7 +66222,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Details of the organization of the certificate issuer.", "directives": Object {}, - "jsonPath": "$.org_details.zip", + "jsonPath": "$['org_details']['zip']", "jsonPosition": Object { "column": 24, "line": 14, @@ -65640,7 +66232,7 @@ Array [ "params": Array [ "zip", ], - "path": "org_details/zip", + "path": "$/org_details/zip", "position": Object { "column": 28, "line": 4631, @@ -65702,13 +66294,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of the X509 component of a certificate.", "directives": Object {}, - "jsonPath": "$.policy.x509_props.basic_constraints", + "jsonPath": "$['policy']['x509_props']['basic_constraints']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/keyvault/data-plane/Microsoft.KeyVault/stable/7.0/examples/ImportCertificate-example.json", "message": "Additional properties not allowed: basic_constraints", "params": Array [ "basic_constraints", ], - "path": "policy/x509_props/basic_constraints", + "path": "$/policy/x509_props/basic_constraints", "position": Object { "column": 34, "line": 4440, @@ -65728,7 +66320,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The certificate management attributes.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 29, @@ -65738,7 +66330,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 30, "line": 4144, @@ -65800,7 +66392,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of the X509 component of a certificate.", "directives": Object {}, - "jsonPath": "$.x509_props.basic_constraints", + "jsonPath": "$['x509_props']['basic_constraints']", "jsonPosition": Object { "column": 23, "line": 19, @@ -65810,7 +66402,7 @@ Array [ "params": Array [ "basic_constraints", ], - "path": "x509_props/basic_constraints", + "path": "$/x509_props/basic_constraints", "position": Object { "column": 34, "line": 4440, @@ -65851,7 +66443,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of the X509 component of a certificate.", "directives": Object {}, - "jsonPath": "$.x509_props.basic_constraints", + "jsonPath": "$['x509_props']['basic_constraints']", "jsonPosition": Object { "column": 23, "line": 52, @@ -65861,7 +66453,7 @@ Array [ "params": Array [ "basic_constraints", ], - "path": "x509_props/basic_constraints", + "path": "$/x509_props/basic_constraints", "position": Object { "column": 34, "line": 4440, @@ -65923,7 +66515,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A certificate bundle consists of a certificate (X509) plus its attributes.", "directives": Object {}, - "jsonPath": "$.issuer", + "jsonPath": "$['issuer']", "jsonPosition": Object { "column": 15, "line": 9, @@ -65933,7 +66525,7 @@ Array [ "params": Array [ "issuer", ], - "path": "issuer", + "path": "$/issuer", "position": Object { "column": 26, "line": 4204, @@ -65953,7 +66545,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A certificate bundle consists of a certificate (X509) plus its attributes.", "directives": Object {}, - "jsonPath": "$.csr", + "jsonPath": "$['csr']", "jsonPosition": Object { "column": 15, "line": 9, @@ -65963,7 +66555,7 @@ Array [ "params": Array [ "csr", ], - "path": "csr", + "path": "$/csr", "position": Object { "column": 26, "line": 4204, @@ -65983,7 +66575,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A certificate bundle consists of a certificate (X509) plus its attributes.", "directives": Object {}, - "jsonPath": "$.cancellation_requested", + "jsonPath": "$['cancellation_requested']", "jsonPosition": Object { "column": 15, "line": 9, @@ -65993,7 +66585,7 @@ Array [ "params": Array [ "cancellation_requested", ], - "path": "cancellation_requested", + "path": "$/cancellation_requested", "position": Object { "column": 26, "line": 4204, @@ -66013,7 +66605,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A certificate bundle consists of a certificate (X509) plus its attributes.", "directives": Object {}, - "jsonPath": "$.status", + "jsonPath": "$['status']", "jsonPosition": Object { "column": 15, "line": 9, @@ -66023,7 +66615,7 @@ Array [ "params": Array [ "status", ], - "path": "status", + "path": "$/status", "position": Object { "column": 26, "line": 4204, @@ -66043,7 +66635,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A certificate bundle consists of a certificate (X509) plus its attributes.", "directives": Object {}, - "jsonPath": "$.target", + "jsonPath": "$['target']", "jsonPosition": Object { "column": 15, "line": 9, @@ -66053,7 +66645,7 @@ Array [ "params": Array [ "target", ], - "path": "target", + "path": "$/target", "position": Object { "column": 26, "line": 4204, @@ -66073,7 +66665,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A certificate bundle consists of a certificate (X509) plus its attributes.", "directives": Object {}, - "jsonPath": "$.request_id", + "jsonPath": "$['request_id']", "jsonPosition": Object { "column": 15, "line": 9, @@ -66083,7 +66675,7 @@ Array [ "params": Array [ "request_id", ], - "path": "request_id", + "path": "$/request_id", "position": Object { "column": 26, "line": 4204, @@ -66187,7 +66779,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A certificate bundle consists of a certificate (X509) plus its attributes.", "directives": Object {}, - "jsonPath": "$.pending", + "jsonPath": "$['pending']", "jsonPosition": Object { "column": 17, "line": 13, @@ -66197,7 +66789,7 @@ Array [ "params": Array [ "pending", ], - "path": "pending", + "path": "$/pending", "position": Object { "column": 26, "line": 4204, @@ -66259,13 +66851,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of the X509 component of a certificate.", "directives": Object {}, - "jsonPath": "$.policy.x509_props.basic_constraints", + "jsonPath": "$['policy']['x509_props']['basic_constraints']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/keyvault/data-plane/Microsoft.KeyVault/stable/7.0/examples/RestoreCertificate-example.json", "message": "Additional properties not allowed: basic_constraints", "params": Array [ "basic_constraints", ], - "path": "policy/x509_props/basic_constraints", + "path": "$/policy/x509_props/basic_constraints", "position": Object { "column": 34, "line": 4440, @@ -66306,13 +66898,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The certificate management attributes.", "directives": Object {}, - "jsonPath": "$.value[0].attributes.recoverylevel", + "jsonPath": "$['value'][0]['attributes']['recoverylevel']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/keyvault/data-plane/Microsoft.KeyVault/stable/7.0/examples/GetDeletedCertificates-example.json", "message": "Additional properties not allowed: recoverylevel", "params": Array [ "recoverylevel", ], - "path": "value/0/attributes/recoverylevel", + "path": "$/value/0/attributes/recoverylevel", "position": Object { "column": 30, "line": 4144, @@ -66353,13 +66945,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of the X509 component of a certificate.", "directives": Object {}, - "jsonPath": "$.policy.x509_props.basic_constraints", + "jsonPath": "$['policy']['x509_props']['basic_constraints']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/keyvault/data-plane/Microsoft.KeyVault/stable/7.0/examples/GetDeletedCertificate-example.json", "message": "Additional properties not allowed: basic_constraints", "params": Array [ "basic_constraints", ], - "path": "policy/x509_props/basic_constraints", + "path": "$/policy/x509_props/basic_constraints", "position": Object { "column": 34, "line": 4440, @@ -66379,7 +66971,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The certificate management attributes.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 18, @@ -66389,7 +66981,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 30, "line": 4144, @@ -66467,13 +67059,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of the X509 component of a certificate.", "directives": Object {}, - "jsonPath": "$.policy.x509_props.basic_constraints", + "jsonPath": "$['policy']['x509_props']['basic_constraints']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/keyvault/data-plane/Microsoft.KeyVault/stable/7.0/examples/RecoverDeletedCertificate-example.json", "message": "Additional properties not allowed: basic_constraints", "params": Array [ "basic_constraints", ], - "path": "policy/x509_props/basic_constraints", + "path": "$/policy/x509_props/basic_constraints", "position": Object { "column": 34, "line": 4440, @@ -66493,7 +67085,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The certificate management attributes.", "directives": Object {}, - "jsonPath": "$.attributes.recoverylevel", + "jsonPath": "$['attributes']['recoverylevel']", "jsonPosition": Object { "column": 23, "line": 14, @@ -66503,7 +67095,7 @@ Array [ "params": Array [ "recoverylevel", ], - "path": "attributes/recoverylevel", + "path": "$/attributes/recoverylevel", "position": Object { "column": 30, "line": 4144, @@ -66976,13 +67568,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.integrationAccount.name", + "jsonPath": "$['properties']['integrationAccount']['name']", "message": "ReadOnly property \`\\"name\\": \\"test-integration-account\\"\`, cannot be sent in the request.", "params": Array [ "name", "test-integration-account", ], - "path": "properties/integrationAccount/name", + "path": "$/properties/integrationAccount/name", "position": Object { "column": 17, "line": 5174, @@ -67004,13 +67596,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.integrationAccount.type", + "jsonPath": "$['properties']['integrationAccount']['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Logic/integrationAccounts\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Logic/integrationAccounts", ], - "path": "properties/integrationAccount/type", + "path": "$/properties/integrationAccount/type", "position": Object { "column": 17, "line": 5179, @@ -67064,13 +67656,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.integrationAccount.name", + "jsonPath": "$['properties']['integrationAccount']['name']", "message": "ReadOnly property \`\\"name\\": \\"test-integration-account\\"\`, cannot be sent in the request.", "params": Array [ "name", "test-integration-account", ], - "path": "properties/integrationAccount/name", + "path": "$/properties/integrationAccount/name", "position": Object { "column": 17, "line": 5174, @@ -67092,13 +67684,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.integrationAccount.type", + "jsonPath": "$['properties']['integrationAccount']['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Logic/integrationAccounts\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Logic/integrationAccounts", ], - "path": "properties/integrationAccount/type", + "path": "$/properties/integrationAccount/type", "position": Object { "column": 17, "line": 5179, @@ -67152,13 +67744,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/newResourceGroup/providers/Microsoft.Logic/workflows/newWorkflowName\\"\`, cannot be sent in the request.", "params": Array [ "id", "subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/newResourceGroup/providers/Microsoft.Logic/workflows/newWorkflowName", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 5122, @@ -67180,13 +67772,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Logic/workflows\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Logic/workflows", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 5132, @@ -67208,13 +67800,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"test-workflow\\"\`, cannot be sent in the request.", "params": Array [ "name", "test-workflow", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 5127, @@ -67236,13 +67828,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Logic/workflows/test-workflow\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Logic/workflows/test-workflow", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 5122, @@ -67264,13 +67856,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.integrationAccount.name", + "jsonPath": "$['properties']['integrationAccount']['name']", "message": "ReadOnly property \`\\"name\\": \\"test-integration-account\\"\`, cannot be sent in the request.", "params": Array [ "name", "test-integration-account", ], - "path": "properties/integrationAccount/name", + "path": "$/properties/integrationAccount/name", "position": Object { "column": 17, "line": 5174, @@ -67292,13 +67884,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.integrationAccount.type", + "jsonPath": "$['properties']['integrationAccount']['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Logic/integrationAccounts\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Logic/integrationAccounts", ], - "path": "properties/integrationAccount/type", + "path": "$/properties/integrationAccount/type", "position": Object { "column": 17, "line": 5179, @@ -67400,13 +67992,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.source.id", + "jsonPath": "$['source']['id']", "message": "ReadOnly property \`\\"id\\": \\"subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/sourceResGroup/providers/Microsoft.Logic/workflows/sourceWorkflow/triggers/sourceTrigger\\"\`, cannot be sent in the request.", "params": Array [ "id", "subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/sourceResGroup/providers/Microsoft.Logic/workflows/sourceWorkflow/triggers/sourceTrigger", ], - "path": "source/id", + "path": "$/source/id", "position": Object { "column": 15, "line": 5154, @@ -67547,12 +68139,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.releaseCriteria", + "jsonPath": "$['properties']['releaseCriteria']", "message": "Missing required property: releaseCriteria", "params": Array [ "releaseCriteria", ], - "path": "properties/releaseCriteria", + "path": "$/properties/releaseCriteria", "position": Object { "column": 37, "line": 9879, @@ -67574,12 +68166,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.batchGroupName", + "jsonPath": "$['properties']['batchGroupName']", "message": "Missing required property: batchGroupName", "params": Array [ "batchGroupName", ], - "path": "properties/batchGroupName", + "path": "$/properties/batchGroupName", "position": Object { "column": 37, "line": 9879, @@ -67601,12 +68193,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.properties", + "jsonPath": "$['properties']['properties']", "message": "Additional properties not allowed: properties", "params": Array [ "properties", ], - "path": "properties/properties", + "path": "$/properties/properties", "position": Object { "column": 37, "line": 9879, @@ -67627,12 +68219,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.source", + "jsonPath": "$['source']", "message": "Additional properties not allowed: source", "params": Array [ "source", ], - "path": "source", + "path": "$/source", "position": Object { "column": 33, "line": 9337, @@ -67653,12 +68245,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.events[0].record", + "jsonPath": "$['events'][0]['record']", "message": "Additional properties not allowed: record", "params": Array [ "record", ], - "path": "events/0/record", + "path": "$/events/0/record", "position": Object { "column": 22, "line": 9371, @@ -67679,12 +68271,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.events[0].eventlevel", + "jsonPath": "$['events'][0]['eventlevel']", "message": "Additional properties not allowed: eventlevel", "params": Array [ "eventlevel", ], - "path": "events/0/eventlevel", + "path": "$/events/0/eventlevel", "position": Object { "column": 22, "line": 9371, @@ -67705,12 +68297,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.events[0].eventLevel", + "jsonPath": "$['events'][0]['eventLevel']", "message": "Missing required property: eventLevel", "params": Array [ "eventLevel", ], - "path": "events/0/eventLevel", + "path": "$/events/0/eventLevel", "position": Object { "column": 22, "line": 9371, @@ -67732,12 +68324,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.KeyType", + "jsonPath": "$['KeyType']", "message": "Additional properties not allowed: KeyType", "params": Array [ "KeyType", ], - "path": "KeyType", + "path": "$/KeyType", "position": Object { "column": 34, "line": 6038, @@ -67759,13 +68351,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.sendInboundMdnToMessageBox", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['sendInboundMdnToMessageBox']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Additional properties not allowed: sendInboundMdnToMessageBox", "params": Array [ "sendInboundMdnToMessageBox", ], - "path": "value/1/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendInboundMdnToMessageBox", + "path": "$/value/1/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendInboundMdnToMessageBox", "position": Object { "column": 23, "line": 7142, @@ -67787,13 +68379,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.signOutboundMdnIfOptional", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['signOutboundMdnIfOptional']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Additional properties not allowed: signOutboundMdnIfOptional", "params": Array [ "signOutboundMdnIfOptional", ], - "path": "value/1/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signOutboundMdnIfOptional", + "path": "$/value/1/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signOutboundMdnIfOptional", "position": Object { "column": 23, "line": 7142, @@ -67815,13 +68407,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.sendMdnAsynchronously", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['sendMdnAsynchronously']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Additional properties not allowed: sendMdnAsynchronously", "params": Array [ "sendMdnAsynchronously", ], - "path": "value/1/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendMdnAsynchronously", + "path": "$/value/1/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendMdnAsynchronously", "position": Object { "column": 23, "line": 7142, @@ -67843,13 +68435,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.signMdn", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['signMdn']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Additional properties not allowed: signMdn", "params": Array [ "signMdn", ], - "path": "value/1/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signMdn", + "path": "$/value/1/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signMdn", "position": Object { "column": 23, "line": 7142, @@ -67871,13 +68463,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.needMdn", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['needMdn']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Additional properties not allowed: needMdn", "params": Array [ "needMdn", ], - "path": "value/1/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/needMdn", + "path": "$/value/1/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/needMdn", "position": Object { "column": 23, "line": 7142, @@ -67899,13 +68491,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.needMDN", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['needMDN']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Missing required property: needMDN", "params": Array [ "needMDN", ], - "path": "value/1/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/needMDN", + "path": "$/value/1/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/needMDN", "position": Object { "column": 23, "line": 7142, @@ -67927,13 +68519,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.signMDN", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['signMDN']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Missing required property: signMDN", "params": Array [ "signMDN", ], - "path": "value/1/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signMDN", + "path": "$/value/1/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signMDN", "position": Object { "column": 23, "line": 7142, @@ -67955,13 +68547,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.sendMDNAsynchronously", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['sendMDNAsynchronously']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Missing required property: sendMDNAsynchronously", "params": Array [ "sendMDNAsynchronously", ], - "path": "value/1/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendMDNAsynchronously", + "path": "$/value/1/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendMDNAsynchronously", "position": Object { "column": 23, "line": 7142, @@ -67983,13 +68575,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.signOutboundMDNIfOptional", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['signOutboundMDNIfOptional']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Missing required property: signOutboundMDNIfOptional", "params": Array [ "signOutboundMDNIfOptional", ], - "path": "value/1/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signOutboundMDNIfOptional", + "path": "$/value/1/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signOutboundMDNIfOptional", "position": Object { "column": 23, "line": 7142, @@ -68011,13 +68603,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.sendInboundMDNToMessageBox", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['sendInboundMDNToMessageBox']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Missing required property: sendInboundMDNToMessageBox", "params": Array [ "sendInboundMDNToMessageBox", ], - "path": "value/1/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendInboundMDNToMessageBox", + "path": "$/value/1/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendInboundMDNToMessageBox", "position": Object { "column": 23, "line": 7142, @@ -68039,13 +68631,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForInboundMdn", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNrrForInboundMdn']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Additional properties not allowed: enableNrrForInboundMdn", "params": Array [ "enableNrrForInboundMdn", ], - "path": "value/1/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForInboundMdn", + "path": "$/value/1/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForInboundMdn", "position": Object { "column": 28, "line": 7192, @@ -68067,13 +68659,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForOutboundDecodedMessages", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNrrForOutboundDecodedMessages']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Additional properties not allowed: enableNrrForOutboundDecodedMessages", "params": Array [ "enableNrrForOutboundDecodedMessages", ], - "path": "value/1/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForOutboundDecodedMessages", + "path": "$/value/1/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForOutboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -68095,13 +68687,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForOutboundEncodedMessages", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNrrForOutboundEncodedMessages']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Additional properties not allowed: enableNrrForOutboundEncodedMessages", "params": Array [ "enableNrrForOutboundEncodedMessages", ], - "path": "value/1/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForOutboundEncodedMessages", + "path": "$/value/1/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForOutboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -68123,13 +68715,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForOutboundMdn", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNrrForOutboundMdn']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Additional properties not allowed: enableNrrForOutboundMdn", "params": Array [ "enableNrrForOutboundMdn", ], - "path": "value/1/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForOutboundMdn", + "path": "$/value/1/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForOutboundMdn", "position": Object { "column": 28, "line": 7192, @@ -68151,13 +68743,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForInboundDecodedMessages", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNrrForInboundDecodedMessages']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Additional properties not allowed: enableNrrForInboundDecodedMessages", "params": Array [ "enableNrrForInboundDecodedMessages", ], - "path": "value/1/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForInboundDecodedMessages", + "path": "$/value/1/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForInboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -68179,13 +68771,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForInboundEncodedMessages", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNrrForInboundEncodedMessages']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Additional properties not allowed: enableNrrForInboundEncodedMessages", "params": Array [ "enableNrrForInboundEncodedMessages", ], - "path": "value/1/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForInboundEncodedMessages", + "path": "$/value/1/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForInboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -68207,13 +68799,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNRRForInboundEncodedMessages", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNRRForInboundEncodedMessages']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Missing required property: enableNRRForInboundEncodedMessages", "params": Array [ "enableNRRForInboundEncodedMessages", ], - "path": "value/1/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForInboundEncodedMessages", + "path": "$/value/1/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForInboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -68235,13 +68827,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNRRForInboundDecodedMessages", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNRRForInboundDecodedMessages']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Missing required property: enableNRRForInboundDecodedMessages", "params": Array [ "enableNRRForInboundDecodedMessages", ], - "path": "value/1/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForInboundDecodedMessages", + "path": "$/value/1/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForInboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -68263,13 +68855,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNRRForOutboundMDN", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNRRForOutboundMDN']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Missing required property: enableNRRForOutboundMDN", "params": Array [ "enableNRRForOutboundMDN", ], - "path": "value/1/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForOutboundMDN", + "path": "$/value/1/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForOutboundMDN", "position": Object { "column": 28, "line": 7192, @@ -68291,13 +68883,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNRRForOutboundEncodedMessages", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNRRForOutboundEncodedMessages']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Missing required property: enableNRRForOutboundEncodedMessages", "params": Array [ "enableNRRForOutboundEncodedMessages", ], - "path": "value/1/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForOutboundEncodedMessages", + "path": "$/value/1/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForOutboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -68319,13 +68911,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNRRForOutboundDecodedMessages", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNRRForOutboundDecodedMessages']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Missing required property: enableNRRForOutboundDecodedMessages", "params": Array [ "enableNRRForOutboundDecodedMessages", ], - "path": "value/1/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForOutboundDecodedMessages", + "path": "$/value/1/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForOutboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -68347,13 +68939,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNRRForInboundMDN", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNRRForInboundMDN']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Missing required property: enableNRRForInboundMDN", "params": Array [ "enableNRRForInboundMDN", ], - "path": "value/1/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForInboundMDN", + "path": "$/value/1/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForInboundMDN", "position": Object { "column": 28, "line": 7192, @@ -68375,13 +68967,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.receiveAgreement.protocolSettings.errorSettings.resendIfMdnNotReceived", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['errorSettings']['resendIfMdnNotReceived']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Additional properties not allowed: resendIfMdnNotReceived", "params": Array [ "resendIfMdnNotReceived", ], - "path": "value/1/properties/content/aS2/receiveAgreement/protocolSettings/errorSettings/resendIfMdnNotReceived", + "path": "$/value/1/properties/content/aS2/receiveAgreement/protocolSettings/errorSettings/resendIfMdnNotReceived", "position": Object { "column": 25, "line": 7338, @@ -68403,13 +68995,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.receiveAgreement.protocolSettings.errorSettings.resendIfMDNNotReceived", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['errorSettings']['resendIfMDNNotReceived']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Missing required property: resendIfMDNNotReceived", "params": Array [ "resendIfMDNNotReceived", ], - "path": "value/1/properties/content/aS2/receiveAgreement/protocolSettings/errorSettings/resendIfMDNNotReceived", + "path": "$/value/1/properties/content/aS2/receiveAgreement/protocolSettings/errorSettings/resendIfMDNNotReceived", "position": Object { "column": 25, "line": 7338, @@ -68431,13 +69023,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.sendInboundMdnToMessageBox", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['sendInboundMdnToMessageBox']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Additional properties not allowed: sendInboundMdnToMessageBox", "params": Array [ "sendInboundMdnToMessageBox", ], - "path": "value/1/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendInboundMdnToMessageBox", + "path": "$/value/1/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendInboundMdnToMessageBox", "position": Object { "column": 23, "line": 7142, @@ -68459,13 +69051,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.signOutboundMdnIfOptional", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['signOutboundMdnIfOptional']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Additional properties not allowed: signOutboundMdnIfOptional", "params": Array [ "signOutboundMdnIfOptional", ], - "path": "value/1/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signOutboundMdnIfOptional", + "path": "$/value/1/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signOutboundMdnIfOptional", "position": Object { "column": 23, "line": 7142, @@ -68487,13 +69079,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.sendMdnAsynchronously", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['sendMdnAsynchronously']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Additional properties not allowed: sendMdnAsynchronously", "params": Array [ "sendMdnAsynchronously", ], - "path": "value/1/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendMdnAsynchronously", + "path": "$/value/1/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendMdnAsynchronously", "position": Object { "column": 23, "line": 7142, @@ -68515,13 +69107,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.signMdn", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['signMdn']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Additional properties not allowed: signMdn", "params": Array [ "signMdn", ], - "path": "value/1/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signMdn", + "path": "$/value/1/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signMdn", "position": Object { "column": 23, "line": 7142, @@ -68543,13 +69135,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.needMdn", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['needMdn']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Additional properties not allowed: needMdn", "params": Array [ "needMdn", ], - "path": "value/1/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/needMdn", + "path": "$/value/1/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/needMdn", "position": Object { "column": 23, "line": 7142, @@ -68571,13 +69163,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.needMDN", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['needMDN']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Missing required property: needMDN", "params": Array [ "needMDN", ], - "path": "value/1/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/needMDN", + "path": "$/value/1/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/needMDN", "position": Object { "column": 23, "line": 7142, @@ -68599,13 +69191,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.signMDN", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['signMDN']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Missing required property: signMDN", "params": Array [ "signMDN", ], - "path": "value/1/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signMDN", + "path": "$/value/1/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signMDN", "position": Object { "column": 23, "line": 7142, @@ -68627,13 +69219,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.sendMDNAsynchronously", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['sendMDNAsynchronously']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Missing required property: sendMDNAsynchronously", "params": Array [ "sendMDNAsynchronously", ], - "path": "value/1/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendMDNAsynchronously", + "path": "$/value/1/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendMDNAsynchronously", "position": Object { "column": 23, "line": 7142, @@ -68655,13 +69247,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.signOutboundMDNIfOptional", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['signOutboundMDNIfOptional']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Missing required property: signOutboundMDNIfOptional", "params": Array [ "signOutboundMDNIfOptional", ], - "path": "value/1/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signOutboundMDNIfOptional", + "path": "$/value/1/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signOutboundMDNIfOptional", "position": Object { "column": 23, "line": 7142, @@ -68683,13 +69275,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.sendInboundMDNToMessageBox", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['sendInboundMDNToMessageBox']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Missing required property: sendInboundMDNToMessageBox", "params": Array [ "sendInboundMDNToMessageBox", ], - "path": "value/1/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendInboundMDNToMessageBox", + "path": "$/value/1/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendInboundMDNToMessageBox", "position": Object { "column": 23, "line": 7142, @@ -68711,13 +69303,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNrrForInboundMdn", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNrrForInboundMdn']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Additional properties not allowed: enableNrrForInboundMdn", "params": Array [ "enableNrrForInboundMdn", ], - "path": "value/1/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForInboundMdn", + "path": "$/value/1/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForInboundMdn", "position": Object { "column": 28, "line": 7192, @@ -68739,13 +69331,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNrrForOutboundDecodedMessages", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNrrForOutboundDecodedMessages']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Additional properties not allowed: enableNrrForOutboundDecodedMessages", "params": Array [ "enableNrrForOutboundDecodedMessages", ], - "path": "value/1/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForOutboundDecodedMessages", + "path": "$/value/1/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForOutboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -68767,13 +69359,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNrrForOutboundEncodedMessages", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNrrForOutboundEncodedMessages']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Additional properties not allowed: enableNrrForOutboundEncodedMessages", "params": Array [ "enableNrrForOutboundEncodedMessages", ], - "path": "value/1/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForOutboundEncodedMessages", + "path": "$/value/1/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForOutboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -68795,13 +69387,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNrrForOutboundMdn", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNrrForOutboundMdn']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Additional properties not allowed: enableNrrForOutboundMdn", "params": Array [ "enableNrrForOutboundMdn", ], - "path": "value/1/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForOutboundMdn", + "path": "$/value/1/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForOutboundMdn", "position": Object { "column": 28, "line": 7192, @@ -68823,13 +69415,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNrrForInboundDecodedMessages", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNrrForInboundDecodedMessages']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Additional properties not allowed: enableNrrForInboundDecodedMessages", "params": Array [ "enableNrrForInboundDecodedMessages", ], - "path": "value/1/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForInboundDecodedMessages", + "path": "$/value/1/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForInboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -68851,13 +69443,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNrrForInboundEncodedMessages", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNrrForInboundEncodedMessages']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Additional properties not allowed: enableNrrForInboundEncodedMessages", "params": Array [ "enableNrrForInboundEncodedMessages", ], - "path": "value/1/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForInboundEncodedMessages", + "path": "$/value/1/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForInboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -68879,13 +69471,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNRRForInboundEncodedMessages", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNRRForInboundEncodedMessages']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Missing required property: enableNRRForInboundEncodedMessages", "params": Array [ "enableNRRForInboundEncodedMessages", ], - "path": "value/1/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForInboundEncodedMessages", + "path": "$/value/1/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForInboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -68907,13 +69499,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNRRForInboundDecodedMessages", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNRRForInboundDecodedMessages']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Missing required property: enableNRRForInboundDecodedMessages", "params": Array [ "enableNRRForInboundDecodedMessages", ], - "path": "value/1/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForInboundDecodedMessages", + "path": "$/value/1/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForInboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -68935,13 +69527,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNRRForOutboundMDN", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNRRForOutboundMDN']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Missing required property: enableNRRForOutboundMDN", "params": Array [ "enableNRRForOutboundMDN", ], - "path": "value/1/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForOutboundMDN", + "path": "$/value/1/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForOutboundMDN", "position": Object { "column": 28, "line": 7192, @@ -68963,13 +69555,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNRRForOutboundEncodedMessages", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNRRForOutboundEncodedMessages']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Missing required property: enableNRRForOutboundEncodedMessages", "params": Array [ "enableNRRForOutboundEncodedMessages", ], - "path": "value/1/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForOutboundEncodedMessages", + "path": "$/value/1/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForOutboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -68991,13 +69583,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNRRForOutboundDecodedMessages", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNRRForOutboundDecodedMessages']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Missing required property: enableNRRForOutboundDecodedMessages", "params": Array [ "enableNRRForOutboundDecodedMessages", ], - "path": "value/1/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForOutboundDecodedMessages", + "path": "$/value/1/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForOutboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -69019,13 +69611,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNRRForInboundMDN", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNRRForInboundMDN']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Missing required property: enableNRRForInboundMDN", "params": Array [ "enableNRRForInboundMDN", ], - "path": "value/1/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForInboundMDN", + "path": "$/value/1/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForInboundMDN", "position": Object { "column": 28, "line": 7192, @@ -69047,13 +69639,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.sendAgreement.protocolSettings.errorSettings.resendIfMdnNotReceived", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['sendAgreement']['protocolSettings']['errorSettings']['resendIfMdnNotReceived']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Additional properties not allowed: resendIfMdnNotReceived", "params": Array [ "resendIfMdnNotReceived", ], - "path": "value/1/properties/content/aS2/sendAgreement/protocolSettings/errorSettings/resendIfMdnNotReceived", + "path": "$/value/1/properties/content/aS2/sendAgreement/protocolSettings/errorSettings/resendIfMdnNotReceived", "position": Object { "column": 25, "line": 7338, @@ -69075,13 +69667,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[1].properties.content.aS2.sendAgreement.protocolSettings.errorSettings.resendIfMDNNotReceived", + "jsonPath": "$['value'][1]['properties']['content']['aS2']['sendAgreement']['protocolSettings']['errorSettings']['resendIfMDNNotReceived']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/logic/resource-manager/Microsoft.Logic/preview/2018-07-01-preview/examples/IntegrationAccountAgreements_List.json", "message": "Missing required property: resendIfMDNNotReceived", "params": Array [ "resendIfMDNNotReceived", ], - "path": "value/1/properties/content/aS2/sendAgreement/protocolSettings/errorSettings/resendIfMDNNotReceived", + "path": "$/value/1/properties/content/aS2/sendAgreement/protocolSettings/errorSettings/resendIfMDNNotReceived", "position": Object { "column": 25, "line": 7338, @@ -69103,7 +69695,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.sendInboundMdnToMessageBox", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['sendInboundMdnToMessageBox']", "jsonPosition": Object { "column": 34, "line": 40, @@ -69113,7 +69705,7 @@ Array [ "params": Array [ "sendInboundMdnToMessageBox", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendInboundMdnToMessageBox", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendInboundMdnToMessageBox", "position": Object { "column": 23, "line": 7142, @@ -69135,7 +69727,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.signOutboundMdnIfOptional", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['signOutboundMdnIfOptional']", "jsonPosition": Object { "column": 34, "line": 40, @@ -69145,7 +69737,7 @@ Array [ "params": Array [ "signOutboundMdnIfOptional", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signOutboundMdnIfOptional", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signOutboundMdnIfOptional", "position": Object { "column": 23, "line": 7142, @@ -69167,7 +69759,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.sendMdnAsynchronously", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['sendMdnAsynchronously']", "jsonPosition": Object { "column": 34, "line": 40, @@ -69177,7 +69769,7 @@ Array [ "params": Array [ "sendMdnAsynchronously", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendMdnAsynchronously", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendMdnAsynchronously", "position": Object { "column": 23, "line": 7142, @@ -69199,7 +69791,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.signMdn", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['signMdn']", "jsonPosition": Object { "column": 34, "line": 40, @@ -69209,7 +69801,7 @@ Array [ "params": Array [ "signMdn", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signMdn", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signMdn", "position": Object { "column": 23, "line": 7142, @@ -69231,7 +69823,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.needMdn", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['needMdn']", "jsonPosition": Object { "column": 34, "line": 40, @@ -69241,7 +69833,7 @@ Array [ "params": Array [ "needMdn", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/needMdn", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/needMdn", "position": Object { "column": 23, "line": 7142, @@ -69263,7 +69855,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.needMDN", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['needMDN']", "jsonPosition": Object { "column": 34, "line": 40, @@ -69273,7 +69865,7 @@ Array [ "params": Array [ "needMDN", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/needMDN", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/needMDN", "position": Object { "column": 23, "line": 7142, @@ -69295,7 +69887,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.signMDN", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['signMDN']", "jsonPosition": Object { "column": 34, "line": 40, @@ -69305,7 +69897,7 @@ Array [ "params": Array [ "signMDN", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signMDN", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signMDN", "position": Object { "column": 23, "line": 7142, @@ -69327,7 +69919,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.sendMDNAsynchronously", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['sendMDNAsynchronously']", "jsonPosition": Object { "column": 34, "line": 40, @@ -69337,7 +69929,7 @@ Array [ "params": Array [ "sendMDNAsynchronously", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendMDNAsynchronously", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendMDNAsynchronously", "position": Object { "column": 23, "line": 7142, @@ -69359,7 +69951,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.signOutboundMDNIfOptional", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['signOutboundMDNIfOptional']", "jsonPosition": Object { "column": 34, "line": 40, @@ -69369,7 +69961,7 @@ Array [ "params": Array [ "signOutboundMDNIfOptional", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signOutboundMDNIfOptional", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signOutboundMDNIfOptional", "position": Object { "column": 23, "line": 7142, @@ -69391,7 +69983,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.sendInboundMDNToMessageBox", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['sendInboundMDNToMessageBox']", "jsonPosition": Object { "column": 34, "line": 40, @@ -69401,7 +69993,7 @@ Array [ "params": Array [ "sendInboundMDNToMessageBox", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendInboundMDNToMessageBox", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendInboundMDNToMessageBox", "position": Object { "column": 23, "line": 7142, @@ -69423,7 +70015,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForInboundMdn", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNrrForInboundMdn']", "jsonPosition": Object { "column": 39, "line": 51, @@ -69433,7 +70025,7 @@ Array [ "params": Array [ "enableNrrForInboundMdn", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForInboundMdn", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForInboundMdn", "position": Object { "column": 28, "line": 7192, @@ -69455,7 +70047,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForOutboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNrrForOutboundDecodedMessages']", "jsonPosition": Object { "column": 39, "line": 51, @@ -69465,7 +70057,7 @@ Array [ "params": Array [ "enableNrrForOutboundDecodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForOutboundDecodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForOutboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -69487,7 +70079,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForOutboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNrrForOutboundEncodedMessages']", "jsonPosition": Object { "column": 39, "line": 51, @@ -69497,7 +70089,7 @@ Array [ "params": Array [ "enableNrrForOutboundEncodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForOutboundEncodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForOutboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -69519,7 +70111,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForOutboundMdn", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNrrForOutboundMdn']", "jsonPosition": Object { "column": 39, "line": 51, @@ -69529,7 +70121,7 @@ Array [ "params": Array [ "enableNrrForOutboundMdn", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForOutboundMdn", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForOutboundMdn", "position": Object { "column": 28, "line": 7192, @@ -69551,7 +70143,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForInboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNrrForInboundDecodedMessages']", "jsonPosition": Object { "column": 39, "line": 51, @@ -69561,7 +70153,7 @@ Array [ "params": Array [ "enableNrrForInboundDecodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForInboundDecodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForInboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -69583,7 +70175,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForInboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNrrForInboundEncodedMessages']", "jsonPosition": Object { "column": 39, "line": 51, @@ -69593,7 +70185,7 @@ Array [ "params": Array [ "enableNrrForInboundEncodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForInboundEncodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForInboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -69615,7 +70207,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNRRForInboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNRRForInboundEncodedMessages']", "jsonPosition": Object { "column": 39, "line": 51, @@ -69625,7 +70217,7 @@ Array [ "params": Array [ "enableNRRForInboundEncodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForInboundEncodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForInboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -69647,7 +70239,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNRRForInboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNRRForInboundDecodedMessages']", "jsonPosition": Object { "column": 39, "line": 51, @@ -69657,7 +70249,7 @@ Array [ "params": Array [ "enableNRRForInboundDecodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForInboundDecodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForInboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -69679,7 +70271,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNRRForOutboundMDN", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNRRForOutboundMDN']", "jsonPosition": Object { "column": 39, "line": 51, @@ -69689,7 +70281,7 @@ Array [ "params": Array [ "enableNRRForOutboundMDN", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForOutboundMDN", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForOutboundMDN", "position": Object { "column": 28, "line": 7192, @@ -69711,7 +70303,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNRRForOutboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNRRForOutboundEncodedMessages']", "jsonPosition": Object { "column": 39, "line": 51, @@ -69721,7 +70313,7 @@ Array [ "params": Array [ "enableNRRForOutboundEncodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForOutboundEncodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForOutboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -69743,7 +70335,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNRRForOutboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNRRForOutboundDecodedMessages']", "jsonPosition": Object { "column": 39, "line": 51, @@ -69753,7 +70345,7 @@ Array [ "params": Array [ "enableNRRForOutboundDecodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForOutboundDecodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForOutboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -69775,7 +70367,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNRRForInboundMDN", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNRRForInboundMDN']", "jsonPosition": Object { "column": 39, "line": 51, @@ -69785,7 +70377,7 @@ Array [ "params": Array [ "enableNRRForInboundMDN", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForInboundMDN", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForInboundMDN", "position": Object { "column": 28, "line": 7192, @@ -69807,7 +70399,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.errorSettings.resendIfMdnNotReceived", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['errorSettings']['resendIfMdnNotReceived']", "jsonPosition": Object { "column": 36, "line": 78, @@ -69817,7 +70409,7 @@ Array [ "params": Array [ "resendIfMdnNotReceived", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/errorSettings/resendIfMdnNotReceived", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/errorSettings/resendIfMdnNotReceived", "position": Object { "column": 25, "line": 7338, @@ -69839,7 +70431,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.errorSettings.resendIfMDNNotReceived", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['errorSettings']['resendIfMDNNotReceived']", "jsonPosition": Object { "column": 36, "line": 78, @@ -69849,7 +70441,7 @@ Array [ "params": Array [ "resendIfMDNNotReceived", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/errorSettings/resendIfMDNNotReceived", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/errorSettings/resendIfMDNNotReceived", "position": Object { "column": 25, "line": 7338, @@ -69871,7 +70463,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.sendInboundMdnToMessageBox", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['sendInboundMdnToMessageBox']", "jsonPosition": Object { "column": 34, "line": 106, @@ -69881,7 +70473,7 @@ Array [ "params": Array [ "sendInboundMdnToMessageBox", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendInboundMdnToMessageBox", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendInboundMdnToMessageBox", "position": Object { "column": 23, "line": 7142, @@ -69903,7 +70495,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.signOutboundMdnIfOptional", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['signOutboundMdnIfOptional']", "jsonPosition": Object { "column": 34, "line": 106, @@ -69913,7 +70505,7 @@ Array [ "params": Array [ "signOutboundMdnIfOptional", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signOutboundMdnIfOptional", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signOutboundMdnIfOptional", "position": Object { "column": 23, "line": 7142, @@ -69935,7 +70527,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.sendMdnAsynchronously", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['sendMdnAsynchronously']", "jsonPosition": Object { "column": 34, "line": 106, @@ -69945,7 +70537,7 @@ Array [ "params": Array [ "sendMdnAsynchronously", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendMdnAsynchronously", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendMdnAsynchronously", "position": Object { "column": 23, "line": 7142, @@ -69967,7 +70559,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.signMdn", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['signMdn']", "jsonPosition": Object { "column": 34, "line": 106, @@ -69977,7 +70569,7 @@ Array [ "params": Array [ "signMdn", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signMdn", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signMdn", "position": Object { "column": 23, "line": 7142, @@ -69999,7 +70591,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.needMdn", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['needMdn']", "jsonPosition": Object { "column": 34, "line": 106, @@ -70009,7 +70601,7 @@ Array [ "params": Array [ "needMdn", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/needMdn", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/needMdn", "position": Object { "column": 23, "line": 7142, @@ -70031,7 +70623,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.needMDN", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['needMDN']", "jsonPosition": Object { "column": 34, "line": 106, @@ -70041,7 +70633,7 @@ Array [ "params": Array [ "needMDN", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/needMDN", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/needMDN", "position": Object { "column": 23, "line": 7142, @@ -70063,7 +70655,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.signMDN", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['signMDN']", "jsonPosition": Object { "column": 34, "line": 106, @@ -70073,7 +70665,7 @@ Array [ "params": Array [ "signMDN", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signMDN", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signMDN", "position": Object { "column": 23, "line": 7142, @@ -70095,7 +70687,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.sendMDNAsynchronously", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['sendMDNAsynchronously']", "jsonPosition": Object { "column": 34, "line": 106, @@ -70105,7 +70697,7 @@ Array [ "params": Array [ "sendMDNAsynchronously", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendMDNAsynchronously", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendMDNAsynchronously", "position": Object { "column": 23, "line": 7142, @@ -70127,7 +70719,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.signOutboundMDNIfOptional", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['signOutboundMDNIfOptional']", "jsonPosition": Object { "column": 34, "line": 106, @@ -70137,7 +70729,7 @@ Array [ "params": Array [ "signOutboundMDNIfOptional", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signOutboundMDNIfOptional", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signOutboundMDNIfOptional", "position": Object { "column": 23, "line": 7142, @@ -70159,7 +70751,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.sendInboundMDNToMessageBox", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['sendInboundMDNToMessageBox']", "jsonPosition": Object { "column": 34, "line": 106, @@ -70169,7 +70761,7 @@ Array [ "params": Array [ "sendInboundMDNToMessageBox", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendInboundMDNToMessageBox", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendInboundMDNToMessageBox", "position": Object { "column": 23, "line": 7142, @@ -70191,7 +70783,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNrrForInboundMdn", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNrrForInboundMdn']", "jsonPosition": Object { "column": 39, "line": 117, @@ -70201,7 +70793,7 @@ Array [ "params": Array [ "enableNrrForInboundMdn", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForInboundMdn", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForInboundMdn", "position": Object { "column": 28, "line": 7192, @@ -70223,7 +70815,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNrrForOutboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNrrForOutboundDecodedMessages']", "jsonPosition": Object { "column": 39, "line": 117, @@ -70233,7 +70825,7 @@ Array [ "params": Array [ "enableNrrForOutboundDecodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForOutboundDecodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForOutboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -70255,7 +70847,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNrrForOutboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNrrForOutboundEncodedMessages']", "jsonPosition": Object { "column": 39, "line": 117, @@ -70265,7 +70857,7 @@ Array [ "params": Array [ "enableNrrForOutboundEncodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForOutboundEncodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForOutboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -70287,7 +70879,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNrrForOutboundMdn", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNrrForOutboundMdn']", "jsonPosition": Object { "column": 39, "line": 117, @@ -70297,7 +70889,7 @@ Array [ "params": Array [ "enableNrrForOutboundMdn", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForOutboundMdn", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForOutboundMdn", "position": Object { "column": 28, "line": 7192, @@ -70319,7 +70911,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNrrForInboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNrrForInboundDecodedMessages']", "jsonPosition": Object { "column": 39, "line": 117, @@ -70329,7 +70921,7 @@ Array [ "params": Array [ "enableNrrForInboundDecodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForInboundDecodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForInboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -70351,7 +70943,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNrrForInboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNrrForInboundEncodedMessages']", "jsonPosition": Object { "column": 39, "line": 117, @@ -70361,7 +70953,7 @@ Array [ "params": Array [ "enableNrrForInboundEncodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForInboundEncodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForInboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -70383,7 +70975,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNRRForInboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNRRForInboundEncodedMessages']", "jsonPosition": Object { "column": 39, "line": 117, @@ -70393,7 +70985,7 @@ Array [ "params": Array [ "enableNRRForInboundEncodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForInboundEncodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForInboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -70415,7 +71007,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNRRForInboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNRRForInboundDecodedMessages']", "jsonPosition": Object { "column": 39, "line": 117, @@ -70425,7 +71017,7 @@ Array [ "params": Array [ "enableNRRForInboundDecodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForInboundDecodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForInboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -70447,7 +71039,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNRRForOutboundMDN", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNRRForOutboundMDN']", "jsonPosition": Object { "column": 39, "line": 117, @@ -70457,7 +71049,7 @@ Array [ "params": Array [ "enableNRRForOutboundMDN", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForOutboundMDN", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForOutboundMDN", "position": Object { "column": 28, "line": 7192, @@ -70479,7 +71071,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNRRForOutboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNRRForOutboundEncodedMessages']", "jsonPosition": Object { "column": 39, "line": 117, @@ -70489,7 +71081,7 @@ Array [ "params": Array [ "enableNRRForOutboundEncodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForOutboundEncodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForOutboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -70511,7 +71103,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNRRForOutboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNRRForOutboundDecodedMessages']", "jsonPosition": Object { "column": 39, "line": 117, @@ -70521,7 +71113,7 @@ Array [ "params": Array [ "enableNRRForOutboundDecodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForOutboundDecodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForOutboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -70543,7 +71135,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNRRForInboundMDN", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNRRForInboundMDN']", "jsonPosition": Object { "column": 39, "line": 117, @@ -70553,7 +71145,7 @@ Array [ "params": Array [ "enableNRRForInboundMDN", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForInboundMDN", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForInboundMDN", "position": Object { "column": 28, "line": 7192, @@ -70575,7 +71167,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.errorSettings.resendIfMdnNotReceived", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['errorSettings']['resendIfMdnNotReceived']", "jsonPosition": Object { "column": 36, "line": 144, @@ -70585,7 +71177,7 @@ Array [ "params": Array [ "resendIfMdnNotReceived", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/errorSettings/resendIfMdnNotReceived", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/errorSettings/resendIfMdnNotReceived", "position": Object { "column": 25, "line": 7338, @@ -70607,7 +71199,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.errorSettings.resendIfMDNNotReceived", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['errorSettings']['resendIfMDNNotReceived']", "jsonPosition": Object { "column": 36, "line": 144, @@ -70617,7 +71209,7 @@ Array [ "params": Array [ "resendIfMDNNotReceived", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/errorSettings/resendIfMDNNotReceived", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/errorSettings/resendIfMDNNotReceived", "position": Object { "column": 25, "line": 7338, @@ -70639,12 +71231,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.sendInboundMdnToMessageBox", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['sendInboundMdnToMessageBox']", "message": "Additional properties not allowed: sendInboundMdnToMessageBox", "params": Array [ "sendInboundMdnToMessageBox", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendInboundMdnToMessageBox", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendInboundMdnToMessageBox", "position": Object { "column": 23, "line": 7142, @@ -70666,12 +71258,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.signOutboundMdnIfOptional", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['signOutboundMdnIfOptional']", "message": "Additional properties not allowed: signOutboundMdnIfOptional", "params": Array [ "signOutboundMdnIfOptional", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signOutboundMdnIfOptional", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signOutboundMdnIfOptional", "position": Object { "column": 23, "line": 7142, @@ -70693,12 +71285,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.sendMdnAsynchronously", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['sendMdnAsynchronously']", "message": "Additional properties not allowed: sendMdnAsynchronously", "params": Array [ "sendMdnAsynchronously", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendMdnAsynchronously", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendMdnAsynchronously", "position": Object { "column": 23, "line": 7142, @@ -70720,12 +71312,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.signMdn", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['signMdn']", "message": "Additional properties not allowed: signMdn", "params": Array [ "signMdn", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signMdn", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signMdn", "position": Object { "column": 23, "line": 7142, @@ -70747,12 +71339,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.needMdn", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['needMdn']", "message": "Additional properties not allowed: needMdn", "params": Array [ "needMdn", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/needMdn", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/needMdn", "position": Object { "column": 23, "line": 7142, @@ -70774,12 +71366,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.needMDN", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['needMDN']", "message": "Missing required property: needMDN", "params": Array [ "needMDN", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/needMDN", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/needMDN", "position": Object { "column": 23, "line": 7142, @@ -70801,12 +71393,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.signMDN", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['signMDN']", "message": "Missing required property: signMDN", "params": Array [ "signMDN", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signMDN", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signMDN", "position": Object { "column": 23, "line": 7142, @@ -70828,12 +71420,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.sendMDNAsynchronously", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['sendMDNAsynchronously']", "message": "Missing required property: sendMDNAsynchronously", "params": Array [ "sendMDNAsynchronously", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendMDNAsynchronously", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendMDNAsynchronously", "position": Object { "column": 23, "line": 7142, @@ -70855,12 +71447,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.signOutboundMDNIfOptional", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['signOutboundMDNIfOptional']", "message": "Missing required property: signOutboundMDNIfOptional", "params": Array [ "signOutboundMDNIfOptional", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signOutboundMDNIfOptional", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signOutboundMDNIfOptional", "position": Object { "column": 23, "line": 7142, @@ -70882,12 +71474,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.sendInboundMDNToMessageBox", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['sendInboundMDNToMessageBox']", "message": "Missing required property: sendInboundMDNToMessageBox", "params": Array [ "sendInboundMDNToMessageBox", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendInboundMDNToMessageBox", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendInboundMDNToMessageBox", "position": Object { "column": 23, "line": 7142, @@ -70909,12 +71501,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForInboundMdn", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNrrForInboundMdn']", "message": "Additional properties not allowed: enableNrrForInboundMdn", "params": Array [ "enableNrrForInboundMdn", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForInboundMdn", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForInboundMdn", "position": Object { "column": 28, "line": 7192, @@ -70936,12 +71528,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForOutboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNrrForOutboundDecodedMessages']", "message": "Additional properties not allowed: enableNrrForOutboundDecodedMessages", "params": Array [ "enableNrrForOutboundDecodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForOutboundDecodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForOutboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -70963,12 +71555,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForOutboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNrrForOutboundEncodedMessages']", "message": "Additional properties not allowed: enableNrrForOutboundEncodedMessages", "params": Array [ "enableNrrForOutboundEncodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForOutboundEncodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForOutboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -70990,12 +71582,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForOutboundMdn", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNrrForOutboundMdn']", "message": "Additional properties not allowed: enableNrrForOutboundMdn", "params": Array [ "enableNrrForOutboundMdn", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForOutboundMdn", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForOutboundMdn", "position": Object { "column": 28, "line": 7192, @@ -71017,12 +71609,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForInboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNrrForInboundDecodedMessages']", "message": "Additional properties not allowed: enableNrrForInboundDecodedMessages", "params": Array [ "enableNrrForInboundDecodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForInboundDecodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForInboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -71044,12 +71636,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForInboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNrrForInboundEncodedMessages']", "message": "Additional properties not allowed: enableNrrForInboundEncodedMessages", "params": Array [ "enableNrrForInboundEncodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForInboundEncodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForInboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -71071,12 +71663,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNRRForInboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNRRForInboundEncodedMessages']", "message": "Missing required property: enableNRRForInboundEncodedMessages", "params": Array [ "enableNRRForInboundEncodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForInboundEncodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForInboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -71098,12 +71690,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNRRForInboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNRRForInboundDecodedMessages']", "message": "Missing required property: enableNRRForInboundDecodedMessages", "params": Array [ "enableNRRForInboundDecodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForInboundDecodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForInboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -71125,12 +71717,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNRRForOutboundMDN", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNRRForOutboundMDN']", "message": "Missing required property: enableNRRForOutboundMDN", "params": Array [ "enableNRRForOutboundMDN", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForOutboundMDN", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForOutboundMDN", "position": Object { "column": 28, "line": 7192, @@ -71152,12 +71744,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNRRForOutboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNRRForOutboundEncodedMessages']", "message": "Missing required property: enableNRRForOutboundEncodedMessages", "params": Array [ "enableNRRForOutboundEncodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForOutboundEncodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForOutboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -71179,12 +71771,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNRRForOutboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNRRForOutboundDecodedMessages']", "message": "Missing required property: enableNRRForOutboundDecodedMessages", "params": Array [ "enableNRRForOutboundDecodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForOutboundDecodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForOutboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -71206,12 +71798,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNRRForInboundMDN", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNRRForInboundMDN']", "message": "Missing required property: enableNRRForInboundMDN", "params": Array [ "enableNRRForInboundMDN", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForInboundMDN", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForInboundMDN", "position": Object { "column": 28, "line": 7192, @@ -71233,12 +71825,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.errorSettings.resendIfMdnNotReceived", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['errorSettings']['resendIfMdnNotReceived']", "message": "Additional properties not allowed: resendIfMdnNotReceived", "params": Array [ "resendIfMdnNotReceived", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/errorSettings/resendIfMdnNotReceived", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/errorSettings/resendIfMdnNotReceived", "position": Object { "column": 25, "line": 7338, @@ -71260,12 +71852,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.errorSettings.resendIfMDNNotReceived", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['errorSettings']['resendIfMDNNotReceived']", "message": "Missing required property: resendIfMDNNotReceived", "params": Array [ "resendIfMDNNotReceived", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/errorSettings/resendIfMDNNotReceived", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/errorSettings/resendIfMDNNotReceived", "position": Object { "column": 25, "line": 7338, @@ -71287,12 +71879,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.sendInboundMdnToMessageBox", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['sendInboundMdnToMessageBox']", "message": "Additional properties not allowed: sendInboundMdnToMessageBox", "params": Array [ "sendInboundMdnToMessageBox", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendInboundMdnToMessageBox", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendInboundMdnToMessageBox", "position": Object { "column": 23, "line": 7142, @@ -71314,12 +71906,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.signOutboundMdnIfOptional", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['signOutboundMdnIfOptional']", "message": "Additional properties not allowed: signOutboundMdnIfOptional", "params": Array [ "signOutboundMdnIfOptional", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signOutboundMdnIfOptional", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signOutboundMdnIfOptional", "position": Object { "column": 23, "line": 7142, @@ -71341,12 +71933,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.sendMdnAsynchronously", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['sendMdnAsynchronously']", "message": "Additional properties not allowed: sendMdnAsynchronously", "params": Array [ "sendMdnAsynchronously", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendMdnAsynchronously", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendMdnAsynchronously", "position": Object { "column": 23, "line": 7142, @@ -71368,12 +71960,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.signMdn", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['signMdn']", "message": "Additional properties not allowed: signMdn", "params": Array [ "signMdn", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signMdn", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signMdn", "position": Object { "column": 23, "line": 7142, @@ -71395,12 +71987,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.needMdn", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['needMdn']", "message": "Additional properties not allowed: needMdn", "params": Array [ "needMdn", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/needMdn", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/needMdn", "position": Object { "column": 23, "line": 7142, @@ -71422,12 +72014,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.needMDN", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['needMDN']", "message": "Missing required property: needMDN", "params": Array [ "needMDN", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/needMDN", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/needMDN", "position": Object { "column": 23, "line": 7142, @@ -71449,12 +72041,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.signMDN", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['signMDN']", "message": "Missing required property: signMDN", "params": Array [ "signMDN", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signMDN", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signMDN", "position": Object { "column": 23, "line": 7142, @@ -71476,12 +72068,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.sendMDNAsynchronously", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['sendMDNAsynchronously']", "message": "Missing required property: sendMDNAsynchronously", "params": Array [ "sendMDNAsynchronously", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendMDNAsynchronously", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendMDNAsynchronously", "position": Object { "column": 23, "line": 7142, @@ -71503,12 +72095,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.signOutboundMDNIfOptional", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['signOutboundMDNIfOptional']", "message": "Missing required property: signOutboundMDNIfOptional", "params": Array [ "signOutboundMDNIfOptional", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signOutboundMDNIfOptional", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signOutboundMDNIfOptional", "position": Object { "column": 23, "line": 7142, @@ -71530,12 +72122,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.sendInboundMDNToMessageBox", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['sendInboundMDNToMessageBox']", "message": "Missing required property: sendInboundMDNToMessageBox", "params": Array [ "sendInboundMDNToMessageBox", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendInboundMDNToMessageBox", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendInboundMDNToMessageBox", "position": Object { "column": 23, "line": 7142, @@ -71557,12 +72149,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNrrForInboundMdn", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNrrForInboundMdn']", "message": "Additional properties not allowed: enableNrrForInboundMdn", "params": Array [ "enableNrrForInboundMdn", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForInboundMdn", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForInboundMdn", "position": Object { "column": 28, "line": 7192, @@ -71584,12 +72176,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNrrForOutboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNrrForOutboundDecodedMessages']", "message": "Additional properties not allowed: enableNrrForOutboundDecodedMessages", "params": Array [ "enableNrrForOutboundDecodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForOutboundDecodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForOutboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -71611,12 +72203,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNrrForOutboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNrrForOutboundEncodedMessages']", "message": "Additional properties not allowed: enableNrrForOutboundEncodedMessages", "params": Array [ "enableNrrForOutboundEncodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForOutboundEncodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForOutboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -71638,12 +72230,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNrrForOutboundMdn", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNrrForOutboundMdn']", "message": "Additional properties not allowed: enableNrrForOutboundMdn", "params": Array [ "enableNrrForOutboundMdn", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForOutboundMdn", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForOutboundMdn", "position": Object { "column": 28, "line": 7192, @@ -71665,12 +72257,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNrrForInboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNrrForInboundDecodedMessages']", "message": "Additional properties not allowed: enableNrrForInboundDecodedMessages", "params": Array [ "enableNrrForInboundDecodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForInboundDecodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForInboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -71692,12 +72284,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNrrForInboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNrrForInboundEncodedMessages']", "message": "Additional properties not allowed: enableNrrForInboundEncodedMessages", "params": Array [ "enableNrrForInboundEncodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForInboundEncodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForInboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -71719,12 +72311,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNRRForInboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNRRForInboundEncodedMessages']", "message": "Missing required property: enableNRRForInboundEncodedMessages", "params": Array [ "enableNRRForInboundEncodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForInboundEncodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForInboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -71746,12 +72338,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNRRForInboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNRRForInboundDecodedMessages']", "message": "Missing required property: enableNRRForInboundDecodedMessages", "params": Array [ "enableNRRForInboundDecodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForInboundDecodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForInboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -71773,12 +72365,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNRRForOutboundMDN", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNRRForOutboundMDN']", "message": "Missing required property: enableNRRForOutboundMDN", "params": Array [ "enableNRRForOutboundMDN", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForOutboundMDN", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForOutboundMDN", "position": Object { "column": 28, "line": 7192, @@ -71800,12 +72392,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNRRForOutboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNRRForOutboundEncodedMessages']", "message": "Missing required property: enableNRRForOutboundEncodedMessages", "params": Array [ "enableNRRForOutboundEncodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForOutboundEncodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForOutboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -71827,12 +72419,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNRRForOutboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNRRForOutboundDecodedMessages']", "message": "Missing required property: enableNRRForOutboundDecodedMessages", "params": Array [ "enableNRRForOutboundDecodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForOutboundDecodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForOutboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -71854,12 +72446,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNRRForInboundMDN", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNRRForInboundMDN']", "message": "Missing required property: enableNRRForInboundMDN", "params": Array [ "enableNRRForInboundMDN", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForInboundMDN", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForInboundMDN", "position": Object { "column": 28, "line": 7192, @@ -71881,12 +72473,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.errorSettings.resendIfMdnNotReceived", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['errorSettings']['resendIfMdnNotReceived']", "message": "Additional properties not allowed: resendIfMdnNotReceived", "params": Array [ "resendIfMdnNotReceived", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/errorSettings/resendIfMdnNotReceived", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/errorSettings/resendIfMdnNotReceived", "position": Object { "column": 25, "line": 7338, @@ -71908,12 +72500,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.errorSettings.resendIfMDNNotReceived", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['errorSettings']['resendIfMDNNotReceived']", "message": "Missing required property: resendIfMDNNotReceived", "params": Array [ "resendIfMDNNotReceived", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/errorSettings/resendIfMDNNotReceived", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/errorSettings/resendIfMDNNotReceived", "position": Object { "column": 25, "line": 7338, @@ -71935,7 +72527,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.sendInboundMdnToMessageBox", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['sendInboundMdnToMessageBox']", "jsonPosition": Object { "column": 34, "line": 196, @@ -71945,7 +72537,7 @@ Array [ "params": Array [ "sendInboundMdnToMessageBox", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendInboundMdnToMessageBox", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendInboundMdnToMessageBox", "position": Object { "column": 23, "line": 7142, @@ -71967,7 +72559,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.signOutboundMdnIfOptional", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['signOutboundMdnIfOptional']", "jsonPosition": Object { "column": 34, "line": 196, @@ -71977,7 +72569,7 @@ Array [ "params": Array [ "signOutboundMdnIfOptional", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signOutboundMdnIfOptional", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signOutboundMdnIfOptional", "position": Object { "column": 23, "line": 7142, @@ -71999,7 +72591,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.sendMdnAsynchronously", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['sendMdnAsynchronously']", "jsonPosition": Object { "column": 34, "line": 196, @@ -72009,7 +72601,7 @@ Array [ "params": Array [ "sendMdnAsynchronously", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendMdnAsynchronously", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendMdnAsynchronously", "position": Object { "column": 23, "line": 7142, @@ -72031,7 +72623,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.signMdn", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['signMdn']", "jsonPosition": Object { "column": 34, "line": 196, @@ -72041,7 +72633,7 @@ Array [ "params": Array [ "signMdn", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signMdn", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signMdn", "position": Object { "column": 23, "line": 7142, @@ -72063,7 +72655,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.needMdn", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['needMdn']", "jsonPosition": Object { "column": 34, "line": 196, @@ -72073,7 +72665,7 @@ Array [ "params": Array [ "needMdn", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/needMdn", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/needMdn", "position": Object { "column": 23, "line": 7142, @@ -72095,7 +72687,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.needMDN", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['needMDN']", "jsonPosition": Object { "column": 34, "line": 196, @@ -72105,7 +72697,7 @@ Array [ "params": Array [ "needMDN", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/needMDN", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/needMDN", "position": Object { "column": 23, "line": 7142, @@ -72127,7 +72719,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.signMDN", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['signMDN']", "jsonPosition": Object { "column": 34, "line": 196, @@ -72137,7 +72729,7 @@ Array [ "params": Array [ "signMDN", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signMDN", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signMDN", "position": Object { "column": 23, "line": 7142, @@ -72159,7 +72751,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.sendMDNAsynchronously", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['sendMDNAsynchronously']", "jsonPosition": Object { "column": 34, "line": 196, @@ -72169,7 +72761,7 @@ Array [ "params": Array [ "sendMDNAsynchronously", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendMDNAsynchronously", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendMDNAsynchronously", "position": Object { "column": 23, "line": 7142, @@ -72191,7 +72783,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.signOutboundMDNIfOptional", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['signOutboundMDNIfOptional']", "jsonPosition": Object { "column": 34, "line": 196, @@ -72201,7 +72793,7 @@ Array [ "params": Array [ "signOutboundMDNIfOptional", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signOutboundMDNIfOptional", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signOutboundMDNIfOptional", "position": Object { "column": 23, "line": 7142, @@ -72223,7 +72815,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.sendInboundMDNToMessageBox", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['sendInboundMDNToMessageBox']", "jsonPosition": Object { "column": 34, "line": 196, @@ -72233,7 +72825,7 @@ Array [ "params": Array [ "sendInboundMDNToMessageBox", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendInboundMDNToMessageBox", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendInboundMDNToMessageBox", "position": Object { "column": 23, "line": 7142, @@ -72255,7 +72847,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForInboundMdn", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNrrForInboundMdn']", "jsonPosition": Object { "column": 39, "line": 207, @@ -72265,7 +72857,7 @@ Array [ "params": Array [ "enableNrrForInboundMdn", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForInboundMdn", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForInboundMdn", "position": Object { "column": 28, "line": 7192, @@ -72287,7 +72879,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForOutboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNrrForOutboundDecodedMessages']", "jsonPosition": Object { "column": 39, "line": 207, @@ -72297,7 +72889,7 @@ Array [ "params": Array [ "enableNrrForOutboundDecodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForOutboundDecodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForOutboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -72319,7 +72911,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForOutboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNrrForOutboundEncodedMessages']", "jsonPosition": Object { "column": 39, "line": 207, @@ -72329,7 +72921,7 @@ Array [ "params": Array [ "enableNrrForOutboundEncodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForOutboundEncodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForOutboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -72351,7 +72943,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForOutboundMdn", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNrrForOutboundMdn']", "jsonPosition": Object { "column": 39, "line": 207, @@ -72361,7 +72953,7 @@ Array [ "params": Array [ "enableNrrForOutboundMdn", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForOutboundMdn", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForOutboundMdn", "position": Object { "column": 28, "line": 7192, @@ -72383,7 +72975,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForInboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNrrForInboundDecodedMessages']", "jsonPosition": Object { "column": 39, "line": 207, @@ -72393,7 +72985,7 @@ Array [ "params": Array [ "enableNrrForInboundDecodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForInboundDecodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForInboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -72415,7 +73007,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForInboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNrrForInboundEncodedMessages']", "jsonPosition": Object { "column": 39, "line": 207, @@ -72425,7 +73017,7 @@ Array [ "params": Array [ "enableNrrForInboundEncodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForInboundEncodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForInboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -72447,7 +73039,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNRRForInboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNRRForInboundEncodedMessages']", "jsonPosition": Object { "column": 39, "line": 207, @@ -72457,7 +73049,7 @@ Array [ "params": Array [ "enableNRRForInboundEncodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForInboundEncodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForInboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -72479,7 +73071,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNRRForInboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNRRForInboundDecodedMessages']", "jsonPosition": Object { "column": 39, "line": 207, @@ -72489,7 +73081,7 @@ Array [ "params": Array [ "enableNRRForInboundDecodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForInboundDecodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForInboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -72511,7 +73103,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNRRForOutboundMDN", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNRRForOutboundMDN']", "jsonPosition": Object { "column": 39, "line": 207, @@ -72521,7 +73113,7 @@ Array [ "params": Array [ "enableNRRForOutboundMDN", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForOutboundMDN", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForOutboundMDN", "position": Object { "column": 28, "line": 7192, @@ -72543,7 +73135,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNRRForOutboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNRRForOutboundEncodedMessages']", "jsonPosition": Object { "column": 39, "line": 207, @@ -72553,7 +73145,7 @@ Array [ "params": Array [ "enableNRRForOutboundEncodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForOutboundEncodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForOutboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -72575,7 +73167,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNRRForOutboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNRRForOutboundDecodedMessages']", "jsonPosition": Object { "column": 39, "line": 207, @@ -72585,7 +73177,7 @@ Array [ "params": Array [ "enableNRRForOutboundDecodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForOutboundDecodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForOutboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -72607,7 +73199,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNRRForInboundMDN", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNRRForInboundMDN']", "jsonPosition": Object { "column": 39, "line": 207, @@ -72617,7 +73209,7 @@ Array [ "params": Array [ "enableNRRForInboundMDN", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForInboundMDN", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForInboundMDN", "position": Object { "column": 28, "line": 7192, @@ -72639,7 +73231,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.errorSettings.resendIfMdnNotReceived", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['errorSettings']['resendIfMdnNotReceived']", "jsonPosition": Object { "column": 36, "line": 234, @@ -72649,7 +73241,7 @@ Array [ "params": Array [ "resendIfMdnNotReceived", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/errorSettings/resendIfMdnNotReceived", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/errorSettings/resendIfMdnNotReceived", "position": Object { "column": 25, "line": 7338, @@ -72671,7 +73263,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.errorSettings.resendIfMDNNotReceived", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['errorSettings']['resendIfMDNNotReceived']", "jsonPosition": Object { "column": 36, "line": 234, @@ -72681,7 +73273,7 @@ Array [ "params": Array [ "resendIfMDNNotReceived", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/errorSettings/resendIfMDNNotReceived", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/errorSettings/resendIfMDNNotReceived", "position": Object { "column": 25, "line": 7338, @@ -72703,7 +73295,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.sendInboundMdnToMessageBox", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['sendInboundMdnToMessageBox']", "jsonPosition": Object { "column": 34, "line": 262, @@ -72713,7 +73305,7 @@ Array [ "params": Array [ "sendInboundMdnToMessageBox", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendInboundMdnToMessageBox", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendInboundMdnToMessageBox", "position": Object { "column": 23, "line": 7142, @@ -72735,7 +73327,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.signOutboundMdnIfOptional", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['signOutboundMdnIfOptional']", "jsonPosition": Object { "column": 34, "line": 262, @@ -72745,7 +73337,7 @@ Array [ "params": Array [ "signOutboundMdnIfOptional", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signOutboundMdnIfOptional", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signOutboundMdnIfOptional", "position": Object { "column": 23, "line": 7142, @@ -72767,7 +73359,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.sendMdnAsynchronously", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['sendMdnAsynchronously']", "jsonPosition": Object { "column": 34, "line": 262, @@ -72777,7 +73369,7 @@ Array [ "params": Array [ "sendMdnAsynchronously", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendMdnAsynchronously", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendMdnAsynchronously", "position": Object { "column": 23, "line": 7142, @@ -72799,7 +73391,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.signMdn", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['signMdn']", "jsonPosition": Object { "column": 34, "line": 262, @@ -72809,7 +73401,7 @@ Array [ "params": Array [ "signMdn", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signMdn", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signMdn", "position": Object { "column": 23, "line": 7142, @@ -72831,7 +73423,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.needMdn", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['needMdn']", "jsonPosition": Object { "column": 34, "line": 262, @@ -72841,7 +73433,7 @@ Array [ "params": Array [ "needMdn", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/needMdn", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/needMdn", "position": Object { "column": 23, "line": 7142, @@ -72863,7 +73455,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.needMDN", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['needMDN']", "jsonPosition": Object { "column": 34, "line": 262, @@ -72873,7 +73465,7 @@ Array [ "params": Array [ "needMDN", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/needMDN", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/needMDN", "position": Object { "column": 23, "line": 7142, @@ -72895,7 +73487,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.signMDN", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['signMDN']", "jsonPosition": Object { "column": 34, "line": 262, @@ -72905,7 +73497,7 @@ Array [ "params": Array [ "signMDN", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signMDN", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signMDN", "position": Object { "column": 23, "line": 7142, @@ -72927,7 +73519,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.sendMDNAsynchronously", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['sendMDNAsynchronously']", "jsonPosition": Object { "column": 34, "line": 262, @@ -72937,7 +73529,7 @@ Array [ "params": Array [ "sendMDNAsynchronously", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendMDNAsynchronously", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendMDNAsynchronously", "position": Object { "column": 23, "line": 7142, @@ -72959,7 +73551,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.signOutboundMDNIfOptional", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['signOutboundMDNIfOptional']", "jsonPosition": Object { "column": 34, "line": 262, @@ -72969,7 +73561,7 @@ Array [ "params": Array [ "signOutboundMDNIfOptional", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signOutboundMDNIfOptional", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signOutboundMDNIfOptional", "position": Object { "column": 23, "line": 7142, @@ -72991,7 +73583,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.sendInboundMDNToMessageBox", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['sendInboundMDNToMessageBox']", "jsonPosition": Object { "column": 34, "line": 262, @@ -73001,7 +73593,7 @@ Array [ "params": Array [ "sendInboundMDNToMessageBox", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendInboundMDNToMessageBox", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendInboundMDNToMessageBox", "position": Object { "column": 23, "line": 7142, @@ -73023,7 +73615,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNrrForInboundMdn", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNrrForInboundMdn']", "jsonPosition": Object { "column": 39, "line": 273, @@ -73033,7 +73625,7 @@ Array [ "params": Array [ "enableNrrForInboundMdn", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForInboundMdn", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForInboundMdn", "position": Object { "column": 28, "line": 7192, @@ -73055,7 +73647,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNrrForOutboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNrrForOutboundDecodedMessages']", "jsonPosition": Object { "column": 39, "line": 273, @@ -73065,7 +73657,7 @@ Array [ "params": Array [ "enableNrrForOutboundDecodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForOutboundDecodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForOutboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -73087,7 +73679,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNrrForOutboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNrrForOutboundEncodedMessages']", "jsonPosition": Object { "column": 39, "line": 273, @@ -73097,7 +73689,7 @@ Array [ "params": Array [ "enableNrrForOutboundEncodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForOutboundEncodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForOutboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -73119,7 +73711,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNrrForOutboundMdn", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNrrForOutboundMdn']", "jsonPosition": Object { "column": 39, "line": 273, @@ -73129,7 +73721,7 @@ Array [ "params": Array [ "enableNrrForOutboundMdn", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForOutboundMdn", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForOutboundMdn", "position": Object { "column": 28, "line": 7192, @@ -73151,7 +73743,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNrrForInboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNrrForInboundDecodedMessages']", "jsonPosition": Object { "column": 39, "line": 273, @@ -73161,7 +73753,7 @@ Array [ "params": Array [ "enableNrrForInboundDecodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForInboundDecodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForInboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -73183,7 +73775,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNrrForInboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNrrForInboundEncodedMessages']", "jsonPosition": Object { "column": 39, "line": 273, @@ -73193,7 +73785,7 @@ Array [ "params": Array [ "enableNrrForInboundEncodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForInboundEncodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForInboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -73215,7 +73807,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNRRForInboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNRRForInboundEncodedMessages']", "jsonPosition": Object { "column": 39, "line": 273, @@ -73225,7 +73817,7 @@ Array [ "params": Array [ "enableNRRForInboundEncodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForInboundEncodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForInboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -73247,7 +73839,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNRRForInboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNRRForInboundDecodedMessages']", "jsonPosition": Object { "column": 39, "line": 273, @@ -73257,7 +73849,7 @@ Array [ "params": Array [ "enableNRRForInboundDecodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForInboundDecodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForInboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -73279,7 +73871,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNRRForOutboundMDN", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNRRForOutboundMDN']", "jsonPosition": Object { "column": 39, "line": 273, @@ -73289,7 +73881,7 @@ Array [ "params": Array [ "enableNRRForOutboundMDN", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForOutboundMDN", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForOutboundMDN", "position": Object { "column": 28, "line": 7192, @@ -73311,7 +73903,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNRRForOutboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNRRForOutboundEncodedMessages']", "jsonPosition": Object { "column": 39, "line": 273, @@ -73321,7 +73913,7 @@ Array [ "params": Array [ "enableNRRForOutboundEncodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForOutboundEncodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForOutboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -73343,7 +73935,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNRRForOutboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNRRForOutboundDecodedMessages']", "jsonPosition": Object { "column": 39, "line": 273, @@ -73353,7 +73945,7 @@ Array [ "params": Array [ "enableNRRForOutboundDecodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForOutboundDecodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForOutboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -73375,7 +73967,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNRRForInboundMDN", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNRRForInboundMDN']", "jsonPosition": Object { "column": 39, "line": 273, @@ -73385,7 +73977,7 @@ Array [ "params": Array [ "enableNRRForInboundMDN", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForInboundMDN", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForInboundMDN", "position": Object { "column": 28, "line": 7192, @@ -73407,7 +73999,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.errorSettings.resendIfMdnNotReceived", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['errorSettings']['resendIfMdnNotReceived']", "jsonPosition": Object { "column": 36, "line": 300, @@ -73417,7 +74009,7 @@ Array [ "params": Array [ "resendIfMdnNotReceived", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/errorSettings/resendIfMdnNotReceived", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/errorSettings/resendIfMdnNotReceived", "position": Object { "column": 25, "line": 7338, @@ -73439,7 +74031,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.errorSettings.resendIfMDNNotReceived", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['errorSettings']['resendIfMDNNotReceived']", "jsonPosition": Object { "column": 36, "line": 300, @@ -73449,7 +74041,7 @@ Array [ "params": Array [ "resendIfMDNNotReceived", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/errorSettings/resendIfMDNNotReceived", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/errorSettings/resendIfMDNNotReceived", "position": Object { "column": 25, "line": 7338, @@ -73471,7 +74063,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.sendInboundMdnToMessageBox", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['sendInboundMdnToMessageBox']", "jsonPosition": Object { "column": 34, "line": 355, @@ -73481,7 +74073,7 @@ Array [ "params": Array [ "sendInboundMdnToMessageBox", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendInboundMdnToMessageBox", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendInboundMdnToMessageBox", "position": Object { "column": 23, "line": 7142, @@ -73503,7 +74095,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.signOutboundMdnIfOptional", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['signOutboundMdnIfOptional']", "jsonPosition": Object { "column": 34, "line": 355, @@ -73513,7 +74105,7 @@ Array [ "params": Array [ "signOutboundMdnIfOptional", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signOutboundMdnIfOptional", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signOutboundMdnIfOptional", "position": Object { "column": 23, "line": 7142, @@ -73535,7 +74127,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.sendMdnAsynchronously", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['sendMdnAsynchronously']", "jsonPosition": Object { "column": 34, "line": 355, @@ -73545,7 +74137,7 @@ Array [ "params": Array [ "sendMdnAsynchronously", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendMdnAsynchronously", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendMdnAsynchronously", "position": Object { "column": 23, "line": 7142, @@ -73567,7 +74159,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.signMdn", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['signMdn']", "jsonPosition": Object { "column": 34, "line": 355, @@ -73577,7 +74169,7 @@ Array [ "params": Array [ "signMdn", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signMdn", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signMdn", "position": Object { "column": 23, "line": 7142, @@ -73599,7 +74191,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.needMdn", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['needMdn']", "jsonPosition": Object { "column": 34, "line": 355, @@ -73609,7 +74201,7 @@ Array [ "params": Array [ "needMdn", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/needMdn", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/needMdn", "position": Object { "column": 23, "line": 7142, @@ -73631,7 +74223,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.needMDN", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['needMDN']", "jsonPosition": Object { "column": 34, "line": 355, @@ -73641,7 +74233,7 @@ Array [ "params": Array [ "needMDN", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/needMDN", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/needMDN", "position": Object { "column": 23, "line": 7142, @@ -73663,7 +74255,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.signMDN", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['signMDN']", "jsonPosition": Object { "column": 34, "line": 355, @@ -73673,7 +74265,7 @@ Array [ "params": Array [ "signMDN", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signMDN", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signMDN", "position": Object { "column": 23, "line": 7142, @@ -73695,7 +74287,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.sendMDNAsynchronously", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['sendMDNAsynchronously']", "jsonPosition": Object { "column": 34, "line": 355, @@ -73705,7 +74297,7 @@ Array [ "params": Array [ "sendMDNAsynchronously", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendMDNAsynchronously", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendMDNAsynchronously", "position": Object { "column": 23, "line": 7142, @@ -73727,7 +74319,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.signOutboundMDNIfOptional", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['signOutboundMDNIfOptional']", "jsonPosition": Object { "column": 34, "line": 355, @@ -73737,7 +74329,7 @@ Array [ "params": Array [ "signOutboundMDNIfOptional", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signOutboundMDNIfOptional", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/signOutboundMDNIfOptional", "position": Object { "column": 23, "line": 7142, @@ -73759,7 +74351,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.mdnSettings.sendInboundMDNToMessageBox", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['mdnSettings']['sendInboundMDNToMessageBox']", "jsonPosition": Object { "column": 34, "line": 355, @@ -73769,7 +74361,7 @@ Array [ "params": Array [ "sendInboundMDNToMessageBox", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendInboundMDNToMessageBox", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/mdnSettings/sendInboundMDNToMessageBox", "position": Object { "column": 23, "line": 7142, @@ -73791,7 +74383,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForInboundMdn", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNrrForInboundMdn']", "jsonPosition": Object { "column": 39, "line": 366, @@ -73801,7 +74393,7 @@ Array [ "params": Array [ "enableNrrForInboundMdn", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForInboundMdn", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForInboundMdn", "position": Object { "column": 28, "line": 7192, @@ -73823,7 +74415,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForOutboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNrrForOutboundDecodedMessages']", "jsonPosition": Object { "column": 39, "line": 366, @@ -73833,7 +74425,7 @@ Array [ "params": Array [ "enableNrrForOutboundDecodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForOutboundDecodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForOutboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -73855,7 +74447,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForOutboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNrrForOutboundEncodedMessages']", "jsonPosition": Object { "column": 39, "line": 366, @@ -73865,7 +74457,7 @@ Array [ "params": Array [ "enableNrrForOutboundEncodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForOutboundEncodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForOutboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -73887,7 +74479,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForOutboundMdn", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNrrForOutboundMdn']", "jsonPosition": Object { "column": 39, "line": 366, @@ -73897,7 +74489,7 @@ Array [ "params": Array [ "enableNrrForOutboundMdn", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForOutboundMdn", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForOutboundMdn", "position": Object { "column": 28, "line": 7192, @@ -73919,7 +74511,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForInboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNrrForInboundDecodedMessages']", "jsonPosition": Object { "column": 39, "line": 366, @@ -73929,7 +74521,7 @@ Array [ "params": Array [ "enableNrrForInboundDecodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForInboundDecodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForInboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -73951,7 +74543,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForInboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNrrForInboundEncodedMessages']", "jsonPosition": Object { "column": 39, "line": 366, @@ -73961,7 +74553,7 @@ Array [ "params": Array [ "enableNrrForInboundEncodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForInboundEncodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNrrForInboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -73983,7 +74575,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNRRForInboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNRRForInboundEncodedMessages']", "jsonPosition": Object { "column": 39, "line": 366, @@ -73993,7 +74585,7 @@ Array [ "params": Array [ "enableNRRForInboundEncodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForInboundEncodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForInboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -74015,7 +74607,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNRRForInboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNRRForInboundDecodedMessages']", "jsonPosition": Object { "column": 39, "line": 366, @@ -74025,7 +74617,7 @@ Array [ "params": Array [ "enableNRRForInboundDecodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForInboundDecodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForInboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -74047,7 +74639,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNRRForOutboundMDN", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNRRForOutboundMDN']", "jsonPosition": Object { "column": 39, "line": 366, @@ -74057,7 +74649,7 @@ Array [ "params": Array [ "enableNRRForOutboundMDN", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForOutboundMDN", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForOutboundMDN", "position": Object { "column": 28, "line": 7192, @@ -74079,7 +74671,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNRRForOutboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNRRForOutboundEncodedMessages']", "jsonPosition": Object { "column": 39, "line": 366, @@ -74089,7 +74681,7 @@ Array [ "params": Array [ "enableNRRForOutboundEncodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForOutboundEncodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForOutboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -74111,7 +74703,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNRRForOutboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNRRForOutboundDecodedMessages']", "jsonPosition": Object { "column": 39, "line": 366, @@ -74121,7 +74713,7 @@ Array [ "params": Array [ "enableNRRForOutboundDecodedMessages", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForOutboundDecodedMessages", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForOutboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -74143,7 +74735,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.enableNRRForInboundMDN", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['securitySettings']['enableNRRForInboundMDN']", "jsonPosition": Object { "column": 39, "line": 366, @@ -74153,7 +74745,7 @@ Array [ "params": Array [ "enableNRRForInboundMDN", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForInboundMDN", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/securitySettings/enableNRRForInboundMDN", "position": Object { "column": 28, "line": 7192, @@ -74175,7 +74767,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.errorSettings.resendIfMdnNotReceived", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['errorSettings']['resendIfMdnNotReceived']", "jsonPosition": Object { "column": 36, "line": 393, @@ -74185,7 +74777,7 @@ Array [ "params": Array [ "resendIfMdnNotReceived", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/errorSettings/resendIfMdnNotReceived", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/errorSettings/resendIfMdnNotReceived", "position": Object { "column": 25, "line": 7338, @@ -74207,7 +74799,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.receiveAgreement.protocolSettings.errorSettings.resendIfMDNNotReceived", + "jsonPath": "$['properties']['content']['aS2']['receiveAgreement']['protocolSettings']['errorSettings']['resendIfMDNNotReceived']", "jsonPosition": Object { "column": 36, "line": 393, @@ -74217,7 +74809,7 @@ Array [ "params": Array [ "resendIfMDNNotReceived", ], - "path": "properties/content/aS2/receiveAgreement/protocolSettings/errorSettings/resendIfMDNNotReceived", + "path": "$/properties/content/aS2/receiveAgreement/protocolSettings/errorSettings/resendIfMDNNotReceived", "position": Object { "column": 25, "line": 7338, @@ -74239,7 +74831,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.sendInboundMdnToMessageBox", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['sendInboundMdnToMessageBox']", "jsonPosition": Object { "column": 34, "line": 421, @@ -74249,7 +74841,7 @@ Array [ "params": Array [ "sendInboundMdnToMessageBox", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendInboundMdnToMessageBox", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendInboundMdnToMessageBox", "position": Object { "column": 23, "line": 7142, @@ -74271,7 +74863,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.signOutboundMdnIfOptional", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['signOutboundMdnIfOptional']", "jsonPosition": Object { "column": 34, "line": 421, @@ -74281,7 +74873,7 @@ Array [ "params": Array [ "signOutboundMdnIfOptional", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signOutboundMdnIfOptional", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signOutboundMdnIfOptional", "position": Object { "column": 23, "line": 7142, @@ -74303,7 +74895,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.sendMdnAsynchronously", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['sendMdnAsynchronously']", "jsonPosition": Object { "column": 34, "line": 421, @@ -74313,7 +74905,7 @@ Array [ "params": Array [ "sendMdnAsynchronously", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendMdnAsynchronously", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendMdnAsynchronously", "position": Object { "column": 23, "line": 7142, @@ -74335,7 +74927,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.signMdn", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['signMdn']", "jsonPosition": Object { "column": 34, "line": 421, @@ -74345,7 +74937,7 @@ Array [ "params": Array [ "signMdn", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signMdn", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signMdn", "position": Object { "column": 23, "line": 7142, @@ -74367,7 +74959,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.needMdn", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['needMdn']", "jsonPosition": Object { "column": 34, "line": 421, @@ -74377,7 +74969,7 @@ Array [ "params": Array [ "needMdn", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/needMdn", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/needMdn", "position": Object { "column": 23, "line": 7142, @@ -74399,7 +74991,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.needMDN", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['needMDN']", "jsonPosition": Object { "column": 34, "line": 421, @@ -74409,7 +75001,7 @@ Array [ "params": Array [ "needMDN", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/needMDN", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/needMDN", "position": Object { "column": 23, "line": 7142, @@ -74431,7 +75023,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.signMDN", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['signMDN']", "jsonPosition": Object { "column": 34, "line": 421, @@ -74441,7 +75033,7 @@ Array [ "params": Array [ "signMDN", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signMDN", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signMDN", "position": Object { "column": 23, "line": 7142, @@ -74463,7 +75055,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.sendMDNAsynchronously", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['sendMDNAsynchronously']", "jsonPosition": Object { "column": 34, "line": 421, @@ -74473,7 +75065,7 @@ Array [ "params": Array [ "sendMDNAsynchronously", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendMDNAsynchronously", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendMDNAsynchronously", "position": Object { "column": 23, "line": 7142, @@ -74495,7 +75087,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.signOutboundMDNIfOptional", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['signOutboundMDNIfOptional']", "jsonPosition": Object { "column": 34, "line": 421, @@ -74505,7 +75097,7 @@ Array [ "params": Array [ "signOutboundMDNIfOptional", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signOutboundMDNIfOptional", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/signOutboundMDNIfOptional", "position": Object { "column": 23, "line": 7142, @@ -74527,7 +75119,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.mdnSettings.sendInboundMDNToMessageBox", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['mdnSettings']['sendInboundMDNToMessageBox']", "jsonPosition": Object { "column": 34, "line": 421, @@ -74537,7 +75129,7 @@ Array [ "params": Array [ "sendInboundMDNToMessageBox", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendInboundMDNToMessageBox", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/mdnSettings/sendInboundMDNToMessageBox", "position": Object { "column": 23, "line": 7142, @@ -74559,7 +75151,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNrrForInboundMdn", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNrrForInboundMdn']", "jsonPosition": Object { "column": 39, "line": 432, @@ -74569,7 +75161,7 @@ Array [ "params": Array [ "enableNrrForInboundMdn", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForInboundMdn", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForInboundMdn", "position": Object { "column": 28, "line": 7192, @@ -74591,7 +75183,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNrrForOutboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNrrForOutboundDecodedMessages']", "jsonPosition": Object { "column": 39, "line": 432, @@ -74601,7 +75193,7 @@ Array [ "params": Array [ "enableNrrForOutboundDecodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForOutboundDecodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForOutboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -74623,7 +75215,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNrrForOutboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNrrForOutboundEncodedMessages']", "jsonPosition": Object { "column": 39, "line": 432, @@ -74633,7 +75225,7 @@ Array [ "params": Array [ "enableNrrForOutboundEncodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForOutboundEncodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForOutboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -74655,7 +75247,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNrrForOutboundMdn", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNrrForOutboundMdn']", "jsonPosition": Object { "column": 39, "line": 432, @@ -74665,7 +75257,7 @@ Array [ "params": Array [ "enableNrrForOutboundMdn", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForOutboundMdn", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForOutboundMdn", "position": Object { "column": 28, "line": 7192, @@ -74687,7 +75279,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNrrForInboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNrrForInboundDecodedMessages']", "jsonPosition": Object { "column": 39, "line": 432, @@ -74697,7 +75289,7 @@ Array [ "params": Array [ "enableNrrForInboundDecodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForInboundDecodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForInboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -74719,7 +75311,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNrrForInboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNrrForInboundEncodedMessages']", "jsonPosition": Object { "column": 39, "line": 432, @@ -74729,7 +75321,7 @@ Array [ "params": Array [ "enableNrrForInboundEncodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForInboundEncodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNrrForInboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -74751,7 +75343,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNRRForInboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNRRForInboundEncodedMessages']", "jsonPosition": Object { "column": 39, "line": 432, @@ -74761,7 +75353,7 @@ Array [ "params": Array [ "enableNRRForInboundEncodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForInboundEncodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForInboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -74783,7 +75375,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNRRForInboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNRRForInboundDecodedMessages']", "jsonPosition": Object { "column": 39, "line": 432, @@ -74793,7 +75385,7 @@ Array [ "params": Array [ "enableNRRForInboundDecodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForInboundDecodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForInboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -74815,7 +75407,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNRRForOutboundMDN", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNRRForOutboundMDN']", "jsonPosition": Object { "column": 39, "line": 432, @@ -74825,7 +75417,7 @@ Array [ "params": Array [ "enableNRRForOutboundMDN", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForOutboundMDN", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForOutboundMDN", "position": Object { "column": 28, "line": 7192, @@ -74847,7 +75439,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNRRForOutboundEncodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNRRForOutboundEncodedMessages']", "jsonPosition": Object { "column": 39, "line": 432, @@ -74857,7 +75449,7 @@ Array [ "params": Array [ "enableNRRForOutboundEncodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForOutboundEncodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForOutboundEncodedMessages", "position": Object { "column": 28, "line": 7192, @@ -74879,7 +75471,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNRRForOutboundDecodedMessages", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNRRForOutboundDecodedMessages']", "jsonPosition": Object { "column": 39, "line": 432, @@ -74889,7 +75481,7 @@ Array [ "params": Array [ "enableNRRForOutboundDecodedMessages", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForOutboundDecodedMessages", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForOutboundDecodedMessages", "position": Object { "column": 28, "line": 7192, @@ -74911,7 +75503,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.securitySettings.enableNRRForInboundMDN", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['securitySettings']['enableNRRForInboundMDN']", "jsonPosition": Object { "column": 39, "line": 432, @@ -74921,7 +75513,7 @@ Array [ "params": Array [ "enableNRRForInboundMDN", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForInboundMDN", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/securitySettings/enableNRRForInboundMDN", "position": Object { "column": 28, "line": 7192, @@ -74943,7 +75535,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.errorSettings.resendIfMdnNotReceived", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['errorSettings']['resendIfMdnNotReceived']", "jsonPosition": Object { "column": 36, "line": 459, @@ -74953,7 +75545,7 @@ Array [ "params": Array [ "resendIfMdnNotReceived", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/errorSettings/resendIfMdnNotReceived", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/errorSettings/resendIfMdnNotReceived", "position": Object { "column": 25, "line": 7338, @@ -74975,7 +75567,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.content.aS2.sendAgreement.protocolSettings.errorSettings.resendIfMDNNotReceived", + "jsonPath": "$['properties']['content']['aS2']['sendAgreement']['protocolSettings']['errorSettings']['resendIfMDNNotReceived']", "jsonPosition": Object { "column": 36, "line": 459, @@ -74985,7 +75577,7 @@ Array [ "params": Array [ "resendIfMDNNotReceived", ], - "path": "properties/content/aS2/sendAgreement/protocolSettings/errorSettings/resendIfMDNNotReceived", + "path": "$/properties/content/aS2/sendAgreement/protocolSettings/errorSettings/resendIfMDNNotReceived", "position": Object { "column": 25, "line": 7338, @@ -75044,13 +75636,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Wrapper for error response to follow ARM guidelines.", "directives": Object {}, - "jsonPath": "$.properties.provisioningErrors[0].statusCode", + "jsonPath": "$['properties']['provisioningErrors'][0]['statusCode']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/machinelearningcompute/resource-manager/Microsoft.MachineLearningCompute/preview/2017-08-01-preview/examples/OperationalizationClusters_Get.json", "message": "Additional properties not allowed: statusCode", "params": Array [ "statusCode", ], - "path": "properties/provisioningErrors/0/statusCode", + "path": "$/properties/provisioningErrors/0/statusCode", "position": Object { "column": 29, "line": 1149, @@ -75070,13 +75662,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Wrapper for error response to follow ARM guidelines.", "directives": Object {}, - "jsonPath": "$.properties.provisioningErrors[0].message", + "jsonPath": "$['properties']['provisioningErrors'][0]['message']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/machinelearningcompute/resource-manager/Microsoft.MachineLearningCompute/preview/2017-08-01-preview/examples/OperationalizationClusters_Get.json", "message": "Additional properties not allowed: message", "params": Array [ "message", ], - "path": "properties/provisioningErrors/0/message", + "path": "$/properties/provisioningErrors/0/message", "position": Object { "column": 29, "line": 1149, @@ -75096,13 +75688,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Wrapper for error response to follow ARM guidelines.", "directives": Object {}, - "jsonPath": "$.properties.provisioningErrors[0].code", + "jsonPath": "$['properties']['provisioningErrors'][0]['code']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/machinelearningcompute/resource-manager/Microsoft.MachineLearningCompute/preview/2017-08-01-preview/examples/OperationalizationClusters_Get.json", "message": "Additional properties not allowed: code", "params": Array [ "code", ], - "path": "properties/provisioningErrors/0/code", + "path": "$/properties/provisioningErrors/0/code", "position": Object { "column": 29, "line": 1149, @@ -75133,12 +75725,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "BatchAI properties", "directives": Object {}, - "jsonPath": "$.properties.properties.properties.properties.properties", + "jsonPath": "$['properties']['properties']['properties']['properties']['properties']", "message": "Additional properties not allowed: properties", "params": Array [ "properties", ], - "path": "properties/properties/properties/properties/properties", + "path": "$/properties/properties/properties/properties/properties", "position": Object { "column": 27, "line": 1235, @@ -75158,12 +75750,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "BatchAI properties", "directives": Object {}, - "jsonPath": "$.properties.properties.properties.properties.computeType", + "jsonPath": "$['properties']['properties']['properties']['properties']['computeType']", "message": "Additional properties not allowed: computeType", "params": Array [ "computeType", ], - "path": "properties/properties/properties/properties/computeType", + "path": "$/properties/properties/properties/properties/computeType", "position": Object { "column": 27, "line": 1235, @@ -75183,12 +75775,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "BatchAI properties", "directives": Object {}, - "jsonPath": "$.properties.properties.properties.properties.resourceId", + "jsonPath": "$['properties']['properties']['properties']['properties']['resourceId']", "message": "Additional properties not allowed: resourceId", "params": Array [ "resourceId", ], - "path": "properties/properties/properties/properties/resourceId", + "path": "$/properties/properties/properties/properties/resourceId", "position": Object { "column": 27, "line": 1235, @@ -75208,12 +75800,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "BatchAI properties", "directives": Object {}, - "jsonPath": "$.properties.properties.properties.properties.description", + "jsonPath": "$['properties']['properties']['properties']['properties']['description']", "message": "Additional properties not allowed: description", "params": Array [ "description", ], - "path": "properties/properties/properties/properties/description", + "path": "$/properties/properties/properties/properties/description", "position": Object { "column": 27, "line": 1235, @@ -75233,13 +75825,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Specifies the resource ID.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"compute123\\"\`, cannot be sent in the request.", "params": Array [ "id", "compute123", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 997, @@ -75274,12 +75866,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Management group creation parameters.", "directives": Object {}, - "jsonPath": "$[\\"properties \\"]", + "jsonPath": "$['properties ']", "message": "Additional properties not allowed: properties ", "params": Array [ "properties ", ], - "path": "properties ", + "path": "$/properties ", "position": Object { "column": 41, "line": 622, @@ -75299,12 +75891,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Management group creation parameters.", "directives": Object {}, - "jsonPath": "$[\\"properties \\"]", + "jsonPath": "$['properties ']", "message": "Additional properties not allowed: properties ", "params": Array [ "properties ", ], - "path": "properties ", + "path": "$/properties ", "position": Object { "column": 41, "line": 622, @@ -75352,12 +75944,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Management group patch parameters.", "directives": Object {}, - "jsonPath": "$.parentGroupId", + "jsonPath": "$['parentGroupId']", "message": "Additional properties not allowed: parentGroupId", "params": Array [ "parentGroupId", ], - "path": "parentGroupId", + "path": "$/parentGroupId", "position": Object { "column": 36, "line": 939, @@ -75400,13 +75992,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The AAD Tenant ID associated with the management group. For example, 00000000-0000-0000-0000-000000000000", "directives": Object {}, - "jsonPath": "$.properties.tenantId", + "jsonPath": "$['properties']['tenantId']", "message": "ReadOnly property \`\\"tenantId\\": \\"20000000-0000-0000-0000-000000000000\\"\`, cannot be sent in the request.", "params": Array [ "tenantId", "20000000-0000-0000-0000-000000000000", ], - "path": "properties/tenantId", + "path": "$/properties/tenantId", "position": Object { "column": 21, "line": 1165, @@ -75426,13 +76018,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource. For example, /providers/Microsoft.Management/managementGroups", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"/providers/Microsoft.Management/managementGroups\\"\`, cannot be sent in the request.", "params": Array [ "type", "/providers/Microsoft.Management/managementGroups", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1145, @@ -75452,13 +76044,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The fully qualified ID for the management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/providers/Microsoft.Management/managementGroups/ChildGroup\\"\`, cannot be sent in the request.", "params": Array [ "id", "/providers/Microsoft.Management/managementGroups/ChildGroup", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1140, @@ -75478,12 +76070,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Management group patch parameters.", "directives": Object {}, - "jsonPath": "$.parentGroupId", + "jsonPath": "$['parentGroupId']", "message": "Additional properties not allowed: parentGroupId", "params": Array [ "parentGroupId", ], - "path": "parentGroupId", + "path": "$/parentGroupId", "position": Object { "column": 36, "line": 1119, @@ -75652,13 +76244,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The legacy Policy ID.", "directives": Object {}, - "jsonPath": "$.properties.policyId", + "jsonPath": "$['properties']['policyId']", "message": "ReadOnly property \`\\"policyId\\": \\"00000000-0000-0000-0000-000000000000\\"\`, cannot be sent in the request.", "params": Array [ "policyId", "00000000-0000-0000-0000-000000000000", ], - "path": "properties/policyId", + "path": "$/properties/policyId", "position": Object { "column": 21, "line": 687, @@ -75678,13 +76270,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The legacy Policy Option ID.", "directives": Object {}, - "jsonPath": "$.properties.options[0].policyOptionId", + "jsonPath": "$['properties']['options'][0]['policyOptionId']", "message": "ReadOnly property \`\\"policyOptionId\\": \\"00000000-0000-0000-0000-000000000000\\"\`, cannot be sent in the request.", "params": Array [ "policyOptionId", "00000000-0000-0000-0000-000000000000", ], - "path": "properties/options/0/policyOptionId", + "path": "$/properties/options/0/policyOptionId", "position": Object { "column": 27, "line": 658, @@ -75704,12 +76296,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Configures the Play Right in the PlayReady license.", "directives": Object {}, - "jsonPath": "$.properties.options[0].configuration.licenses[0].playRight.digitalVideoOnlyContentRestriction", + "jsonPath": "$['properties']['options'][0]['configuration']['licenses'][0]['playRight']['digitalVideoOnlyContentRestriction']", "message": "Missing required property: digitalVideoOnlyContentRestriction", "params": Array [ "digitalVideoOnlyContentRestriction", ], - "path": "properties/options/0/configuration/licenses/0/playRight/digitalVideoOnlyContentRestriction", + "path": "$/properties/options/0/configuration/licenses/0/playRight/digitalVideoOnlyContentRestriction", "position": Object { "column": 43, "line": 93, @@ -75729,12 +76321,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Configures the Play Right in the PlayReady license.", "directives": Object {}, - "jsonPath": "$.properties.options[0].configuration.licenses[0].playRight.imageConstraintForAnalogComputerMonitorRestriction", + "jsonPath": "$['properties']['options'][0]['configuration']['licenses'][0]['playRight']['imageConstraintForAnalogComputerMonitorRestriction']", "message": "Missing required property: imageConstraintForAnalogComputerMonitorRestriction", "params": Array [ "imageConstraintForAnalogComputerMonitorRestriction", ], - "path": "properties/options/0/configuration/licenses/0/playRight/imageConstraintForAnalogComputerMonitorRestriction", + "path": "$/properties/options/0/configuration/licenses/0/playRight/imageConstraintForAnalogComputerMonitorRestriction", "position": Object { "column": 43, "line": 93, @@ -75761,13 +76353,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The UTC date and time when the Transform was created, in 'YYYY-MM-DDThh:mm:ssZ' format.", "directives": Object {}, - "jsonPath": "$.properties.created", + "jsonPath": "$['properties']['created']", "message": "ReadOnly property \`\\"created\\": \\"0001-01-01T00:00:00-05:00\\"\`, cannot be sent in the request.", "params": Array [ "created", "0001-01-01T00:00:00-05:00", ], - "path": "properties/created", + "path": "$/properties/created", "position": Object { "column": 20, "line": 991, @@ -75787,13 +76379,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The UTC date and time when the Transform was last updated, in 'YYYY-MM-DDThh:mm:ssZ' format.", "directives": Object {}, - "jsonPath": "$.properties.lastModified", + "jsonPath": "$['properties']['lastModified']", "message": "ReadOnly property \`\\"lastModified\\": \\"0001-01-01T00:00:00-05:00\\"\`, cannot be sent in the request.", "params": Array [ "lastModified", "0001-01-01T00:00:00-05:00", ], - "path": "properties/lastModified", + "path": "$/properties/lastModified", "position": Object { "column": 25, "line": 1002, @@ -75813,13 +76405,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The UTC date and time when the Transform was created, in 'YYYY-MM-DDThh:mm:ssZ' format.", "directives": Object {}, - "jsonPath": "$.properties.created", + "jsonPath": "$['properties']['created']", "message": "ReadOnly property \`\\"created\\": \\"0001-01-01T00:00:00-05:00\\"\`, cannot be sent in the request.", "params": Array [ "created", "0001-01-01T00:00:00-05:00", ], - "path": "properties/created", + "path": "$/properties/created", "position": Object { "column": 20, "line": 991, @@ -75839,13 +76431,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The UTC date and time when the Transform was last updated, in 'YYYY-MM-DDThh:mm:ssZ' format.", "directives": Object {}, - "jsonPath": "$.properties.lastModified", + "jsonPath": "$['properties']['lastModified']", "message": "ReadOnly property \`\\"lastModified\\": \\"0001-01-01T00:00:00-05:00\\"\`, cannot be sent in the request.", "params": Array [ "lastModified", "0001-01-01T00:00:00-05:00", ], - "path": "properties/lastModified", + "path": "$/properties/lastModified", "position": Object { "column": 25, "line": 1002, @@ -75872,12 +76464,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Class to specify which protocols are enabled", "directives": Object {}, - "jsonPath": "$.properties.envelopeEncryption.enabledProtocols.download", + "jsonPath": "$['properties']['envelopeEncryption']['enabledProtocols']['download']", "message": "Missing required property: download", "params": Array [ "download", ], - "path": "properties/envelopeEncryption/enabledProtocols/download", + "path": "$/properties/envelopeEncryption/enabledProtocols/download", "position": Object { "column": 25, "line": 225, @@ -75897,12 +76489,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Class to specify properties of Streaming Locator", "directives": Object {}, - "jsonPath": "$.properties.assetName", + "jsonPath": "$['properties']['assetName']", "message": "Missing required property: assetName", "params": Array [ "assetName", ], - "path": "properties/assetName", + "path": "$/properties/assetName", "position": Object { "column": 35, "line": 550, @@ -75922,12 +76514,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Class to specify properties of Streaming Locator", "directives": Object {}, - "jsonPath": "$.properties.streamingPolicyName", + "jsonPath": "$['properties']['streamingPolicyName']", "message": "Missing required property: streamingPolicyName", "params": Array [ "streamingPolicyName", ], - "path": "properties/streamingPolicyName", + "path": "$/properties/streamingPolicyName", "position": Object { "column": 35, "line": 550, @@ -75947,12 +76539,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Class to specify properties of Streaming Locator", "directives": Object {}, - "jsonPath": "$.properties.AssetName", + "jsonPath": "$['properties']['AssetName']", "message": "Additional properties not allowed: AssetName", "params": Array [ "AssetName", ], - "path": "properties/AssetName", + "path": "$/properties/AssetName", "position": Object { "column": 35, "line": 550, @@ -75972,12 +76564,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Class to specify properties of Streaming Locator", "directives": Object {}, - "jsonPath": "$.properties.StreamingPolicyName", + "jsonPath": "$['properties']['StreamingPolicyName']", "message": "Additional properties not allowed: StreamingPolicyName", "params": Array [ "StreamingPolicyName", ], - "path": "properties/StreamingPolicyName", + "path": "$/properties/StreamingPolicyName", "position": Object { "column": 35, "line": 550, @@ -75997,12 +76589,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Class to specify properties of Streaming Locator", "directives": Object {}, - "jsonPath": "$.properties.assetName", + "jsonPath": "$['properties']['assetName']", "message": "Missing required property: assetName", "params": Array [ "assetName", ], - "path": "properties/assetName", + "path": "$/properties/assetName", "position": Object { "column": 35, "line": 550, @@ -76022,12 +76614,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Class to specify properties of Streaming Locator", "directives": Object {}, - "jsonPath": "$.properties.streamingPolicyName", + "jsonPath": "$['properties']['streamingPolicyName']", "message": "Missing required property: streamingPolicyName", "params": Array [ "streamingPolicyName", ], - "path": "properties/streamingPolicyName", + "path": "$/properties/streamingPolicyName", "position": Object { "column": 35, "line": 550, @@ -76047,12 +76639,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Class to specify properties of Streaming Locator", "directives": Object {}, - "jsonPath": "$.properties.EndTime", + "jsonPath": "$['properties']['EndTime']", "message": "Additional properties not allowed: EndTime", "params": Array [ "EndTime", ], - "path": "properties/EndTime", + "path": "$/properties/EndTime", "position": Object { "column": 35, "line": 550, @@ -76072,12 +76664,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Class to specify properties of Streaming Locator", "directives": Object {}, - "jsonPath": "$.properties.StartTime", + "jsonPath": "$['properties']['StartTime']", "message": "Additional properties not allowed: StartTime", "params": Array [ "StartTime", ], - "path": "properties/StartTime", + "path": "$/properties/StartTime", "position": Object { "column": 35, "line": 550, @@ -76097,12 +76689,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Class to specify properties of Streaming Locator", "directives": Object {}, - "jsonPath": "$.properties.AssetName", + "jsonPath": "$['properties']['AssetName']", "message": "Additional properties not allowed: AssetName", "params": Array [ "AssetName", ], - "path": "properties/AssetName", + "path": "$/properties/AssetName", "position": Object { "column": 35, "line": 550, @@ -76122,12 +76714,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Class to specify properties of Streaming Locator", "directives": Object {}, - "jsonPath": "$.properties.StreamingPolicyName", + "jsonPath": "$['properties']['StreamingPolicyName']", "message": "Additional properties not allowed: StreamingPolicyName", "params": Array [ "StreamingPolicyName", ], - "path": "properties/StreamingPolicyName", + "path": "$/properties/StreamingPolicyName", "position": Object { "column": 35, "line": 550, @@ -76147,12 +76739,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Class to specify properties of Streaming Locator", "directives": Object {}, - "jsonPath": "$.properties.ContentKeys", + "jsonPath": "$['properties']['ContentKeys']", "message": "Additional properties not allowed: ContentKeys", "params": Array [ "ContentKeys", ], - "path": "properties/ContentKeys", + "path": "$/properties/ContentKeys", "position": Object { "column": 35, "line": 550, @@ -76172,12 +76764,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Class to specify properties of Streaming Locator", "directives": Object {}, - "jsonPath": "$.properties.StreamingLocatorId", + "jsonPath": "$['properties']['StreamingLocatorId']", "message": "Additional properties not allowed: StreamingLocatorId", "params": Array [ "StreamingLocatorId", ], - "path": "properties/StreamingLocatorId", + "path": "$/properties/StreamingLocatorId", "position": Object { "column": 35, "line": 550, @@ -76204,13 +76796,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"/subscriptions/0a6ec948-5a62-437d-b9df-934dc7c1b722/resourcegroups/mediaresources/providers/Microsoft.Media/mediaservices/slitestmedia10/liveevents\\"\`, cannot be sent in the request.", "params": Array [ "type", "/subscriptions/0a6ec948-5a62-437d-b9df-934dc7c1b722/resourcegroups/mediaresources/providers/Microsoft.Media/mediaservices/slitestmedia10/liveevents", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 33, @@ -76230,13 +76822,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the resource.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myLiveEvent1\\"\`, cannot be sent in the request.", "params": Array [ "name", "myLiveEvent1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 28, @@ -76256,13 +76848,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Fully qualified resource ID for the resource.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"nb:chid:UUID:00000001-2000-0000-0000-000000000000\\"\`, cannot be sent in the request.", "params": Array [ "id", "nb:chid:UUID:00000001-2000-0000-0000-000000000000", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 23, @@ -76282,13 +76874,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"/subscriptions/0a6ec948-5a62-437d-b9df-934dc7c1b722/resourcegroups/mediaresources/providers/Microsoft.Media/mediaservices/slitestmedia10/liveevents\\"\`, cannot be sent in the request.", "params": Array [ "type", "/subscriptions/0a6ec948-5a62-437d-b9df-934dc7c1b722/resourcegroups/mediaresources/providers/Microsoft.Media/mediaservices/slitestmedia10/liveevents", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 33, @@ -76308,13 +76900,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the resource.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myLiveEvent1\\"\`, cannot be sent in the request.", "params": Array [ "name", "myLiveEvent1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 28, @@ -76334,13 +76926,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Fully qualified resource ID for the resource.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/0a6ec948-5a62-437d-b9df-934dc7c1b722/resourceGroups/mediaresources/providers/Microsoft.Media/mediaservices/slitestmedia10/liveevents/myLiveEvent1\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/0a6ec948-5a62-437d-b9df-934dc7c1b722/resourceGroups/mediaresources/providers/Microsoft.Media/mediaservices/slitestmedia10/liveevents/myLiveEvent1", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 23, @@ -76360,13 +76952,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"/subscriptions/0a6ec948-5a62-437d-b9df-934dc7c1b722/resourcegroups/mediaresources/providers/Microsoft.Media/mediaservices/slitestmedia10/liveevents\\"\`, cannot be sent in the request.", "params": Array [ "type", "/subscriptions/0a6ec948-5a62-437d-b9df-934dc7c1b722/resourcegroups/mediaresources/providers/Microsoft.Media/mediaservices/slitestmedia10/liveevents", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 33, @@ -76386,13 +76978,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the resource.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myStreamingEndpoint1\\"\`, cannot be sent in the request.", "params": Array [ "name", "myStreamingEndpoint1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 28, @@ -76412,13 +77004,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"/subscriptions/0a6ec948-5a62-437d-b9df-934dc7c1b722/resourcegroups/mediaresources/providers/Microsoft.Media/mediaservices/slitestmedia10/streamingendpoints\\"\`, cannot be sent in the request.", "params": Array [ "type", "/subscriptions/0a6ec948-5a62-437d-b9df-934dc7c1b722/resourcegroups/mediaresources/providers/Microsoft.Media/mediaservices/slitestmedia10/streamingendpoints", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 33, @@ -76438,13 +77030,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the resource.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myStreamingEndpoint1\\"\`, cannot be sent in the request.", "params": Array [ "name", "myStreamingEndpoint1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 28, @@ -76483,13 +77075,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The legacy Policy ID.", "directives": Object {}, - "jsonPath": "$.properties.policyId", + "jsonPath": "$['properties']['policyId']", "message": "ReadOnly property \`\\"policyId\\": \\"00000000-0000-0000-0000-000000000000\\"\`, cannot be sent in the request.", "params": Array [ "policyId", "00000000-0000-0000-0000-000000000000", ], - "path": "properties/policyId", + "path": "$/properties/policyId", "position": Object { "column": 21, "line": 688, @@ -76509,13 +77101,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The legacy Policy Option ID.", "directives": Object {}, - "jsonPath": "$.properties.options[0].policyOptionId", + "jsonPath": "$['properties']['options'][0]['policyOptionId']", "message": "ReadOnly property \`\\"policyOptionId\\": \\"00000000-0000-0000-0000-000000000000\\"\`, cannot be sent in the request.", "params": Array [ "policyOptionId", "00000000-0000-0000-0000-000000000000", ], - "path": "properties/options/0/policyOptionId", + "path": "$/properties/options/0/policyOptionId", "position": Object { "column": 27, "line": 659, @@ -76535,12 +77127,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Configures the Play Right in the PlayReady license.", "directives": Object {}, - "jsonPath": "$.properties.options[0].configuration.licenses[0].playRight.digitalVideoOnlyContentRestriction", + "jsonPath": "$['properties']['options'][0]['configuration']['licenses'][0]['playRight']['digitalVideoOnlyContentRestriction']", "message": "Missing required property: digitalVideoOnlyContentRestriction", "params": Array [ "digitalVideoOnlyContentRestriction", ], - "path": "properties/options/0/configuration/licenses/0/playRight/digitalVideoOnlyContentRestriction", + "path": "$/properties/options/0/configuration/licenses/0/playRight/digitalVideoOnlyContentRestriction", "position": Object { "column": 43, "line": 94, @@ -76560,12 +77152,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Configures the Play Right in the PlayReady license.", "directives": Object {}, - "jsonPath": "$.properties.options[0].configuration.licenses[0].playRight.imageConstraintForAnalogComputerMonitorRestriction", + "jsonPath": "$['properties']['options'][0]['configuration']['licenses'][0]['playRight']['imageConstraintForAnalogComputerMonitorRestriction']", "message": "Missing required property: imageConstraintForAnalogComputerMonitorRestriction", "params": Array [ "imageConstraintForAnalogComputerMonitorRestriction", ], - "path": "properties/options/0/configuration/licenses/0/playRight/imageConstraintForAnalogComputerMonitorRestriction", + "path": "$/properties/options/0/configuration/licenses/0/playRight/imageConstraintForAnalogComputerMonitorRestriction", "position": Object { "column": 43, "line": 94, @@ -76592,13 +77184,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The UTC date and time when the Transform was created, in 'YYYY-MM-DDThh:mm:ssZ' format.", "directives": Object {}, - "jsonPath": "$.properties.created", + "jsonPath": "$['properties']['created']", "message": "ReadOnly property \`\\"created\\": \\"0001-01-01T00:00:00-05:00\\"\`, cannot be sent in the request.", "params": Array [ "created", "0001-01-01T00:00:00-05:00", ], - "path": "properties/created", + "path": "$/properties/created", "position": Object { "column": 20, "line": 992, @@ -76618,13 +77210,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The UTC date and time when the Transform was last updated, in 'YYYY-MM-DDThh:mm:ssZ' format.", "directives": Object {}, - "jsonPath": "$.properties.lastModified", + "jsonPath": "$['properties']['lastModified']", "message": "ReadOnly property \`\\"lastModified\\": \\"0001-01-01T00:00:00-05:00\\"\`, cannot be sent in the request.", "params": Array [ "lastModified", "0001-01-01T00:00:00-05:00", ], - "path": "properties/lastModified", + "path": "$/properties/lastModified", "position": Object { "column": 25, "line": 1003, @@ -76644,13 +77236,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The UTC date and time when the Transform was created, in 'YYYY-MM-DDThh:mm:ssZ' format.", "directives": Object {}, - "jsonPath": "$.properties.created", + "jsonPath": "$['properties']['created']", "message": "ReadOnly property \`\\"created\\": \\"0001-01-01T00:00:00-05:00\\"\`, cannot be sent in the request.", "params": Array [ "created", "0001-01-01T00:00:00-05:00", ], - "path": "properties/created", + "path": "$/properties/created", "position": Object { "column": 20, "line": 992, @@ -76670,13 +77262,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The UTC date and time when the Transform was last updated, in 'YYYY-MM-DDThh:mm:ssZ' format.", "directives": Object {}, - "jsonPath": "$.properties.lastModified", + "jsonPath": "$['properties']['lastModified']", "message": "ReadOnly property \`\\"lastModified\\": \\"0001-01-01T00:00:00-05:00\\"\`, cannot be sent in the request.", "params": Array [ "lastModified", "0001-01-01T00:00:00-05:00", ], - "path": "properties/lastModified", + "path": "$/properties/lastModified", "position": Object { "column": 25, "line": 1003, @@ -76703,12 +77295,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Class to specify which protocols are enabled", "directives": Object {}, - "jsonPath": "$.properties.envelopeEncryption.enabledProtocols.download", + "jsonPath": "$['properties']['envelopeEncryption']['enabledProtocols']['download']", "message": "Missing required property: download", "params": Array [ "download", ], - "path": "properties/envelopeEncryption/enabledProtocols/download", + "path": "$/properties/envelopeEncryption/enabledProtocols/download", "position": Object { "column": 25, "line": 226, @@ -76728,12 +77320,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Class to specify properties of Streaming Locator", "directives": Object {}, - "jsonPath": "$.properties.assetName", + "jsonPath": "$['properties']['assetName']", "message": "Missing required property: assetName", "params": Array [ "assetName", ], - "path": "properties/assetName", + "path": "$/properties/assetName", "position": Object { "column": 35, "line": 531, @@ -76753,12 +77345,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Class to specify properties of Streaming Locator", "directives": Object {}, - "jsonPath": "$.properties.streamingPolicyName", + "jsonPath": "$['properties']['streamingPolicyName']", "message": "Missing required property: streamingPolicyName", "params": Array [ "streamingPolicyName", ], - "path": "properties/streamingPolicyName", + "path": "$/properties/streamingPolicyName", "position": Object { "column": 35, "line": 531, @@ -76778,12 +77370,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Class to specify properties of Streaming Locator", "directives": Object {}, - "jsonPath": "$.properties.AssetName", + "jsonPath": "$['properties']['AssetName']", "message": "Additional properties not allowed: AssetName", "params": Array [ "AssetName", ], - "path": "properties/AssetName", + "path": "$/properties/AssetName", "position": Object { "column": 35, "line": 531, @@ -76803,12 +77395,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Class to specify properties of Streaming Locator", "directives": Object {}, - "jsonPath": "$.properties.StreamingPolicyName", + "jsonPath": "$['properties']['StreamingPolicyName']", "message": "Additional properties not allowed: StreamingPolicyName", "params": Array [ "StreamingPolicyName", ], - "path": "properties/StreamingPolicyName", + "path": "$/properties/StreamingPolicyName", "position": Object { "column": 35, "line": 531, @@ -76828,12 +77420,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Class to specify properties of Streaming Locator", "directives": Object {}, - "jsonPath": "$.properties.assetName", + "jsonPath": "$['properties']['assetName']", "message": "Missing required property: assetName", "params": Array [ "assetName", ], - "path": "properties/assetName", + "path": "$/properties/assetName", "position": Object { "column": 35, "line": 531, @@ -76853,12 +77445,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Class to specify properties of Streaming Locator", "directives": Object {}, - "jsonPath": "$.properties.streamingPolicyName", + "jsonPath": "$['properties']['streamingPolicyName']", "message": "Missing required property: streamingPolicyName", "params": Array [ "streamingPolicyName", ], - "path": "properties/streamingPolicyName", + "path": "$/properties/streamingPolicyName", "position": Object { "column": 35, "line": 531, @@ -76878,12 +77470,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Class to specify properties of Streaming Locator", "directives": Object {}, - "jsonPath": "$.properties.EndTime", + "jsonPath": "$['properties']['EndTime']", "message": "Additional properties not allowed: EndTime", "params": Array [ "EndTime", ], - "path": "properties/EndTime", + "path": "$/properties/EndTime", "position": Object { "column": 35, "line": 531, @@ -76903,12 +77495,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Class to specify properties of Streaming Locator", "directives": Object {}, - "jsonPath": "$.properties.StartTime", + "jsonPath": "$['properties']['StartTime']", "message": "Additional properties not allowed: StartTime", "params": Array [ "StartTime", ], - "path": "properties/StartTime", + "path": "$/properties/StartTime", "position": Object { "column": 35, "line": 531, @@ -76928,12 +77520,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Class to specify properties of Streaming Locator", "directives": Object {}, - "jsonPath": "$.properties.AssetName", + "jsonPath": "$['properties']['AssetName']", "message": "Additional properties not allowed: AssetName", "params": Array [ "AssetName", ], - "path": "properties/AssetName", + "path": "$/properties/AssetName", "position": Object { "column": 35, "line": 531, @@ -76953,12 +77545,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Class to specify properties of Streaming Locator", "directives": Object {}, - "jsonPath": "$.properties.StreamingPolicyName", + "jsonPath": "$['properties']['StreamingPolicyName']", "message": "Additional properties not allowed: StreamingPolicyName", "params": Array [ "StreamingPolicyName", ], - "path": "properties/StreamingPolicyName", + "path": "$/properties/StreamingPolicyName", "position": Object { "column": 35, "line": 531, @@ -76978,12 +77570,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Class to specify properties of Streaming Locator", "directives": Object {}, - "jsonPath": "$.properties.ContentKeys", + "jsonPath": "$['properties']['ContentKeys']", "message": "Additional properties not allowed: ContentKeys", "params": Array [ "ContentKeys", ], - "path": "properties/ContentKeys", + "path": "$/properties/ContentKeys", "position": Object { "column": 35, "line": 531, @@ -77003,12 +77595,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Class to specify properties of Streaming Locator", "directives": Object {}, - "jsonPath": "$.properties.StreamingLocatorId", + "jsonPath": "$['properties']['StreamingLocatorId']", "message": "Additional properties not allowed: StreamingLocatorId", "params": Array [ "StreamingLocatorId", ], - "path": "properties/StreamingLocatorId", + "path": "$/properties/StreamingLocatorId", "position": Object { "column": 35, "line": 531, @@ -77035,13 +77627,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"/subscriptions/0a6ec948-5a62-437d-b9df-934dc7c1b722/resourcegroups/mediaresources/providers/Microsoft.Media/mediaservices/slitestmedia10/liveevents\\"\`, cannot be sent in the request.", "params": Array [ "type", "/subscriptions/0a6ec948-5a62-437d-b9df-934dc7c1b722/resourcegroups/mediaresources/providers/Microsoft.Media/mediaservices/slitestmedia10/liveevents", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 33, @@ -77061,13 +77653,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the resource.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myLiveEvent1\\"\`, cannot be sent in the request.", "params": Array [ "name", "myLiveEvent1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 28, @@ -77087,13 +77679,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Fully qualified resource ID for the resource.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"nb:chid:UUID:00000001-2000-0000-0000-000000000000\\"\`, cannot be sent in the request.", "params": Array [ "id", "nb:chid:UUID:00000001-2000-0000-0000-000000000000", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 23, @@ -77113,13 +77705,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"/subscriptions/0a6ec948-5a62-437d-b9df-934dc7c1b722/resourcegroups/mediaresources/providers/Microsoft.Media/mediaservices/slitestmedia10/liveevents\\"\`, cannot be sent in the request.", "params": Array [ "type", "/subscriptions/0a6ec948-5a62-437d-b9df-934dc7c1b722/resourcegroups/mediaresources/providers/Microsoft.Media/mediaservices/slitestmedia10/liveevents", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 33, @@ -77139,13 +77731,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the resource.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myLiveEvent1\\"\`, cannot be sent in the request.", "params": Array [ "name", "myLiveEvent1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 28, @@ -77165,13 +77757,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Fully qualified resource ID for the resource.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/0a6ec948-5a62-437d-b9df-934dc7c1b722/resourceGroups/mediaresources/providers/Microsoft.Media/mediaservices/slitestmedia10/liveevents/myLiveEvent1\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/0a6ec948-5a62-437d-b9df-934dc7c1b722/resourceGroups/mediaresources/providers/Microsoft.Media/mediaservices/slitestmedia10/liveevents/myLiveEvent1", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 23, @@ -77191,13 +77783,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"/subscriptions/0a6ec948-5a62-437d-b9df-934dc7c1b722/resourcegroups/mediaresources/providers/Microsoft.Media/mediaservices/slitestmedia10/liveevents\\"\`, cannot be sent in the request.", "params": Array [ "type", "/subscriptions/0a6ec948-5a62-437d-b9df-934dc7c1b722/resourcegroups/mediaresources/providers/Microsoft.Media/mediaservices/slitestmedia10/liveevents", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 33, @@ -77217,13 +77809,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the resource.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myStreamingEndpoint1\\"\`, cannot be sent in the request.", "params": Array [ "name", "myStreamingEndpoint1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 28, @@ -77243,13 +77835,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"/subscriptions/0a6ec948-5a62-437d-b9df-934dc7c1b722/resourcegroups/mediaresources/providers/Microsoft.Media/mediaservices/slitestmedia10/streamingendpoints\\"\`, cannot be sent in the request.", "params": Array [ "type", "/subscriptions/0a6ec948-5a62-437d-b9df-934dc7c1b722/resourcegroups/mediaresources/providers/Microsoft.Media/mediaservices/slitestmedia10/streamingendpoints", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 33, @@ -77269,13 +77861,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the resource.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myStreamingEndpoint1\\"\`, cannot be sent in the request.", "params": Array [ "name", "myStreamingEndpoint1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 28, @@ -77302,23 +77894,23 @@ Array [ "code": "INVALID_TYPE", "description": "Tags to help categorize the resource in the Azure portal.", "directives": Object {}, - "jsonPath": "$.value[0].tags", + "jsonPath": "$['value'][0]['tags']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/examples/MediaServiceListByResourceGroup.json", "message": "Expected type object but found type array", "params": Array [ "object", "array", ], - "path": "value/0/tags", + "path": "$/value/0/tags", "position": Object { "column": 17, "line": 779, }, "similarJsonPaths": Array [ - "$.value[1].tags", + "$['value'][1]['tags']", ], "similarPaths": Array [ - "value/1/tags", + "$/value/1/tags", ], "title": "#/definitions/Resource/properties/tags", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/mediaservices/resource-manager/Microsoft.Media/stable/2015-10-01/media.json", @@ -77335,7 +77927,7 @@ Array [ "code": "INVALID_TYPE", "description": "Tags to help categorize the resource in the Azure portal.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "jsonPosition": Object { "column": 17, "line": 14, @@ -77346,7 +77938,7 @@ Array [ "object", "array", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 17, "line": 779, @@ -77421,13 +78013,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Type of the object = [Microsoft.Migrate/projects].", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Migrate/projects\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Migrate/projects", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 130, @@ -77447,13 +78039,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Name of the project.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"project01\\"\`, cannot be sent in the request.", "params": Array [ "name", "project01", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 125, @@ -77473,13 +78065,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Path reference to this project /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/projects/{projectName}", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/75dd7e42-4fd1-4512-af04-83ad9864335b/resourceGroups/myResourceGroup/providers/Microsoft.Migrate/projects/project01\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/75dd7e42-4fd1-4512-af04-83ad9864335b/resourceGroups/myResourceGroup/providers/Microsoft.Migrate/projects/project01", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 120, @@ -77499,13 +78091,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Type of the object = [Microsoft.Migrate/projects].", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Migrate/projects\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Migrate/projects", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 130, @@ -77525,13 +78117,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Name of the project.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"project01\\"\`, cannot be sent in the request.", "params": Array [ "name", "project01", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 125, @@ -77551,13 +78143,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Path reference to this project /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/projects/{projectName}", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/75dd7e42-4fd1-4512-af04-83ad9864335b/resourceGroups/myResourceGroup/providers/Microsoft.Migrate/projects/project01\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/75dd7e42-4fd1-4512-af04-83ad9864335b/resourceGroups/myResourceGroup/providers/Microsoft.Migrate/projects/project01", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 120, @@ -77584,12 +78176,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "SpatialAnchorsAccount Response.", "directives": Object {}, - "jsonPath": "$.Tags", + "jsonPath": "$['Tags']", "message": "Additional properties not allowed: Tags", "params": Array [ "Tags", ], - "path": "Tags", + "path": "$/Tags", "position": Object { "column": 31, "line": 571, @@ -77609,12 +78201,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "SpatialAnchorsAccount Response.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "message": "Missing required property: location", "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 31, "line": 571, @@ -77748,22 +78340,22 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.dataSources[1].configuration.providers[0].id", + "jsonPath": "$['properties']['dataSources'][1]['configuration']['providers'][0]['id']", "message": "Expected type string but found type integer", "params": Array [ "string", "integer", ], - "path": "properties/dataSources/1/configuration/providers/0/id", + "path": "$/properties/dataSources/1/configuration/providers/0/id", "position": Object { "column": 23, "line": 466, }, "similarJsonPaths": Array [ - "$.properties.dataSources[1].configuration.providers.configuration.providers[1].id", + "$['properties']['dataSources'][1]['configuration']['providers']['configuration']['providers'][1]['id']", ], "similarPaths": Array [ - "properties/dataSources/1/configuration/providers/configuration/providers/1/id", + "$/properties/dataSources/1/configuration/providers/configuration/providers/1/id", ], "title": "#/definitions/EtwProviderConfiguration/properties/id", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/guestDiagnosticSettings_API.json", @@ -77781,12 +78373,12 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.dataSources[1].configuration.providers[0].filter", + "jsonPath": "$['properties']['dataSources'][1]['configuration']['providers'][0]['filter']", "message": "Additional properties not allowed: filter", "params": Array [ "filter", ], - "path": "properties/dataSources/1/configuration/providers/0/filter", + "path": "$/properties/dataSources/1/configuration/providers/0/filter", "position": Object { "column": 37, "line": 459, @@ -77807,21 +78399,21 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.dataSources[1].configuration.providers[0].name", + "jsonPath": "$['properties']['dataSources'][1]['configuration']['providers'][0]['name']", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "properties/dataSources/1/configuration/providers/0/name", + "path": "$/properties/dataSources/1/configuration/providers/0/name", "position": Object { "column": 37, "line": 459, }, "similarJsonPaths": Array [ - "$.properties.dataSources[1].configuration.providers.configuration.providers[1].name", + "$['properties']['dataSources'][1]['configuration']['providers']['configuration']['providers'][1]['name']", ], "similarPaths": Array [ - "properties/dataSources/1/configuration/providers/configuration/providers/1/name", + "$/properties/dataSources/1/configuration/providers/configuration/providers/1/name", ], "title": "#/definitions/EtwProviderConfiguration", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/guestDiagnosticSettings_API.json", @@ -77839,21 +78431,21 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.dataSources[1].configuration.providers[0].events", + "jsonPath": "$['properties']['dataSources'][1]['configuration']['providers'][0]['events']", "message": "Missing required property: events", "params": Array [ "events", ], - "path": "properties/dataSources/1/configuration/providers/0/events", + "path": "$/properties/dataSources/1/configuration/providers/0/events", "position": Object { "column": 37, "line": 459, }, "similarJsonPaths": Array [ - "$.properties.dataSources[1].configuration.providers.configuration.providers[1].events", + "$['properties']['dataSources'][1]['configuration']['providers']['configuration']['providers'][1]['events']", ], "similarPaths": Array [ - "properties/dataSources/1/configuration/providers/configuration/providers/1/events", + "$/properties/dataSources/1/configuration/providers/configuration/providers/1/events", ], "title": "#/definitions/EtwProviderConfiguration", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/monitor/resource-manager/Microsoft.Insights/preview/2018-06-01-preview/guestDiagnosticSettings_API.json", @@ -77988,116 +78580,116 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[0].display.description", + "jsonPath": "$['value'][0]['display']['description']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/OperationList.json", "message": "Additional properties not allowed: description", "params": Array [ "description", ], - "path": "value/0/display/description", + "path": "$/value/0/display/description", "position": Object { "column": 20, "line": 90, }, "similarJsonPaths": Array [ - "$.value[1].display.description", - "$.value[2].display.description", - "$.value[3].display.description", - "$.value[4].display.description", - "$.value[5].display.description", - "$.value[6].display.description", - "$.value[7].display.description", - "$.value[8].display.description", - "$.value[9].display.description", - "$.value[10].display.description", - "$.value[11].display.description", - "$.value[12].display.description", - "$.value[13].display.description", - "$.value[14].display.description", - "$.value[15].display.description", - "$.value[16].display.description", - "$.value[17].display.description", - "$.value[18].display.description", - "$.value[19].display.description", - "$.value[20].display.description", - "$.value[21].display.description", - "$.value[22].display.description", - "$.value[23].display.description", - "$.value[24].display.description", - "$.value[25].display.description", - "$.value[26].display.description", - "$.value[27].display.description", - "$.value[28].display.description", - "$.value[29].display.description", - "$.value[30].display.description", - "$.value[31].display.description", - "$.value[32].display.description", - "$.value[33].display.description", - "$.value[34].display.description", - "$.value[35].display.description", - "$.value[36].display.description", - "$.value[37].display.description", - "$.value[38].display.description", - "$.value[39].display.description", - "$.value[40].display.description", - "$.value[41].display.description", - "$.value[42].display.description", - "$.value[43].display.description", - "$.value[44].display.description", - "$.value[45].display.description", - "$.value[46].display.description", - "$.value[47].display.description", - "$.value[48].display.description", + "$['value'][1]['display']['description']", + "$['value'][2]['display']['description']", + "$['value'][3]['display']['description']", + "$['value'][4]['display']['description']", + "$['value'][5]['display']['description']", + "$['value'][6]['display']['description']", + "$['value'][7]['display']['description']", + "$['value'][8]['display']['description']", + "$['value'][9]['display']['description']", + "$['value'][10]['display']['description']", + "$['value'][11]['display']['description']", + "$['value'][12]['display']['description']", + "$['value'][13]['display']['description']", + "$['value'][14]['display']['description']", + "$['value'][15]['display']['description']", + "$['value'][16]['display']['description']", + "$['value'][17]['display']['description']", + "$['value'][18]['display']['description']", + "$['value'][19]['display']['description']", + "$['value'][20]['display']['description']", + "$['value'][21]['display']['description']", + "$['value'][22]['display']['description']", + "$['value'][23]['display']['description']", + "$['value'][24]['display']['description']", + "$['value'][25]['display']['description']", + "$['value'][26]['display']['description']", + "$['value'][27]['display']['description']", + "$['value'][28]['display']['description']", + "$['value'][29]['display']['description']", + "$['value'][30]['display']['description']", + "$['value'][31]['display']['description']", + "$['value'][32]['display']['description']", + "$['value'][33]['display']['description']", + "$['value'][34]['display']['description']", + "$['value'][35]['display']['description']", + "$['value'][36]['display']['description']", + "$['value'][37]['display']['description']", + "$['value'][38]['display']['description']", + "$['value'][39]['display']['description']", + "$['value'][40]['display']['description']", + "$['value'][41]['display']['description']", + "$['value'][42]['display']['description']", + "$['value'][43]['display']['description']", + "$['value'][44]['display']['description']", + "$['value'][45]['display']['description']", + "$['value'][46]['display']['description']", + "$['value'][47]['display']['description']", + "$['value'][48]['display']['description']", ], "similarPaths": Array [ - "value/1/display/description", - "value/2/display/description", - "value/3/display/description", - "value/4/display/description", - "value/5/display/description", - "value/6/display/description", - "value/7/display/description", - "value/8/display/description", - "value/9/display/description", - "value/10/display/description", - "value/11/display/description", - "value/12/display/description", - "value/13/display/description", - "value/14/display/description", - "value/15/display/description", - "value/16/display/description", - "value/17/display/description", - "value/18/display/description", - "value/19/display/description", - "value/20/display/description", - "value/21/display/description", - "value/22/display/description", - "value/23/display/description", - "value/24/display/description", - "value/25/display/description", - "value/26/display/description", - "value/27/display/description", - "value/28/display/description", - "value/29/display/description", - "value/30/display/description", - "value/31/display/description", - "value/32/display/description", - "value/33/display/description", - "value/34/display/description", - "value/35/display/description", - "value/36/display/description", - "value/37/display/description", - "value/38/display/description", - "value/39/display/description", - "value/40/display/description", - "value/41/display/description", - "value/42/display/description", - "value/43/display/description", - "value/44/display/description", - "value/45/display/description", - "value/46/display/description", - "value/47/display/description", - "value/48/display/description", + "$/value/1/display/description", + "$/value/2/display/description", + "$/value/3/display/description", + "$/value/4/display/description", + "$/value/5/display/description", + "$/value/6/display/description", + "$/value/7/display/description", + "$/value/8/display/description", + "$/value/9/display/description", + "$/value/10/display/description", + "$/value/11/display/description", + "$/value/12/display/description", + "$/value/13/display/description", + "$/value/14/display/description", + "$/value/15/display/description", + "$/value/16/display/description", + "$/value/17/display/description", + "$/value/18/display/description", + "$/value/19/display/description", + "$/value/20/display/description", + "$/value/21/display/description", + "$/value/22/display/description", + "$/value/23/display/description", + "$/value/24/display/description", + "$/value/25/display/description", + "$/value/26/display/description", + "$/value/27/display/description", + "$/value/28/display/description", + "$/value/29/display/description", + "$/value/30/display/description", + "$/value/31/display/description", + "$/value/32/display/description", + "$/value/33/display/description", + "$/value/34/display/description", + "$/value/35/display/description", + "$/value/36/display/description", + "$/value/37/display/description", + "$/value/38/display/description", + "$/value/39/display/description", + "$/value/40/display/description", + "$/value/41/display/description", + "$/value/42/display/description", + "$/value/43/display/description", + "$/value/44/display/description", + "$/value/45/display/description", + "$/value/46/display/description", + "$/value/47/display/description", + "$/value/48/display/description", ], "title": "#/definitions/Operation/properties/display", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/operations_API.json", @@ -78116,116 +78708,116 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[0].display.publisher", + "jsonPath": "$['value'][0]['display']['publisher']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/OperationList.json", "message": "Additional properties not allowed: publisher", "params": Array [ "publisher", ], - "path": "value/0/display/publisher", + "path": "$/value/0/display/publisher", "position": Object { "column": 20, "line": 90, }, "similarJsonPaths": Array [ - "$.value[1].display.publisher", - "$.value[2].display.publisher", - "$.value[3].display.publisher", - "$.value[4].display.publisher", - "$.value[5].display.publisher", - "$.value[6].display.publisher", - "$.value[7].display.publisher", - "$.value[8].display.publisher", - "$.value[9].display.publisher", - "$.value[10].display.publisher", - "$.value[11].display.publisher", - "$.value[12].display.publisher", - "$.value[13].display.publisher", - "$.value[14].display.publisher", - "$.value[15].display.publisher", - "$.value[16].display.publisher", - "$.value[17].display.publisher", - "$.value[18].display.publisher", - "$.value[19].display.publisher", - "$.value[20].display.publisher", - "$.value[21].display.publisher", - "$.value[22].display.publisher", - "$.value[23].display.publisher", - "$.value[24].display.publisher", - "$.value[25].display.publisher", - "$.value[26].display.publisher", - "$.value[27].display.publisher", - "$.value[28].display.publisher", - "$.value[29].display.publisher", - "$.value[30].display.publisher", - "$.value[31].display.publisher", - "$.value[32].display.publisher", - "$.value[33].display.publisher", - "$.value[34].display.publisher", - "$.value[35].display.publisher", - "$.value[36].display.publisher", - "$.value[37].display.publisher", - "$.value[38].display.publisher", - "$.value[39].display.publisher", - "$.value[40].display.publisher", - "$.value[41].display.publisher", - "$.value[42].display.publisher", - "$.value[43].display.publisher", - "$.value[44].display.publisher", - "$.value[45].display.publisher", - "$.value[46].display.publisher", - "$.value[47].display.publisher", - "$.value[48].display.publisher", + "$['value'][1]['display']['publisher']", + "$['value'][2]['display']['publisher']", + "$['value'][3]['display']['publisher']", + "$['value'][4]['display']['publisher']", + "$['value'][5]['display']['publisher']", + "$['value'][6]['display']['publisher']", + "$['value'][7]['display']['publisher']", + "$['value'][8]['display']['publisher']", + "$['value'][9]['display']['publisher']", + "$['value'][10]['display']['publisher']", + "$['value'][11]['display']['publisher']", + "$['value'][12]['display']['publisher']", + "$['value'][13]['display']['publisher']", + "$['value'][14]['display']['publisher']", + "$['value'][15]['display']['publisher']", + "$['value'][16]['display']['publisher']", + "$['value'][17]['display']['publisher']", + "$['value'][18]['display']['publisher']", + "$['value'][19]['display']['publisher']", + "$['value'][20]['display']['publisher']", + "$['value'][21]['display']['publisher']", + "$['value'][22]['display']['publisher']", + "$['value'][23]['display']['publisher']", + "$['value'][24]['display']['publisher']", + "$['value'][25]['display']['publisher']", + "$['value'][26]['display']['publisher']", + "$['value'][27]['display']['publisher']", + "$['value'][28]['display']['publisher']", + "$['value'][29]['display']['publisher']", + "$['value'][30]['display']['publisher']", + "$['value'][31]['display']['publisher']", + "$['value'][32]['display']['publisher']", + "$['value'][33]['display']['publisher']", + "$['value'][34]['display']['publisher']", + "$['value'][35]['display']['publisher']", + "$['value'][36]['display']['publisher']", + "$['value'][37]['display']['publisher']", + "$['value'][38]['display']['publisher']", + "$['value'][39]['display']['publisher']", + "$['value'][40]['display']['publisher']", + "$['value'][41]['display']['publisher']", + "$['value'][42]['display']['publisher']", + "$['value'][43]['display']['publisher']", + "$['value'][44]['display']['publisher']", + "$['value'][45]['display']['publisher']", + "$['value'][46]['display']['publisher']", + "$['value'][47]['display']['publisher']", + "$['value'][48]['display']['publisher']", ], "similarPaths": Array [ - "value/1/display/publisher", - "value/2/display/publisher", - "value/3/display/publisher", - "value/4/display/publisher", - "value/5/display/publisher", - "value/6/display/publisher", - "value/7/display/publisher", - "value/8/display/publisher", - "value/9/display/publisher", - "value/10/display/publisher", - "value/11/display/publisher", - "value/12/display/publisher", - "value/13/display/publisher", - "value/14/display/publisher", - "value/15/display/publisher", - "value/16/display/publisher", - "value/17/display/publisher", - "value/18/display/publisher", - "value/19/display/publisher", - "value/20/display/publisher", - "value/21/display/publisher", - "value/22/display/publisher", - "value/23/display/publisher", - "value/24/display/publisher", - "value/25/display/publisher", - "value/26/display/publisher", - "value/27/display/publisher", - "value/28/display/publisher", - "value/29/display/publisher", - "value/30/display/publisher", - "value/31/display/publisher", - "value/32/display/publisher", - "value/33/display/publisher", - "value/34/display/publisher", - "value/35/display/publisher", - "value/36/display/publisher", - "value/37/display/publisher", - "value/38/display/publisher", - "value/39/display/publisher", - "value/40/display/publisher", - "value/41/display/publisher", - "value/42/display/publisher", - "value/43/display/publisher", - "value/44/display/publisher", - "value/45/display/publisher", - "value/46/display/publisher", - "value/47/display/publisher", - "value/48/display/publisher", + "$/value/1/display/publisher", + "$/value/2/display/publisher", + "$/value/3/display/publisher", + "$/value/4/display/publisher", + "$/value/5/display/publisher", + "$/value/6/display/publisher", + "$/value/7/display/publisher", + "$/value/8/display/publisher", + "$/value/9/display/publisher", + "$/value/10/display/publisher", + "$/value/11/display/publisher", + "$/value/12/display/publisher", + "$/value/13/display/publisher", + "$/value/14/display/publisher", + "$/value/15/display/publisher", + "$/value/16/display/publisher", + "$/value/17/display/publisher", + "$/value/18/display/publisher", + "$/value/19/display/publisher", + "$/value/20/display/publisher", + "$/value/21/display/publisher", + "$/value/22/display/publisher", + "$/value/23/display/publisher", + "$/value/24/display/publisher", + "$/value/25/display/publisher", + "$/value/26/display/publisher", + "$/value/27/display/publisher", + "$/value/28/display/publisher", + "$/value/29/display/publisher", + "$/value/30/display/publisher", + "$/value/31/display/publisher", + "$/value/32/display/publisher", + "$/value/33/display/publisher", + "$/value/34/display/publisher", + "$/value/35/display/publisher", + "$/value/36/display/publisher", + "$/value/37/display/publisher", + "$/value/38/display/publisher", + "$/value/39/display/publisher", + "$/value/40/display/publisher", + "$/value/41/display/publisher", + "$/value/42/display/publisher", + "$/value/43/display/publisher", + "$/value/44/display/publisher", + "$/value/45/display/publisher", + "$/value/46/display/publisher", + "$/value/47/display/publisher", + "$/value/48/display/publisher", ], "title": "#/definitions/Operation/properties/display", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/operations_API.json", @@ -78244,116 +78836,116 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.value[0].properties", + "jsonPath": "$['value'][0]['properties']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/examples/OperationList.json", "message": "Additional properties not allowed: properties", "params": Array [ "properties", ], - "path": "value/0/properties", + "path": "$/value/0/properties", "position": Object { "column": 18, "line": 82, }, "similarJsonPaths": Array [ - "$.value[1].properties", - "$.value[2].properties", - "$.value[3].properties", - "$.value[4].properties", - "$.value[5].properties", - "$.value[6].properties", - "$.value[7].properties", - "$.value[8].properties", - "$.value[9].properties", - "$.value[10].properties", - "$.value[11].properties", - "$.value[12].properties", - "$.value[13].properties", - "$.value[14].properties", - "$.value[15].properties", - "$.value[16].properties", - "$.value[17].properties", - "$.value[18].properties", - "$.value[19].properties", - "$.value[20].properties", - "$.value[21].properties", - "$.value[22].properties", - "$.value[23].properties", - "$.value[24].properties", - "$.value[25].properties", - "$.value[26].properties", - "$.value[27].properties", - "$.value[28].properties", - "$.value[29].properties", - "$.value[30].properties", - "$.value[31].properties", - "$.value[32].properties", - "$.value[33].properties", - "$.value[34].properties", - "$.value[35].properties", - "$.value[36].properties", - "$.value[37].properties", - "$.value[38].properties", - "$.value[39].properties", - "$.value[40].properties", - "$.value[41].properties", - "$.value[42].properties", - "$.value[43].properties", - "$.value[44].properties", - "$.value[45].properties", - "$.value[46].properties", - "$.value[47].properties", - "$.value[48].properties", + "$['value'][1]['properties']", + "$['value'][2]['properties']", + "$['value'][3]['properties']", + "$['value'][4]['properties']", + "$['value'][5]['properties']", + "$['value'][6]['properties']", + "$['value'][7]['properties']", + "$['value'][8]['properties']", + "$['value'][9]['properties']", + "$['value'][10]['properties']", + "$['value'][11]['properties']", + "$['value'][12]['properties']", + "$['value'][13]['properties']", + "$['value'][14]['properties']", + "$['value'][15]['properties']", + "$['value'][16]['properties']", + "$['value'][17]['properties']", + "$['value'][18]['properties']", + "$['value'][19]['properties']", + "$['value'][20]['properties']", + "$['value'][21]['properties']", + "$['value'][22]['properties']", + "$['value'][23]['properties']", + "$['value'][24]['properties']", + "$['value'][25]['properties']", + "$['value'][26]['properties']", + "$['value'][27]['properties']", + "$['value'][28]['properties']", + "$['value'][29]['properties']", + "$['value'][30]['properties']", + "$['value'][31]['properties']", + "$['value'][32]['properties']", + "$['value'][33]['properties']", + "$['value'][34]['properties']", + "$['value'][35]['properties']", + "$['value'][36]['properties']", + "$['value'][37]['properties']", + "$['value'][38]['properties']", + "$['value'][39]['properties']", + "$['value'][40]['properties']", + "$['value'][41]['properties']", + "$['value'][42]['properties']", + "$['value'][43]['properties']", + "$['value'][44]['properties']", + "$['value'][45]['properties']", + "$['value'][46]['properties']", + "$['value'][47]['properties']", + "$['value'][48]['properties']", ], "similarPaths": Array [ - "value/1/properties", - "value/2/properties", - "value/3/properties", - "value/4/properties", - "value/5/properties", - "value/6/properties", - "value/7/properties", - "value/8/properties", - "value/9/properties", - "value/10/properties", - "value/11/properties", - "value/12/properties", - "value/13/properties", - "value/14/properties", - "value/15/properties", - "value/16/properties", - "value/17/properties", - "value/18/properties", - "value/19/properties", - "value/20/properties", - "value/21/properties", - "value/22/properties", - "value/23/properties", - "value/24/properties", - "value/25/properties", - "value/26/properties", - "value/27/properties", - "value/28/properties", - "value/29/properties", - "value/30/properties", - "value/31/properties", - "value/32/properties", - "value/33/properties", - "value/34/properties", - "value/35/properties", - "value/36/properties", - "value/37/properties", - "value/38/properties", - "value/39/properties", - "value/40/properties", - "value/41/properties", - "value/42/properties", - "value/43/properties", - "value/44/properties", - "value/45/properties", - "value/46/properties", - "value/47/properties", - "value/48/properties", + "$/value/1/properties", + "$/value/2/properties", + "$/value/3/properties", + "$/value/4/properties", + "$/value/5/properties", + "$/value/6/properties", + "$/value/7/properties", + "$/value/8/properties", + "$/value/9/properties", + "$/value/10/properties", + "$/value/11/properties", + "$/value/12/properties", + "$/value/13/properties", + "$/value/14/properties", + "$/value/15/properties", + "$/value/16/properties", + "$/value/17/properties", + "$/value/18/properties", + "$/value/19/properties", + "$/value/20/properties", + "$/value/21/properties", + "$/value/22/properties", + "$/value/23/properties", + "$/value/24/properties", + "$/value/25/properties", + "$/value/26/properties", + "$/value/27/properties", + "$/value/28/properties", + "$/value/29/properties", + "$/value/30/properties", + "$/value/31/properties", + "$/value/32/properties", + "$/value/33/properties", + "$/value/34/properties", + "$/value/35/properties", + "$/value/36/properties", + "$/value/37/properties", + "$/value/38/properties", + "$/value/39/properties", + "$/value/40/properties", + "$/value/41/properties", + "$/value/42/properties", + "$/value/43/properties", + "$/value/44/properties", + "$/value/45/properties", + "$/value/46/properties", + "$/value/47/properties", + "$/value/48/properties", ], "title": "#/definitions/Operation", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/monitor/resource-manager/Microsoft.Insights/stable/2015-04-01/operations_API.json", @@ -78387,13 +78979,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.lastUpdatedTime", + "jsonPath": "$['properties']['lastUpdatedTime']", "message": "ReadOnly property \`\\"lastUpdatedTime\\": \\"2016-11-23T21:23:52.0221265Z\\"\`, cannot be sent in the request.", "params": Array [ "lastUpdatedTime", "2016-11-23T21:23:52.0221265Z", ], - "path": "properties/lastUpdatedTime", + "path": "$/properties/lastUpdatedTime", "position": Object { "column": 28, "line": 592, @@ -78447,13 +79039,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.lastUpdatedTime", + "jsonPath": "$['properties']['lastUpdatedTime']", "message": "ReadOnly property \`\\"lastUpdatedTime\\": \\"2016-11-23T21:23:52.0221265Z\\"\`, cannot be sent in the request.", "params": Array [ "lastUpdatedTime", "2016-11-23T21:23:52.0221265Z", ], - "path": "properties/lastUpdatedTime", + "path": "$/properties/lastUpdatedTime", "position": Object { "column": 28, "line": 592, @@ -78919,13 +79511,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.provisioningState", + "jsonPath": "$['properties']['provisioningState']", "message": "ReadOnly property \`\\"provisioningState\\": \\"Succeeded\\"\`, cannot be sent in the request.", "params": Array [ "provisioningState", "Succeeded", ], - "path": "properties/provisioningState", + "path": "$/properties/provisioningState", "position": Object { "column": 30, "line": 570, @@ -78947,13 +79539,13 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.lastUpdatedTime", + "jsonPath": "$['properties']['lastUpdatedTime']", "message": "ReadOnly property \`\\"lastUpdatedTime\\": \\"2017-06-23T21:23:52.0221265Z\\"\`, cannot be sent in the request.", "params": Array [ "lastUpdatedTime", "2017-06-23T21:23:52.0221265Z", ], - "path": "properties/lastUpdatedTime", + "path": "$/properties/lastUpdatedTime", "position": Object { "column": 28, "line": 564, @@ -78975,7 +79567,7 @@ Array [ "directives": Object { "R3016": ".*", }, - "jsonPath": "$.properties.displayName", + "jsonPath": "$['properties']['displayName']", "jsonPosition": Object { "column": 23, "line": 37, @@ -78985,7 +79577,7 @@ Array [ "params": Array [ "displayName", ], - "path": "properties/displayName", + "path": "$/properties/displayName", "position": Object { "column": 22, "line": 545, @@ -79166,12 +79758,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "NetApp account resource", "directives": Object {}, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "message": "Missing required property: properties", "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 22, "line": 1080, @@ -79191,12 +79783,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "NetApp account resource", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "message": "Missing required property: location", "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 22, "line": 1080, @@ -79216,12 +79808,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Capacity pool resource", "directives": Object {}, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "message": "Missing required property: properties", "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 21, "line": 1227, @@ -79241,12 +79833,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Capacity pool resource", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "message": "Missing required property: location", "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 21, "line": 1227, @@ -79266,12 +79858,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Volume resource", "directives": Object {}, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "message": "Missing required property: properties", "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 15, "line": 1423, @@ -79291,12 +79883,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Volume resource", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "message": "Missing required property: location", "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 15, "line": 1423, @@ -79316,12 +79908,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Snapshot of a Volume", "directives": Object {}, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "message": "Missing required property: properties", "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 17, "line": 1820, @@ -79341,12 +79933,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Snapshot of a Volume", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "message": "Missing required property: location", "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 17, "line": 1820, @@ -79529,13 +80121,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the resource that is unique within a resource group. This name can be used to access the resource.", "directives": Object {}, - "jsonPath": "$.properties.rules[0].name", + "jsonPath": "$['properties']['rules'][0]['name']", "message": "ReadOnly property \`\\"name\\": \\"ruleName\\"\`, cannot be sent in the request.", "params": Array [ "name", "ruleName", ], - "path": "properties/rules/0/name", + "path": "$/properties/rules/0/name", "position": Object { "column": 25, "line": 623, @@ -79555,13 +80147,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "A collection of references to express route circuit peerings.", "directives": Object {}, - "jsonPath": "$.properties.peerings", + "jsonPath": "$['properties']['peerings']", "message": "ReadOnly property \`\\"peerings\\": \`, cannot be sent in the request.", "params": Array [ "peerings", Array [], ], - "path": "properties/peerings", + "path": "$/properties/peerings", "position": Object { "column": 29, "line": 692, @@ -79581,13 +80173,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the resource that is unique within a resource group. This name can be used to access the resource.", "directives": Object {}, - "jsonPath": "$.properties.rules[0].name", + "jsonPath": "$['properties']['rules'][0]['name']", "message": "ReadOnly property \`\\"name\\": \\"ruleName\\"\`, cannot be sent in the request.", "params": Array [ "name", "ruleName", ], - "path": "properties/rules/0/name", + "path": "$/properties/rules/0/name", "position": Object { "column": 25, "line": 623, @@ -79674,13 +80266,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the resource that is unique within a resource group. This name can be used to access the resource.", "directives": Object {}, - "jsonPath": "$.properties.rules[0].name", + "jsonPath": "$['properties']['rules'][0]['name']", "message": "ReadOnly property \`\\"name\\": \\"ruleName\\"\`, cannot be sent in the request.", "params": Array [ "name", "ruleName", ], - "path": "properties/rules/0/name", + "path": "$/properties/rules/0/name", "position": Object { "column": 25, "line": 623, @@ -79700,13 +80292,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "A collection of references to express route circuit peerings.", "directives": Object {}, - "jsonPath": "$.properties.peerings", + "jsonPath": "$['properties']['peerings']", "message": "ReadOnly property \`\\"peerings\\": \`, cannot be sent in the request.", "params": Array [ "peerings", Array [], ], - "path": "properties/peerings", + "path": "$/properties/peerings", "position": Object { "column": 29, "line": 692, @@ -79726,13 +80318,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the resource that is unique within a resource group. This name can be used to access the resource.", "directives": Object {}, - "jsonPath": "$.properties.rules[0].name", + "jsonPath": "$['properties']['rules'][0]['name']", "message": "ReadOnly property \`\\"name\\": \\"ruleName\\"\`, cannot be sent in the request.", "params": Array [ "name", "ruleName", ], - "path": "properties/rules/0/name", + "path": "$/properties/rules/0/name", "position": Object { "column": 25, "line": 623, @@ -79854,18 +80446,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 963, @@ -79885,18 +80477,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 939, @@ -79916,18 +80508,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1042, @@ -79947,18 +80539,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1179, @@ -79978,18 +80570,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 963, @@ -80009,18 +80601,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 939, @@ -80040,18 +80632,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1042, @@ -80071,18 +80663,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1179, @@ -80125,12 +80717,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Public IP address properties.", "directives": Object {}, - "jsonPath": "$.properties.location", + "jsonPath": "$['properties']['location']", "message": "Additional properties not allowed: location", "params": Array [ "location", ], - "path": "properties/location", + "path": "$/properties/location", "position": Object { "column": 40, "line": 275, @@ -80256,18 +80848,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 941, @@ -80287,18 +80879,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 917, @@ -80318,18 +80910,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1020, @@ -80349,18 +80941,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1161, @@ -80380,18 +80972,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 941, @@ -80411,18 +81003,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 917, @@ -80442,18 +81034,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1020, @@ -80473,18 +81065,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1161, @@ -80504,18 +81096,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 941, @@ -80535,18 +81127,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 917, @@ -80566,18 +81158,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1020, @@ -80597,18 +81189,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1161, @@ -80758,18 +81350,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 991, @@ -80789,18 +81381,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 967, @@ -80820,18 +81412,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1070, @@ -80851,18 +81443,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1202, @@ -80882,18 +81474,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 991, @@ -80913,18 +81505,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 967, @@ -80944,18 +81536,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1070, @@ -80975,18 +81567,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1202, @@ -81006,18 +81598,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 991, @@ -81037,18 +81629,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 967, @@ -81068,18 +81660,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1070, @@ -81099,18 +81691,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1202, @@ -81264,18 +81856,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 991, @@ -81295,18 +81887,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 967, @@ -81326,18 +81918,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1070, @@ -81357,18 +81949,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1202, @@ -81388,18 +81980,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 991, @@ -81419,18 +82011,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 967, @@ -81450,18 +82042,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1070, @@ -81481,18 +82073,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1202, @@ -81512,18 +82104,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 991, @@ -81543,18 +82135,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 967, @@ -81574,18 +82166,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1070, @@ -81605,18 +82197,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1202, @@ -81770,18 +82362,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 992, @@ -81801,18 +82393,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 968, @@ -81832,18 +82424,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1071, @@ -81863,18 +82455,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1203, @@ -81894,18 +82486,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 992, @@ -81925,18 +82517,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 968, @@ -81956,18 +82548,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1071, @@ -81987,18 +82579,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1203, @@ -82018,18 +82610,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 992, @@ -82049,18 +82641,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 968, @@ -82080,18 +82672,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1071, @@ -82111,18 +82703,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1203, @@ -82225,18 +82817,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 992, @@ -82256,18 +82848,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 968, @@ -82287,18 +82879,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1071, @@ -82318,18 +82910,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1203, @@ -82349,18 +82941,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 992, @@ -82380,18 +82972,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 968, @@ -82411,18 +83003,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1071, @@ -82442,18 +83034,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1203, @@ -82473,18 +83065,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 992, @@ -82504,18 +83096,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 968, @@ -82535,18 +83127,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1071, @@ -82566,18 +83158,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1203, @@ -82735,13 +83327,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The Azure ASN.", "directives": Object {}, - "jsonPath": "$.properties.azureASN", + "jsonPath": "$['properties']['azureASN']", "message": "ReadOnly property \`\\"azureASN\\": 12076\`, cannot be sent in the request.", "params": Array [ "azureASN", 12076, ], - "path": "properties/azureASN", + "path": "$/properties/azureASN", "position": Object { "column": 21, "line": 820, @@ -82768,18 +83360,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 992, @@ -82799,18 +83391,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 968, @@ -82830,18 +83422,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1071, @@ -82861,18 +83453,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1203, @@ -82892,18 +83484,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 992, @@ -82923,18 +83515,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 968, @@ -82954,18 +83546,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1071, @@ -82985,18 +83577,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1203, @@ -83016,18 +83608,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 992, @@ -83047,18 +83639,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 968, @@ -83078,18 +83670,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1071, @@ -83109,18 +83701,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1203, @@ -83239,7 +83831,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "A common class for general resource information", "directives": Object {}, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "jsonPosition": Object { "column": 22, "line": 15, @@ -83249,7 +83841,7 @@ Array [ "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 30, "line": 1904, @@ -83304,9 +83896,9 @@ Array [ "code": "INVALID_TYPE", "details": Object { "code": "INVALID_TYPE", - "jsonPath": "", + "jsonPath": "$", "message": "Expected type string but found type object", - "path": "", + "path": "$", }, "operationId": "VirtualNetworkGateways_Generatevpnclientpackage", "responseCode": "200", @@ -83339,9 +83931,9 @@ Array [ "code": "INVALID_TYPE", "details": Object { "code": "INVALID_TYPE", - "jsonPath": "", + "jsonPath": "$", "message": "Expected type string but found type object", - "path": "", + "path": "$", }, "operationId": "VirtualNetworkGateways_GenerateVpnProfile", "responseCode": "200", @@ -83369,9 +83961,9 @@ Array [ "code": "INVALID_TYPE", "details": Object { "code": "INVALID_TYPE", - "jsonPath": "", + "jsonPath": "$", "message": "Expected type string but found type object", - "path": "", + "path": "$", }, "operationId": "VirtualNetworkGateways_GetVpnProfilePackageUrl", "responseCode": "200", @@ -83415,9 +84007,9 @@ Array [ "code": "INVALID_TYPE", "details": Object { "code": "INVALID_TYPE", - "jsonPath": "", + "jsonPath": "$", "message": "Expected type string but found type object", - "path": "", + "path": "$", }, "operationId": "VirtualNetworkGateways_SupportedVpnDevices", "responseCode": "200", @@ -83503,9 +84095,9 @@ Array [ "code": "INVALID_TYPE", "details": Object { "code": "INVALID_TYPE", - "jsonPath": "", + "jsonPath": "$", "message": "Expected type string but found type object", - "path": "", + "path": "$", }, "operationId": "VirtualNetworkGateways_VpnDeviceConfigurationScript", "responseCode": "200", @@ -83519,7 +84111,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "A common class for general resource information", "directives": Object {}, - "jsonPath": "$.properties.localNetworkGateway2.properties.localNetworkGateway2.properties", + "jsonPath": "$['properties']['localNetworkGateway2']['properties']['localNetworkGateway2']['properties']", "jsonPosition": Object { "column": 45, "line": 114, @@ -83529,7 +84121,7 @@ Array [ "params": Array [ "properties", ], - "path": "properties/localNetworkGateway2/properties/localNetworkGateway2/properties", + "path": "$/properties/localNetworkGateway2/properties/localNetworkGateway2/properties", "position": Object { "column": 28, "line": 2512, @@ -83549,7 +84141,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "A common class for general resource information", "directives": Object {}, - "jsonPath": "$.properties.virtualNetworkGateway1.properties", + "jsonPath": "$['properties']['virtualNetworkGateway1']['properties']", "jsonPosition": Object { "column": 47, "line": 111, @@ -83559,7 +84151,7 @@ Array [ "params": Array [ "properties", ], - "path": "properties/virtualNetworkGateway1/properties", + "path": "$/properties/virtualNetworkGateway1/properties", "position": Object { "column": 30, "line": 1904, @@ -83579,7 +84171,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "A common class for general resource information", "directives": Object {}, - "jsonPath": "$.properties.localNetworkGateway2.properties.localNetworkGateway2.properties", + "jsonPath": "$['properties']['localNetworkGateway2']['properties']['localNetworkGateway2']['properties']", "jsonPosition": Object { "column": 45, "line": 87, @@ -83589,7 +84181,7 @@ Array [ "params": Array [ "properties", ], - "path": "properties/localNetworkGateway2/properties/localNetworkGateway2/properties", + "path": "$/properties/localNetworkGateway2/properties/localNetworkGateway2/properties", "position": Object { "column": 28, "line": 2512, @@ -83609,7 +84201,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "A common class for general resource information", "directives": Object {}, - "jsonPath": "$.properties.virtualNetworkGateway1.properties", + "jsonPath": "$['properties']['virtualNetworkGateway1']['properties']", "jsonPosition": Object { "column": 47, "line": 84, @@ -83619,7 +84211,7 @@ Array [ "params": Array [ "properties", ], - "path": "properties/virtualNetworkGateway1/properties", + "path": "$/properties/virtualNetworkGateway1/properties", "position": Object { "column": 30, "line": 1904, @@ -83639,7 +84231,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "A common class for general resource information", "directives": Object {}, - "jsonPath": "$.properties.localNetworkGateway2.properties.localNetworkGateway2.properties", + "jsonPath": "$['properties']['localNetworkGateway2']['properties']['localNetworkGateway2']['properties']", "jsonPosition": Object { "column": 45, "line": 22, @@ -83649,7 +84241,7 @@ Array [ "params": Array [ "properties", ], - "path": "properties/localNetworkGateway2/properties/localNetworkGateway2/properties", + "path": "$/properties/localNetworkGateway2/properties/localNetworkGateway2/properties", "position": Object { "column": 28, "line": 2512, @@ -83669,7 +84261,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "A common class for general resource information", "directives": Object {}, - "jsonPath": "$.properties.virtualNetworkGateway1.properties", + "jsonPath": "$['properties']['virtualNetworkGateway1']['properties']", "jsonPosition": Object { "column": 47, "line": 19, @@ -83679,7 +84271,7 @@ Array [ "params": Array [ "properties", ], - "path": "properties/virtualNetworkGateway1/properties", + "path": "$/properties/virtualNetworkGateway1/properties", "position": Object { "column": 30, "line": 1904, @@ -83747,12 +84339,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Response for GetConnectionSharedKey API service call", "directives": Object {}, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "message": "Additional properties not allowed: properties", "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 28, "line": 2214, @@ -83772,12 +84364,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Response for GetConnectionSharedKey API service call", "directives": Object {}, - "jsonPath": "$.value", + "jsonPath": "$['value']", "message": "Missing required property: value", "params": Array [ "value", ], - "path": "value", + "path": "$/value", "position": Object { "column": 28, "line": 2214, @@ -83797,7 +84389,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Response for GetConnectionSharedKey API service call", "directives": Object {}, - "jsonPath": "$.value", + "jsonPath": "$['value']", "jsonPosition": Object { "column": 22, "line": 15, @@ -83807,7 +84399,7 @@ Array [ "params": Array [ "value", ], - "path": "value", + "path": "$/value", "position": Object { "column": 28, "line": 2214, @@ -83827,7 +84419,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Response for GetConnectionSharedKey API service call", "directives": Object {}, - "jsonPath": "$.value", + "jsonPath": "$['value']", "jsonPosition": Object { "column": 22, "line": 20, @@ -83837,7 +84429,7 @@ Array [ "params": Array [ "value", ], - "path": "value", + "path": "$/value", "position": Object { "column": 28, "line": 2214, @@ -83857,7 +84449,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Response for GetConnectionSharedKey API service call", "directives": Object {}, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "jsonPosition": Object { "column": 22, "line": 10, @@ -83867,7 +84459,7 @@ Array [ "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 28, "line": 2214, @@ -83887,7 +84479,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Response for GetConnectionSharedKey API service call", "directives": Object {}, - "jsonPath": "$.value", + "jsonPath": "$['value']", "jsonPosition": Object { "column": 22, "line": 10, @@ -83897,7 +84489,7 @@ Array [ "params": Array [ "value", ], - "path": "value", + "path": "$/value", "position": Object { "column": 28, "line": 2214, @@ -83917,22 +84509,22 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "A common class for general resource information", "directives": Object {}, - "jsonPath": "$.value[0].properties.virtualNetworkGateway1.properties", + "jsonPath": "$['value'][0]['properties']['virtualNetworkGateway1']['properties']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/network/resource-manager/Microsoft.Network/stable/2018-02-01/examples/VirtualNetworkGatewayConnectionsList.json", "message": "Missing required property: properties", "params": Array [ "properties", ], - "path": "value/0/properties/virtualNetworkGateway1/properties", + "path": "$/value/0/properties/virtualNetworkGateway1/properties", "position": Object { "column": 30, "line": 1904, }, "similarJsonPaths": Array [ - "$.value[1].properties.virtualNetworkGateway1.properties", + "$['value'][1]['properties']['virtualNetworkGateway1']['properties']", ], "similarPaths": Array [ - "value/1/properties/virtualNetworkGateway1/properties", + "$/value/1/properties/virtualNetworkGateway1/properties", ], "title": "#/definitions/VirtualNetworkGateway", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/network/resource-manager/Microsoft.Network/stable/2018-02-01/virtualNetworkGateway.json", @@ -83949,22 +84541,22 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "A common class for general resource information", "directives": Object {}, - "jsonPath": "$.value[0].properties.localNetworkGateway2.properties.localNetworkGateway2.properties", + "jsonPath": "$['value'][0]['properties']['localNetworkGateway2']['properties']['localNetworkGateway2']['properties']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/network/resource-manager/Microsoft.Network/stable/2018-02-01/examples/VirtualNetworkGatewayConnectionsList.json", "message": "Missing required property: properties", "params": Array [ "properties", ], - "path": "value/0/properties/localNetworkGateway2/properties/localNetworkGateway2/properties", + "path": "$/value/0/properties/localNetworkGateway2/properties/localNetworkGateway2/properties", "position": Object { "column": 28, "line": 2512, }, "similarJsonPaths": Array [ - "$.value[1].properties.localNetworkGateway2.properties.localNetworkGateway2.properties", + "$['value'][1]['properties']['localNetworkGateway2']['properties']['localNetworkGateway2']['properties']", ], "similarPaths": Array [ - "value/1/properties/localNetworkGateway2/properties/localNetworkGateway2/properties", + "$/value/1/properties/localNetworkGateway2/properties/localNetworkGateway2/properties", ], "title": "#/definitions/LocalNetworkGateway", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/network/resource-manager/Microsoft.Network/stable/2018-02-01/virtualNetworkGateway.json", @@ -83981,12 +84573,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The virtual network connection reset shared key", "directives": Object {}, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "message": "Additional properties not allowed: properties", "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 33, "line": 2199, @@ -84006,12 +84598,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "The virtual network connection reset shared key", "directives": Object {}, - "jsonPath": "$.keyLength", + "jsonPath": "$['keyLength']", "message": "Missing required property: keyLength", "params": Array [ "keyLength", ], - "path": "keyLength", + "path": "$/keyLength", "position": Object { "column": 33, "line": 2199, @@ -84031,7 +84623,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The virtual network connection reset shared key", "directives": Object {}, - "jsonPath": "$.value", + "jsonPath": "$['value']", "jsonPosition": Object { "column": 22, "line": 15, @@ -84041,7 +84633,7 @@ Array [ "params": Array [ "value", ], - "path": "value", + "path": "$/value", "position": Object { "column": 33, "line": 2199, @@ -84061,7 +84653,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "The virtual network connection reset shared key", "directives": Object {}, - "jsonPath": "$.keyLength", + "jsonPath": "$['keyLength']", "jsonPosition": Object { "column": 22, "line": 15, @@ -84071,7 +84663,7 @@ Array [ "params": Array [ "keyLength", ], - "path": "keyLength", + "path": "$/keyLength", "position": Object { "column": 33, "line": 2199, @@ -84444,13 +85036,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The Azure ASN.", "directives": Object {}, - "jsonPath": "$.properties.azureASN", + "jsonPath": "$['properties']['azureASN']", "message": "ReadOnly property \`\\"azureASN\\": 12076\`, cannot be sent in the request.", "params": Array [ "azureASN", 12076, ], - "path": "properties/azureASN", + "path": "$/properties/azureASN", "position": Object { "column": 21, "line": 818, @@ -84477,18 +85069,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 990, @@ -84508,18 +85100,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 966, @@ -84539,18 +85131,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1069, @@ -84570,18 +85162,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1201, @@ -84601,18 +85193,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 990, @@ -84632,18 +85224,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 966, @@ -84663,18 +85255,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1069, @@ -84694,18 +85286,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1201, @@ -84725,18 +85317,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 990, @@ -84756,18 +85348,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 966, @@ -84787,18 +85379,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1069, @@ -84818,18 +85410,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1201, @@ -84916,7 +85508,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "A common class for general resource information", "directives": Object {}, - "jsonPath": "$.properties.localNetworkGateway2.properties.localNetworkGateway2.properties", + "jsonPath": "$['properties']['localNetworkGateway2']['properties']['localNetworkGateway2']['properties']", "jsonPosition": Object { "column": 35, "line": 31, @@ -84926,7 +85518,7 @@ Array [ "params": Array [ "properties", ], - "path": "properties/localNetworkGateway2/properties/localNetworkGateway2/properties", + "path": "$/properties/localNetworkGateway2/properties/localNetworkGateway2/properties", "position": Object { "column": 28, "line": 2535, @@ -84946,7 +85538,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "A common class for general resource information", "directives": Object {}, - "jsonPath": "$.properties.virtualNetworkGateway1.properties", + "jsonPath": "$['properties']['virtualNetworkGateway1']['properties']", "jsonPosition": Object { "column": 37, "line": 28, @@ -84956,7 +85548,7 @@ Array [ "params": Array [ "properties", ], - "path": "properties/virtualNetworkGateway1/properties", + "path": "$/properties/virtualNetworkGateway1/properties", "position": Object { "column": 30, "line": 1922, @@ -84983,13 +85575,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name.", "directives": Object {}, - "jsonPath": "$.properties.connections[0].name", + "jsonPath": "$['properties']['connections'][0]['name']", "message": "ReadOnly property \`\\"name\\": \\"vpnConnection1\\"\`, cannot be sent in the request.", "params": Array [ "name", "vpnConnection1", ], - "path": "properties/connections/0/name", + "path": "$/properties/connections/0/name", "position": Object { "column": 17, "line": 101, @@ -85394,13 +85986,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The Azure ASN.", "directives": Object {}, - "jsonPath": "$.properties.azureASN", + "jsonPath": "$['properties']['azureASN']", "message": "ReadOnly property \`\\"azureASN\\": 12076\`, cannot be sent in the request.", "params": Array [ "azureASN", 12076, ], - "path": "properties/azureASN", + "path": "$/properties/azureASN", "position": Object { "column": 21, "line": 818, @@ -85427,18 +86019,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 990, @@ -85458,18 +86050,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 966, @@ -85489,18 +86081,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1069, @@ -85520,18 +86112,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1201, @@ -85551,18 +86143,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 990, @@ -85582,18 +86174,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 966, @@ -85613,18 +86205,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1069, @@ -85644,18 +86236,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1201, @@ -85675,18 +86267,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 990, @@ -85706,18 +86298,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 966, @@ -85737,18 +86329,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1069, @@ -85768,18 +86360,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1201, @@ -85866,7 +86458,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "A common class for general resource information", "directives": Object {}, - "jsonPath": "$.properties.localNetworkGateway2.properties.localNetworkGateway2.properties", + "jsonPath": "$['properties']['localNetworkGateway2']['properties']['localNetworkGateway2']['properties']", "jsonPosition": Object { "column": 35, "line": 31, @@ -85876,7 +86468,7 @@ Array [ "params": Array [ "properties", ], - "path": "properties/localNetworkGateway2/properties/localNetworkGateway2/properties", + "path": "$/properties/localNetworkGateway2/properties/localNetworkGateway2/properties", "position": Object { "column": 28, "line": 2578, @@ -85896,7 +86488,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "A common class for general resource information", "directives": Object {}, - "jsonPath": "$.properties.virtualNetworkGateway1.properties", + "jsonPath": "$['properties']['virtualNetworkGateway1']['properties']", "jsonPosition": Object { "column": 37, "line": 28, @@ -85906,7 +86498,7 @@ Array [ "params": Array [ "properties", ], - "path": "properties/virtualNetworkGateway1/properties", + "path": "$/properties/virtualNetworkGateway1/properties", "position": Object { "column": 30, "line": 1965, @@ -85933,13 +86525,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name.", "directives": Object {}, - "jsonPath": "$.properties.connections[0].name", + "jsonPath": "$['properties']['connections'][0]['name']", "message": "ReadOnly property \`\\"name\\": \\"vpnConnection1\\"\`, cannot be sent in the request.", "params": Array [ "name", "vpnConnection1", ], - "path": "properties/connections/0/name", + "path": "$/properties/connections/0/name", "position": Object { "column": 17, "line": 101, @@ -86344,13 +86936,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The Azure ASN.", "directives": Object {}, - "jsonPath": "$.properties.azureASN", + "jsonPath": "$['properties']['azureASN']", "message": "ReadOnly property \`\\"azureASN\\": 12076\`, cannot be sent in the request.", "params": Array [ "azureASN", 12076, ], - "path": "properties/azureASN", + "path": "$/properties/azureASN", "position": Object { "column": 21, "line": 818, @@ -86377,18 +86969,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 990, @@ -86408,18 +87000,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 966, @@ -86439,18 +87031,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1073, @@ -86470,18 +87062,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1209, @@ -86501,18 +87093,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 990, @@ -86532,18 +87124,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 966, @@ -86563,18 +87155,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1073, @@ -86594,18 +87186,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1209, @@ -86625,18 +87217,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 990, @@ -86656,18 +87248,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 966, @@ -86687,18 +87279,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1073, @@ -86718,18 +87310,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1209, @@ -86824,7 +87416,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "A common class for general resource information", "directives": Object {}, - "jsonPath": "$.properties.localNetworkGateway2.properties.localNetworkGateway2.properties", + "jsonPath": "$['properties']['localNetworkGateway2']['properties']['localNetworkGateway2']['properties']", "jsonPosition": Object { "column": 35, "line": 31, @@ -86834,7 +87426,7 @@ Array [ "params": Array [ "properties", ], - "path": "properties/localNetworkGateway2/properties/localNetworkGateway2/properties", + "path": "$/properties/localNetworkGateway2/properties/localNetworkGateway2/properties", "position": Object { "column": 28, "line": 2539, @@ -86854,7 +87446,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "A common class for general resource information", "directives": Object {}, - "jsonPath": "$.properties.virtualNetworkGateway1.properties", + "jsonPath": "$['properties']['virtualNetworkGateway1']['properties']", "jsonPosition": Object { "column": 37, "line": 28, @@ -86864,7 +87456,7 @@ Array [ "params": Array [ "properties", ], - "path": "properties/virtualNetworkGateway1/properties", + "path": "$/properties/virtualNetworkGateway1/properties", "position": Object { "column": 30, "line": 1922, @@ -86891,13 +87483,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name.", "directives": Object {}, - "jsonPath": "$.properties.connections[0].name", + "jsonPath": "$['properties']['connections'][0]['name']", "message": "ReadOnly property \`\\"name\\": \\"vpnConnection1\\"\`, cannot be sent in the request.", "params": Array [ "name", "vpnConnection1", ], - "path": "properties/connections/0/name", + "path": "$/properties/connections/0/name", "position": Object { "column": 17, "line": 101, @@ -87310,13 +87902,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The Azure ASN.", "directives": Object {}, - "jsonPath": "$.properties.azureASN", + "jsonPath": "$['properties']['azureASN']", "message": "ReadOnly property \`\\"azureASN\\": 12076\`, cannot be sent in the request.", "params": Array [ "azureASN", 12076, ], - "path": "properties/azureASN", + "path": "$/properties/azureASN", "position": Object { "column": 21, "line": 818, @@ -87343,13 +87935,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Network/expressRouteGateways\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Network/expressRouteGateways", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 106, @@ -87369,13 +87961,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"gateway-2\\"\`, cannot be sent in the request.", "params": Array [ "name", "gateway-2", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 101, @@ -87426,18 +88018,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1085, @@ -87457,18 +88049,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 1061, @@ -87488,18 +88080,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1168, @@ -87519,18 +88111,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1304, @@ -87550,18 +88142,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1085, @@ -87581,18 +88173,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 1061, @@ -87612,18 +88204,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1168, @@ -87643,18 +88235,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1304, @@ -87674,18 +88266,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1085, @@ -87705,18 +88297,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 1061, @@ -87736,18 +88328,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1168, @@ -87767,18 +88359,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1304, @@ -88393,13 +88985,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The Azure ASN.", "directives": Object {}, - "jsonPath": "$.properties.azureASN", + "jsonPath": "$['properties']['azureASN']", "message": "ReadOnly property \`\\"azureASN\\": 12076\`, cannot be sent in the request.", "params": Array [ "azureASN", 12076, ], - "path": "properties/azureASN", + "path": "$/properties/azureASN", "position": Object { "column": 21, "line": 818, @@ -88426,13 +89018,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Network/expressRouteGateways\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Network/expressRouteGateways", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 106, @@ -88452,13 +89044,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"gateway-2\\"\`, cannot be sent in the request.", "params": Array [ "name", "gateway-2", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 101, @@ -88509,18 +89101,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1085, @@ -88540,18 +89132,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 1061, @@ -88571,18 +89163,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1168, @@ -88602,18 +89194,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1304, @@ -88633,18 +89225,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1085, @@ -88664,18 +89256,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 1061, @@ -88695,18 +89287,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1168, @@ -88726,18 +89318,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1304, @@ -88757,18 +89349,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1085, @@ -88788,18 +89380,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 1061, @@ -88819,18 +89411,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1168, @@ -88850,18 +89442,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1304, @@ -89480,13 +90072,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The Azure ASN.", "directives": Object {}, - "jsonPath": "$.properties.azureASN", + "jsonPath": "$['properties']['azureASN']", "message": "ReadOnly property \`\\"azureASN\\": 12076\`, cannot be sent in the request.", "params": Array [ "azureASN", 12076, ], - "path": "properties/azureASN", + "path": "$/properties/azureASN", "position": Object { "column": 21, "line": 818, @@ -89513,13 +90105,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Network/expressRouteGateways\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Network/expressRouteGateways", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 106, @@ -89539,13 +90131,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"gateway-2\\"\`, cannot be sent in the request.", "params": Array [ "name", "gateway-2", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 101, @@ -89580,18 +90172,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1085, @@ -89611,18 +90203,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 1061, @@ -89642,18 +90234,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1168, @@ -89673,18 +90265,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1304, @@ -89704,18 +90296,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1085, @@ -89735,18 +90327,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 1061, @@ -89766,18 +90358,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1168, @@ -89797,18 +90389,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1304, @@ -89828,18 +90420,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1085, @@ -89859,18 +90451,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 1061, @@ -89890,18 +90482,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1168, @@ -89921,18 +90513,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1304, @@ -90551,13 +91143,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The Azure ASN.", "directives": Object {}, - "jsonPath": "$.properties.azureASN", + "jsonPath": "$['properties']['azureASN']", "message": "ReadOnly property \`\\"azureASN\\": 12076\`, cannot be sent in the request.", "params": Array [ "azureASN", 12076, ], - "path": "properties/azureASN", + "path": "$/properties/azureASN", "position": Object { "column": 21, "line": 818, @@ -90584,13 +91176,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Network/expressRouteGateways\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Network/expressRouteGateways", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 106, @@ -90610,13 +91202,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"gateway-2\\"\`, cannot be sent in the request.", "params": Array [ "name", "gateway-2", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 101, @@ -90667,18 +91259,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1085, @@ -90698,18 +91290,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 1061, @@ -90729,18 +91321,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1168, @@ -90760,18 +91352,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1304, @@ -90791,18 +91383,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1085, @@ -90822,18 +91414,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 1061, @@ -90853,18 +91445,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1168, @@ -90884,18 +91476,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1304, @@ -90915,18 +91507,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1085, @@ -90946,18 +91538,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 1061, @@ -90977,18 +91569,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1168, @@ -91008,18 +91600,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1304, @@ -91642,13 +92234,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The Azure ASN.", "directives": Object {}, - "jsonPath": "$.properties.azureASN", + "jsonPath": "$['properties']['azureASN']", "message": "ReadOnly property \`\\"azureASN\\": 12076\`, cannot be sent in the request.", "params": Array [ "azureASN", 12076, ], - "path": "properties/azureASN", + "path": "$/properties/azureASN", "position": Object { "column": 21, "line": 828, @@ -91675,13 +92267,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Network/expressRouteGateways\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Network/expressRouteGateways", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 117, @@ -91701,13 +92293,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"gateway-2\\"\`, cannot be sent in the request.", "params": Array [ "name", "gateway-2", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 112, @@ -91742,18 +92334,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1097, @@ -91773,18 +92365,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 1073, @@ -91804,18 +92396,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1172, @@ -91835,18 +92427,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1309, @@ -91866,18 +92458,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1097, @@ -91897,18 +92489,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 1073, @@ -91928,18 +92520,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1172, @@ -91959,18 +92551,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1309, @@ -91990,18 +92582,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1097, @@ -92021,18 +92613,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Read only. Inbound rules URIs that use this frontend IP.", "directives": Object {}, - "jsonPath": "$.properties.frontendIPConfigurations[0][0].properties.inboundNatRules", + "jsonPath": "$['properties']['frontendIPConfigurations'][0][0]['properties']['inboundNatRules']", "message": "ReadOnly property \`\\"inboundNatRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "inboundNatRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/inboundNatRules/in-nat-rule", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/frontendIPConfigurations/0/0/properties/inboundNatRules", + "path": "$/properties/frontendIPConfigurations/0/0/properties/inboundNatRules", "position": Object { "column": 28, "line": 1073, @@ -92052,18 +92644,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets load balancing rules that use this backend address pool.", "directives": Object {}, - "jsonPath": "$.properties.backendAddressPools[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['backendAddressPools'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/backendAddressPools/0/0/properties/loadBalancingRules", + "path": "$/properties/backendAddressPools/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1172, @@ -92083,18 +92675,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The load balancer rules that use this probe.", "directives": Object {}, - "jsonPath": "$.properties.probes[0][0].properties.loadBalancingRules", + "jsonPath": "$['properties']['probes'][0][0]['properties']['loadBalancingRules']", "message": "ReadOnly property \`\\"loadBalancingRules\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "loadBalancingRules", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/loadBalancers/lb/loadBalancingRules/rulelb", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/probes/0/0/properties/loadBalancingRules", + "path": "$/properties/probes/0/0/properties/loadBalancingRules", "position": Object { "column": 31, "line": 1309, @@ -92121,18 +92713,18 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "An array of references to the subnets using this nat gateway resource.", "directives": Object {}, - "jsonPath": "$.properties.subnets", + "jsonPath": "$['properties']['subnets']", "message": "ReadOnly property \`\\"subnets\\": [object Object]\`, cannot be sent in the request.", "params": Array [ "subnets", Array [ Object { "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/subnet1", - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/subnets", + "path": "$/properties/subnets", "position": Object { "column": 20, "line": 355, @@ -92568,7 +93160,7 @@ Array [ "code": "INVALID_TYPE", "description": "value for the parameter. In Jtoken ", "directives": Object {}, - "jsonPath": "$.value[0].properties.parameters[0].parameters[0].value", + "jsonPath": "$['value'][0]['properties']['parameters'][0]['parameters'][0]['value']", "jsonPosition": Object { "column": 25, "line": 9, @@ -92579,7 +93171,7 @@ Array [ "string", "object", ], - "path": "value/0/properties/parameters/0/parameters/0/value", + "path": "$/value/0/properties/parameters/0/parameters/0/value", "position": Object { "column": 25, "line": 889, @@ -92599,13 +93191,13 @@ Array [ "code": "INVALID_TYPE", "description": "value for the parameter. In Jtoken ", "directives": Object {}, - "jsonPath": "$.properties.parameters[0].value", + "jsonPath": "$['properties']['parameters'][0]['value']", "message": "Expected type string but found type object", "params": Array [ "string", "object", ], - "path": "properties/parameters/0/value", + "path": "$/properties/parameters/0/value", "position": Object { "column": 25, "line": 889, @@ -92625,14 +93217,14 @@ Array [ "code": "INVALID_TYPE", "description": "value for the parameter. In Jtoken ", "directives": Object {}, - "jsonPath": "$.properties.parameters[0].value", + "jsonPath": "$['properties']['parameters'][0]['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementConfigurationCreate.json", "message": "Expected type string but found type object", "params": Array [ "string", "object", ], - "path": "properties/parameters/0/value", + "path": "$/properties/parameters/0/value", "position": Object { "column": 25, "line": 889, @@ -92694,14 +93286,14 @@ Array [ "code": "INVALID_TYPE", "description": "value for the parameter. In Jtoken ", "directives": Object {}, - "jsonPath": "$.properties.parameters[0].value", + "jsonPath": "$['properties']['parameters'][0]['value']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/ManagementConfigurationGet.json", "message": "Expected type string but found type object", "params": Array [ "string", "object", ], - "path": "properties/parameters/0/value", + "path": "$/properties/parameters/0/value", "position": Object { "column": 25, "line": 889, @@ -92721,26 +93313,26 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Display metadata associated with the operation.", "directives": Object {}, - "jsonPath": "$.value[0].display.description", + "jsonPath": "$['value'][0]['display']['description']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/examples/OperationsList.json", "message": "Additional properties not allowed: description", "params": Array [ "description", ], - "path": "value/0/display/description", + "path": "$/value/0/display/description", "position": Object { "column": 28, "line": 633, }, "similarJsonPaths": Array [ - "$.value[1].display.description", - "$.value[2].display.description", - "$.value[3].display.description", + "$['value'][1]['display']['description']", + "$['value'][2]['display']['description']", + "$['value'][3]['display']['description']", ], "similarPaths": Array [ - "value/1/display/description", - "value/2/display/description", - "value/3/display/description", + "$/value/1/display/description", + "$/value/2/display/description", + "$/value/3/display/description", ], "title": "#/definitions/Operation/properties/display", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/operationsmanagement/resource-manager/Microsoft.OperationsManagement/preview/2015-11-01-preview/OperationsManagement.json", @@ -92764,7 +93356,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The paginated list of peerings.", "directives": Object {}, - "jsonPath": "$.sku", + "jsonPath": "$['sku']", "jsonPosition": Object { "column": 15, "line": 10, @@ -92774,7 +93366,7 @@ Array [ "params": Array [ "sku", ], - "path": "sku", + "path": "$/sku", "position": Object { "column": 26, "line": 652, @@ -92794,7 +93386,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The paginated list of peerings.", "directives": Object {}, - "jsonPath": "$.kind", + "jsonPath": "$['kind']", "jsonPosition": Object { "column": 15, "line": 10, @@ -92804,7 +93396,7 @@ Array [ "params": Array [ "kind", ], - "path": "kind", + "path": "$/kind", "position": Object { "column": 26, "line": 652, @@ -92824,7 +93416,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The paginated list of peerings.", "directives": Object {}, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "jsonPosition": Object { "column": 15, "line": 10, @@ -92834,7 +93426,7 @@ Array [ "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 26, "line": 652, @@ -92854,7 +93446,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The paginated list of peerings.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "jsonPosition": Object { "column": 15, "line": 10, @@ -92864,7 +93456,7 @@ Array [ "params": Array [ "name", ], - "path": "name", + "path": "$/name", "position": Object { "column": 26, "line": 652, @@ -92884,7 +93476,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The paginated list of peerings.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "jsonPosition": Object { "column": 15, "line": 10, @@ -92894,7 +93486,7 @@ Array [ "params": Array [ "id", ], - "path": "id", + "path": "$/id", "position": Object { "column": 26, "line": 652, @@ -92914,7 +93506,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The paginated list of peerings.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "jsonPosition": Object { "column": 15, "line": 10, @@ -92924,7 +93516,7 @@ Array [ "params": Array [ "type", ], - "path": "type", + "path": "$/type", "position": Object { "column": 26, "line": 652, @@ -92965,7 +93557,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The paginated list of peerings.", "directives": Object {}, - "jsonPath": "$.sku", + "jsonPath": "$['sku']", "jsonPosition": Object { "column": 15, "line": 9, @@ -92975,7 +93567,7 @@ Array [ "params": Array [ "sku", ], - "path": "sku", + "path": "$/sku", "position": Object { "column": 26, "line": 652, @@ -92995,7 +93587,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The paginated list of peerings.", "directives": Object {}, - "jsonPath": "$.kind", + "jsonPath": "$['kind']", "jsonPosition": Object { "column": 15, "line": 9, @@ -93005,7 +93597,7 @@ Array [ "params": Array [ "kind", ], - "path": "kind", + "path": "$/kind", "position": Object { "column": 26, "line": 652, @@ -93025,7 +93617,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The paginated list of peerings.", "directives": Object {}, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "jsonPosition": Object { "column": 15, "line": 9, @@ -93035,7 +93627,7 @@ Array [ "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 26, "line": 652, @@ -93055,7 +93647,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The paginated list of peerings.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "jsonPosition": Object { "column": 15, "line": 9, @@ -93065,7 +93657,7 @@ Array [ "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 26, "line": 652, @@ -93085,7 +93677,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The paginated list of peerings.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "jsonPosition": Object { "column": 15, "line": 9, @@ -93095,7 +93687,7 @@ Array [ "params": Array [ "name", ], - "path": "name", + "path": "$/name", "position": Object { "column": 26, "line": 652, @@ -93115,7 +93707,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The paginated list of peerings.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "jsonPosition": Object { "column": 15, "line": 9, @@ -93125,7 +93717,7 @@ Array [ "params": Array [ "id", ], - "path": "id", + "path": "$/id", "position": Object { "column": 26, "line": 652, @@ -93145,7 +93737,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The paginated list of peerings.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "jsonPosition": Object { "column": 15, "line": 9, @@ -93155,7 +93747,7 @@ Array [ "params": Array [ "type", ], - "path": "type", + "path": "$/type", "position": Object { "column": 26, "line": 652, @@ -93175,7 +93767,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The paginated list of peerings.", "directives": Object {}, - "jsonPath": "$.sku", + "jsonPath": "$['sku']", "jsonPosition": Object { "column": 15, "line": 8, @@ -93185,7 +93777,7 @@ Array [ "params": Array [ "sku", ], - "path": "sku", + "path": "$/sku", "position": Object { "column": 26, "line": 652, @@ -93205,7 +93797,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The paginated list of peerings.", "directives": Object {}, - "jsonPath": "$.kind", + "jsonPath": "$['kind']", "jsonPosition": Object { "column": 15, "line": 8, @@ -93215,7 +93807,7 @@ Array [ "params": Array [ "kind", ], - "path": "kind", + "path": "$/kind", "position": Object { "column": 26, "line": 652, @@ -93235,7 +93827,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The paginated list of peerings.", "directives": Object {}, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "jsonPosition": Object { "column": 15, "line": 8, @@ -93245,7 +93837,7 @@ Array [ "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 26, "line": 652, @@ -93265,7 +93857,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The paginated list of peerings.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "jsonPosition": Object { "column": 15, "line": 8, @@ -93275,7 +93867,7 @@ Array [ "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 26, "line": 652, @@ -93295,7 +93887,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The paginated list of peerings.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "jsonPosition": Object { "column": 15, "line": 8, @@ -93305,7 +93897,7 @@ Array [ "params": Array [ "name", ], - "path": "name", + "path": "$/name", "position": Object { "column": 26, "line": 652, @@ -93325,7 +93917,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The paginated list of peerings.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "jsonPosition": Object { "column": 15, "line": 8, @@ -93335,7 +93927,7 @@ Array [ "params": Array [ "id", ], - "path": "id", + "path": "$/id", "position": Object { "column": 26, "line": 652, @@ -93355,7 +93947,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The paginated list of peerings.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "jsonPosition": Object { "column": 15, "line": 8, @@ -93365,7 +93957,7 @@ Array [ "params": Array [ "type", ], - "path": "type", + "path": "$/type", "position": Object { "column": 26, "line": 652, @@ -93432,12 +94024,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Represents a server to be created.", "directives": Object {}, - "jsonPath": "$.Location", + "jsonPath": "$['Location']", "message": "Additional properties not allowed: Location", "params": Array [ "Location", ], - "path": "Location", + "path": "$/Location", "position": Object { "column": 24, "line": 1275, @@ -93457,12 +94049,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Represents a server to be created.", "directives": Object {}, - "jsonPath": "$.Properties", + "jsonPath": "$['Properties']", "message": "Additional properties not allowed: Properties", "params": Array [ "Properties", ], - "path": "Properties", + "path": "$/Properties", "position": Object { "column": 24, "line": 1275, @@ -93482,12 +94074,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Represents a server to be created.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "message": "Missing required property: location", "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 24, "line": 1275, @@ -93507,12 +94099,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Represents a server to be created.", "directives": Object {}, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "message": "Missing required property: properties", "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 24, "line": 1275, @@ -93532,22 +94124,22 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of a log file.", "directives": Object {}, - "jsonPath": "$.value[0].properties.name", + "jsonPath": "$['value'][0]['properties']['name']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/postgresql/resource-manager/Microsoft.DBforPostgreSQL/preview/2017-12-01-preview/examples/LogFileListByServer.json", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "value/0/properties/name", + "path": "$/value/0/properties/name", "position": Object { "column": 26, "line": 1579, }, "similarJsonPaths": Array [ - "$.value[1].properties.name", + "$['value'][1]['properties']['name']", ], "similarPaths": Array [ - "value/1/properties/name", + "$/value/1/properties/name", ], "title": "#/definitions/LogFileProperties", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/postgresql/resource-manager/Microsoft.DBforPostgreSQL/preview/2017-12-01-preview/postgresql.json", @@ -93564,24 +94156,24 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Performance tier properties", "directives": Object {}, - "jsonPath": "$.value[0].maxBackupRetentionDays", + "jsonPath": "$['value'][0]['maxBackupRetentionDays']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/postgresql/resource-manager/Microsoft.DBforPostgreSQL/preview/2017-12-01-preview/examples/PerformanceTiersListByLocation.json", "message": "Additional properties not allowed: maxBackupRetentionDays", "params": Array [ "maxBackupRetentionDays", ], - "path": "value/0/maxBackupRetentionDays", + "path": "$/value/0/maxBackupRetentionDays", "position": Object { "column": 34, "line": 1679, }, "similarJsonPaths": Array [ - "$.value[1].maxBackupRetentionDays", - "$.value[2].maxBackupRetentionDays", + "$['value'][1]['maxBackupRetentionDays']", + "$['value'][2]['maxBackupRetentionDays']", ], "similarPaths": Array [ - "value/1/maxBackupRetentionDays", - "value/2/maxBackupRetentionDays", + "$/value/1/maxBackupRetentionDays", + "$/value/2/maxBackupRetentionDays", ], "title": "#/definitions/PerformanceTierProperties", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/postgresql/resource-manager/Microsoft.DBforPostgreSQL/preview/2017-12-01-preview/postgresql.json", @@ -93598,24 +94190,24 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Performance tier properties", "directives": Object {}, - "jsonPath": "$.value[0].minBackupRetentionDays", + "jsonPath": "$['value'][0]['minBackupRetentionDays']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/postgresql/resource-manager/Microsoft.DBforPostgreSQL/preview/2017-12-01-preview/examples/PerformanceTiersListByLocation.json", "message": "Additional properties not allowed: minBackupRetentionDays", "params": Array [ "minBackupRetentionDays", ], - "path": "value/0/minBackupRetentionDays", + "path": "$/value/0/minBackupRetentionDays", "position": Object { "column": 34, "line": 1679, }, "similarJsonPaths": Array [ - "$.value[1].minBackupRetentionDays", - "$.value[2].minBackupRetentionDays", + "$['value'][1]['minBackupRetentionDays']", + "$['value'][2]['minBackupRetentionDays']", ], "similarPaths": Array [ - "value/1/minBackupRetentionDays", - "value/2/minBackupRetentionDays", + "$/value/1/minBackupRetentionDays", + "$/value/2/minBackupRetentionDays", ], "title": "#/definitions/PerformanceTierProperties", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/postgresql/resource-manager/Microsoft.DBforPostgreSQL/preview/2017-12-01-preview/postgresql.json", @@ -93632,24 +94224,24 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Performance tier properties", "directives": Object {}, - "jsonPath": "$.value[0].maxStorageMB", + "jsonPath": "$['value'][0]['maxStorageMB']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/postgresql/resource-manager/Microsoft.DBforPostgreSQL/preview/2017-12-01-preview/examples/PerformanceTiersListByLocation.json", "message": "Additional properties not allowed: maxStorageMB", "params": Array [ "maxStorageMB", ], - "path": "value/0/maxStorageMB", + "path": "$/value/0/maxStorageMB", "position": Object { "column": 34, "line": 1679, }, "similarJsonPaths": Array [ - "$.value[1].maxStorageMB", - "$.value[2].maxStorageMB", + "$['value'][1]['maxStorageMB']", + "$['value'][2]['maxStorageMB']", ], "similarPaths": Array [ - "value/1/maxStorageMB", - "value/2/maxStorageMB", + "$/value/1/maxStorageMB", + "$/value/2/maxStorageMB", ], "title": "#/definitions/PerformanceTierProperties", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/postgresql/resource-manager/Microsoft.DBforPostgreSQL/preview/2017-12-01-preview/postgresql.json", @@ -93666,24 +94258,24 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Performance tier properties", "directives": Object {}, - "jsonPath": "$.value[0].minStorageMB", + "jsonPath": "$['value'][0]['minStorageMB']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/postgresql/resource-manager/Microsoft.DBforPostgreSQL/preview/2017-12-01-preview/examples/PerformanceTiersListByLocation.json", "message": "Additional properties not allowed: minStorageMB", "params": Array [ "minStorageMB", ], - "path": "value/0/minStorageMB", + "path": "$/value/0/minStorageMB", "position": Object { "column": 34, "line": 1679, }, "similarJsonPaths": Array [ - "$.value[1].minStorageMB", - "$.value[2].minStorageMB", + "$['value'][1]['minStorageMB']", + "$['value'][2]['minStorageMB']", ], "similarPaths": Array [ - "value/1/minStorageMB", - "value/2/minStorageMB", + "$/value/1/minStorageMB", + "$/value/2/minStorageMB", ], "title": "#/definitions/PerformanceTierProperties", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/postgresql/resource-manager/Microsoft.DBforPostgreSQL/preview/2017-12-01-preview/postgresql.json", @@ -93738,7 +94330,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Response for check name availability API. Resource provider will set availability as true | false.", "directives": Object {}, - "jsonPath": "$.nameAvailable", + "jsonPath": "$['nameAvailable']", "jsonPosition": Object { "column": 20, "line": 14, @@ -93748,7 +94340,7 @@ Array [ "params": Array [ "nameAvailable", ], - "path": "nameAvailable", + "path": "$/nameAvailable", "position": Object { "column": 44, "line": 551, @@ -93768,7 +94360,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Response for check name availability API. Resource provider will set availability as true | false.", "directives": Object {}, - "jsonPath": "$.nameAvailable", + "jsonPath": "$['nameAvailable']", "jsonPosition": Object { "column": 20, "line": 14, @@ -93778,7 +94370,7 @@ Array [ "params": Array [ "nameAvailable", ], - "path": "nameAvailable", + "path": "$/nameAvailable", "position": Object { "column": 44, "line": 551, @@ -93798,7 +94390,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Response for check name availability API. Resource provider will set availability as true | false.", "directives": Object {}, - "jsonPath": "$.reason", + "jsonPath": "$['reason']", "jsonPosition": Object { "column": 20, "line": 14, @@ -93808,7 +94400,7 @@ Array [ "params": Array [ "reason", ], - "path": "reason", + "path": "$/reason", "position": Object { "column": 44, "line": 551, @@ -93828,7 +94420,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Response for check name availability API. Resource provider will set availability as true | false.", "directives": Object {}, - "jsonPath": "$.message", + "jsonPath": "$['message']", "jsonPosition": Object { "column": 20, "line": 14, @@ -93838,7 +94430,7 @@ Array [ "params": Array [ "message", ], - "path": "message", + "path": "$/message", "position": Object { "column": 44, "line": 551, @@ -93971,7 +94563,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for container with backup items. Containers with specific workloads are derived from this class.", "directives": Object {}, - "jsonPath": "$.resultArray", + "jsonPath": "$['resultArray']", "jsonPosition": Object { "column": 21, "line": 13, @@ -93981,7 +94573,7 @@ Array [ "params": Array [ "resultArray", ], - "path": "resultArray", + "path": "$/resultArray", "position": Object { "column": 36, "line": 5955, @@ -94001,7 +94593,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for container with backup items. Containers with specific workloads are derived from this class.", "directives": Object {}, - "jsonPath": "$.totalCount", + "jsonPath": "$['totalCount']", "jsonPosition": Object { "column": 21, "line": 13, @@ -94011,7 +94603,7 @@ Array [ "params": Array [ "totalCount", ], - "path": "totalCount", + "path": "$/totalCount", "position": Object { "column": 36, "line": 5955, @@ -94031,7 +94623,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for container with backup items. Containers with specific workloads are derived from this class.", "directives": Object {}, - "jsonPath": "$.continuationToken", + "jsonPath": "$['continuationToken']", "jsonPosition": Object { "column": 21, "line": 13, @@ -94041,7 +94633,7 @@ Array [ "params": Array [ "continuationToken", ], - "path": "continuationToken", + "path": "$/continuationToken", "position": Object { "column": 36, "line": 5955, @@ -94199,13 +94791,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for backup item. Workload-specific backup items are derived from this class.", "directives": Object {}, - "jsonPath": "$.value[0].resourceType", + "jsonPath": "$['value'][0]['resourceType']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureWorkload/BackupWorkloadItems_List.json", "message": "Additional properties not allowed: resourceType", "params": Array [ "resourceType", ], - "path": "value/0/resourceType", + "path": "$/value/0/resourceType", "position": Object { "column": 29, "line": 6625, @@ -94225,13 +94817,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for backup item. Workload-specific backup items are derived from this class.", "directives": Object {}, - "jsonPath": "$.value[0].providerName", + "jsonPath": "$['value'][0]['providerName']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureWorkload/BackupWorkloadItems_List.json", "message": "Additional properties not allowed: providerName", "params": Array [ "providerName", ], - "path": "value/0/providerName", + "path": "$/value/0/providerName", "position": Object { "column": 29, "line": 6625, @@ -94251,13 +94843,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for backup item. Workload-specific backup items are derived from this class.", "directives": Object {}, - "jsonPath": "$.value[0].subscriptionId", + "jsonPath": "$['value'][0]['subscriptionId']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureWorkload/BackupWorkloadItems_List.json", "message": "Additional properties not allowed: subscriptionId", "params": Array [ "subscriptionId", ], - "path": "value/0/subscriptionId", + "path": "$/value/0/subscriptionId", "position": Object { "column": 29, "line": 6625, @@ -94277,13 +94869,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for backup item. Workload-specific backup items are derived from this class.", "directives": Object {}, - "jsonPath": "$.value[0].resourceName", + "jsonPath": "$['value'][0]['resourceName']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureWorkload/BackupWorkloadItems_List.json", "message": "Additional properties not allowed: resourceName", "params": Array [ "resourceName", ], - "path": "value/0/resourceName", + "path": "$/value/0/resourceName", "position": Object { "column": 29, "line": 6625, @@ -94303,13 +94895,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for backup item. Workload-specific backup items are derived from this class.", "directives": Object {}, - "jsonPath": "$.value[0].resourceGroup", + "jsonPath": "$['value'][0]['resourceGroup']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureWorkload/BackupWorkloadItems_List.json", "message": "Additional properties not allowed: resourceGroup", "params": Array [ "resourceGroup", ], - "path": "value/0/resourceGroup", + "path": "$/value/0/resourceGroup", "position": Object { "column": 29, "line": 6625, @@ -94329,13 +94921,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for backup item. Workload-specific backup items are derived from this class.", "directives": Object {}, - "jsonPath": "$.value[0].friendlyName", + "jsonPath": "$['value'][0]['friendlyName']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureWorkload/BackupWorkloadItems_List.json", "message": "Additional properties not allowed: friendlyName", "params": Array [ "friendlyName", ], - "path": "value/0/friendlyName", + "path": "$/value/0/friendlyName", "position": Object { "column": 29, "line": 6625, @@ -94355,13 +94947,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for backup item. Workload-specific backup items are derived from this class.", "directives": Object {}, - "jsonPath": "$.value[0].status", + "jsonPath": "$['value'][0]['status']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureWorkload/BackupWorkloadItems_List.json", "message": "Additional properties not allowed: status", "params": Array [ "status", ], - "path": "value/0/status", + "path": "$/value/0/status", "position": Object { "column": 29, "line": 6625, @@ -94381,13 +94973,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for backup item. Workload-specific backup items are derived from this class.", "directives": Object {}, - "jsonPath": "$.value[0].dataDirectoryPaths", + "jsonPath": "$['value'][0]['dataDirectoryPaths']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureWorkload/BackupWorkloadItems_List.json", "message": "Additional properties not allowed: dataDirectoryPaths", "params": Array [ "dataDirectoryPaths", ], - "path": "value/0/dataDirectoryPaths", + "path": "$/value/0/dataDirectoryPaths", "position": Object { "column": 29, "line": 6625, @@ -94407,13 +94999,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for backup item. Workload-specific backup items are derived from this class.", "directives": Object {}, - "jsonPath": "$.value[0].backupManagementType", + "jsonPath": "$['value'][0]['backupManagementType']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureWorkload/BackupWorkloadItems_List.json", "message": "Additional properties not allowed: backupManagementType", "params": Array [ "backupManagementType", ], - "path": "value/0/backupManagementType", + "path": "$/value/0/backupManagementType", "position": Object { "column": 29, "line": 6625, @@ -94641,7 +95233,7 @@ Array [ "code": "INVALID_TYPE", "description": "List of RecoveryPoint resources", "directives": Object {}, - "jsonPath": "", + "jsonPath": "$", "jsonPosition": Object { "column": 21, "line": 13, @@ -94652,7 +95244,7 @@ Array [ "object", "array", ], - "path": "", + "path": "$", "position": Object { "column": 34, "line": 6048, @@ -94672,7 +95264,7 @@ Array [ "code": "ENUM_MISMATCH", "description": "Recovery point tier type.", "directives": Object {}, - "jsonPath": "$.properties.recoveryPointTierDetails[0].type", + "jsonPath": "$['properties']['recoveryPointTierDetails'][0]['type']", "jsonPosition": Object { "column": 25, "line": 17, @@ -94682,7 +95274,7 @@ Array [ "params": Array [ 2, ], - "path": "properties/recoveryPointTierDetails/0/type", + "path": "$/properties/recoveryPointTierDetails/0/type", "position": Object { "column": 17, "line": 6070, @@ -94702,7 +95294,7 @@ Array [ "code": "INVALID_TYPE", "description": "Recovery point tier type.", "directives": Object {}, - "jsonPath": "$.properties.recoveryPointTierDetails[0].type", + "jsonPath": "$['properties']['recoveryPointTierDetails'][0]['type']", "jsonPosition": Object { "column": 25, "line": 17, @@ -94713,7 +95305,7 @@ Array [ "string", "integer", ], - "path": "properties/recoveryPointTierDetails/0/type", + "path": "$/properties/recoveryPointTierDetails/0/type", "position": Object { "column": 17, "line": 6070, @@ -94733,13 +95325,13 @@ Array [ "code": "ENUM_MISMATCH", "description": "Recovery point tier status.", "directives": Object {}, - "jsonPath": "$.properties.recoveryPointTierDetails[0].status", + "jsonPath": "$['properties']['recoveryPointTierDetails'][0]['status']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/RecoveryPoints_Get.json", "message": "No enum match for: 1", "params": Array [ 1, ], - "path": "properties/recoveryPointTierDetails/0/status", + "path": "$/properties/recoveryPointTierDetails/0/status", "position": Object { "column": 19, "line": 6083, @@ -94759,14 +95351,14 @@ Array [ "code": "INVALID_TYPE", "description": "Recovery point tier status.", "directives": Object {}, - "jsonPath": "$.properties.recoveryPointTierDetails[0].status", + "jsonPath": "$['properties']['recoveryPointTierDetails'][0]['status']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/RecoveryPoints_Get.json", "message": "Expected type string but found type integer", "params": Array [ "string", "integer", ], - "path": "properties/recoveryPointTierDetails/0/status", + "path": "$/properties/recoveryPointTierDetails/0/status", "position": Object { "column": 19, "line": 6083, @@ -95020,7 +95612,7 @@ Array [ "code": "INVALID_FORMAT", "description": "Operation end time. Format: ISO-8601.", "directives": Object {}, - "jsonPath": "$.endTime", + "jsonPath": "$['endTime']", "jsonPosition": Object { "column": 28, "line": 17, @@ -95031,7 +95623,7 @@ Array [ "date-time", "0001-01-01T00:00:00", ], - "path": "endTime", + "path": "$/endTime", "position": Object { "column": 20, "line": 5549, @@ -95131,13 +95723,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "IaaS VM workload-specific backup item representing the Classic Compute VM.", "directives": Object {}, - "jsonPath": "$.value[0].properties.sourceResourceId", + "jsonPath": "$['value'][0]['properties']['sourceResourceId']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/BackupProtectableItems_List.json", "message": "Additional properties not allowed: sourceResourceId", "params": Array [ "sourceResourceId", ], - "path": "value/0/properties/sourceResourceId", + "path": "$/value/0/properties/sourceResourceId", "position": Object { "column": 49, "line": 2537, @@ -95157,13 +95749,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "IaaS VM workload-specific backup item representing the Classic Compute VM.", "directives": Object {}, - "jsonPath": "$.value[0].properties.containerName", + "jsonPath": "$['value'][0]['properties']['containerName']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices/stable/2016-12-01/examples/AzureIaasVm/BackupProtectableItems_List.json", "message": "Additional properties not allowed: containerName", "params": Array [ "containerName", ], - "path": "value/0/properties/containerName", + "path": "$/value/0/properties/containerName", "position": Object { "column": 49, "line": 2537, @@ -95183,7 +95775,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "List of ProtectionContainer resources", "directives": Object {}, - "jsonPath": "$.resultArray", + "jsonPath": "$['resultArray']", "jsonPosition": Object { "column": 21, "line": 12, @@ -95193,7 +95785,7 @@ Array [ "params": Array [ "resultArray", ], - "path": "resultArray", + "path": "$/resultArray", "position": Object { "column": 40, "line": 5969, @@ -95213,7 +95805,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "List of ProtectionContainer resources", "directives": Object {}, - "jsonPath": "$.totalCount", + "jsonPath": "$['totalCount']", "jsonPosition": Object { "column": 21, "line": 12, @@ -95223,7 +95815,7 @@ Array [ "params": Array [ "totalCount", ], - "path": "totalCount", + "path": "$/totalCount", "position": Object { "column": 40, "line": 5969, @@ -95243,7 +95835,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "List of ProtectionContainer resources", "directives": Object {}, - "jsonPath": "$.continuationToken", + "jsonPath": "$['continuationToken']", "jsonPosition": Object { "column": 21, "line": 12, @@ -95253,7 +95845,7 @@ Array [ "params": Array [ "continuationToken", ], - "path": "continuationToken", + "path": "$/continuationToken", "position": Object { "column": 40, "line": 5969, @@ -95273,7 +95865,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The resource storage details.", "directives": Object {}, - "jsonPath": "$.properties.xcoolState", + "jsonPath": "$['properties']['xcoolState']", "jsonPosition": Object { "column": 31, "line": 21, @@ -95283,7 +95875,7 @@ Array [ "params": Array [ "xcoolState", ], - "path": "properties/xcoolState", + "path": "$/properties/xcoolState", "position": Object { "column": 29, "line": 3862, @@ -95303,7 +95895,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The resource storage details.", "directives": Object {}, - "jsonPath": "$.properties.dedupState", + "jsonPath": "$['properties']['dedupState']", "jsonPosition": Object { "column": 31, "line": 21, @@ -95313,7 +95905,7 @@ Array [ "params": Array [ "dedupState", ], - "path": "properties/dedupState", + "path": "$/properties/dedupState", "position": Object { "column": 29, "line": 3862, @@ -95356,7 +95948,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for backup ProtectionIntent.", "directives": Object {}, - "jsonPath": "$.properties.friendlyName", + "jsonPath": "$['properties']['friendlyName']", "jsonPosition": Object { "column": 23, "line": 18, @@ -95366,7 +95958,7 @@ Array [ "params": Array [ "friendlyName", ], - "path": "properties/friendlyName", + "path": "$/properties/friendlyName", "position": Object { "column": 25, "line": 3703, @@ -95386,7 +95978,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Base class for backup ProtectionIntent.", "directives": Object {}, - "jsonPath": "$.properties.friendlyName", + "jsonPath": "$['properties']['friendlyName']", "jsonPosition": Object { "column": 31, "line": 24, @@ -95396,7 +95988,7 @@ Array [ "params": Array [ "friendlyName", ], - "path": "properties/friendlyName", + "path": "$/properties/friendlyName", "position": Object { "column": 25, "line": 3703, @@ -95448,7 +96040,7 @@ Array [ "code": "INVALID_TYPE", "description": "List of ProtectionIntent resources", "directives": Object {}, - "jsonPath": "", + "jsonPath": "$", "jsonPosition": Object { "column": 15, "line": 12, @@ -95459,7 +96051,7 @@ Array [ "object", "array", ], - "path": "", + "path": "$", "position": Object { "column": 37, "line": 3820, @@ -95486,12 +96078,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Recovery plan HVR Azure failover input.", "directives": Object {}, - "jsonPath": "$.properties.providerSpecificDetails[0].vaultLocation", + "jsonPath": "$['properties']['providerSpecificDetails'][0]['vaultLocation']", "message": "Missing required property: vaultLocation", "params": Array [ "vaultLocation", ], - "path": "properties/providerSpecificDetails/0/vaultLocation", + "path": "$/properties/providerSpecificDetails/0/vaultLocation", "position": Object { "column": 52, "line": 13905, @@ -95511,12 +96103,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Recovery plan HVR Azure failover input.", "directives": Object {}, - "jsonPath": "$.properties.providerSpecificDetails[0].vaultLocation", + "jsonPath": "$['properties']['providerSpecificDetails'][0]['vaultLocation']", "message": "Missing required property: vaultLocation", "params": Array [ "vaultLocation", ], - "path": "properties/providerSpecificDetails/0/vaultLocation", + "path": "$/properties/providerSpecificDetails/0/vaultLocation", "position": Object { "column": 52, "line": 13905, @@ -95536,12 +96128,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Recovery plan HVR Azure failover input.", "directives": Object {}, - "jsonPath": "$.properties.providerSpecificDetails[0].vaultLocation", + "jsonPath": "$['properties']['providerSpecificDetails'][0]['vaultLocation']", "message": "Missing required property: vaultLocation", "params": Array [ "vaultLocation", ], - "path": "properties/providerSpecificDetails/0/vaultLocation", + "path": "$/properties/providerSpecificDetails/0/vaultLocation", "position": Object { "column": 52, "line": 13905, @@ -95561,13 +96153,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets the Instance type.", "directives": Object {}, - "jsonPath": "$.properties.providerSpecificDetails.instanceType", + "jsonPath": "$['properties']['providerSpecificDetails']['instanceType']", "message": "ReadOnly property \`\\"instanceType\\": \\"A2A\\"\`, cannot be sent in the request.", "params": Array [ "instanceType", "A2A", ], - "path": "properties/providerSpecificDetails/instanceType", + "path": "$/properties/providerSpecificDetails/instanceType", "position": Object { "column": 25, "line": 7723, @@ -95587,13 +96179,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets the class type.", "directives": Object {}, - "jsonPath": "$.properties.customDetails.instanceType", + "jsonPath": "$['properties']['customDetails']['instanceType']", "message": "ReadOnly property \`\\"instanceType\\": \\"FabricSpecificCreationInput\\"\`, cannot be sent in the request.", "params": Array [ "instanceType", "FabricSpecificCreationInput", ], - "path": "properties/customDetails/instanceType", + "path": "$/properties/customDetails/instanceType", "position": Object { "column": 25, "line": 6288, @@ -95620,13 +96212,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets the class type.", "directives": Object {}, - "jsonPath": "$.properties.customDetails.instanceType", + "jsonPath": "$['properties']['customDetails']['instanceType']", "message": "ReadOnly property \`\\"instanceType\\": \\"FabricSpecificCreationInput\\"\`, cannot be sent in the request.", "params": Array [ "instanceType", "FabricSpecificCreationInput", ], - "path": "properties/customDetails/instanceType", + "path": "$/properties/customDetails/instanceType", "position": Object { "column": 25, "line": 9026, @@ -95646,12 +96238,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "VMwareCbt specific enable migration input.", "directives": Object {}, - "jsonPath": "$.properties.providerSpecificDetails.targetNetworkId", + "jsonPath": "$['properties']['providerSpecificDetails']['targetNetworkId']", "message": "Missing required property: targetNetworkId", "params": Array [ "targetNetworkId", ], - "path": "properties/providerSpecificDetails/targetNetworkId", + "path": "$/properties/providerSpecificDetails/targetNetworkId", "position": Object { "column": 38, "line": 16029, @@ -95671,12 +96263,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "VMwareCbt specific enable migration input.", "directives": Object {}, - "jsonPath": "$.properties.providerSpecificDetails.targetResourceGroupId", + "jsonPath": "$['properties']['providerSpecificDetails']['targetResourceGroupId']", "message": "Missing required property: targetResourceGroupId", "params": Array [ "targetResourceGroupId", ], - "path": "properties/providerSpecificDetails/targetResourceGroupId", + "path": "$/properties/providerSpecificDetails/targetResourceGroupId", "position": Object { "column": 38, "line": 16029, @@ -95696,12 +96288,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "VMwareCbt specific enable migration input.", "directives": Object {}, - "jsonPath": "$.properties.providerSpecificDetails.snapshotRunAsAccountId", + "jsonPath": "$['properties']['providerSpecificDetails']['snapshotRunAsAccountId']", "message": "Missing required property: snapshotRunAsAccountId", "params": Array [ "snapshotRunAsAccountId", ], - "path": "properties/providerSpecificDetails/snapshotRunAsAccountId", + "path": "$/properties/providerSpecificDetails/snapshotRunAsAccountId", "position": Object { "column": 38, "line": 16029, @@ -95721,12 +96313,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "VMwareCbt specific enable migration input.", "directives": Object {}, - "jsonPath": "$.properties.providerSpecificDetails.dataMoverRunAsAccountId", + "jsonPath": "$['properties']['providerSpecificDetails']['dataMoverRunAsAccountId']", "message": "Missing required property: dataMoverRunAsAccountId", "params": Array [ "dataMoverRunAsAccountId", ], - "path": "properties/providerSpecificDetails/dataMoverRunAsAccountId", + "path": "$/properties/providerSpecificDetails/dataMoverRunAsAccountId", "position": Object { "column": 38, "line": 16029, @@ -95746,12 +96338,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "VMwareCbt specific enable migration input.", "directives": Object {}, - "jsonPath": "$.properties.providerSpecificDetails.disksToInclude", + "jsonPath": "$['properties']['providerSpecificDetails']['disksToInclude']", "message": "Missing required property: disksToInclude", "params": Array [ "disksToInclude", ], - "path": "properties/providerSpecificDetails/disksToInclude", + "path": "$/properties/providerSpecificDetails/disksToInclude", "position": Object { "column": 38, "line": 16029, @@ -95771,12 +96363,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "VMwareCbt specific enable migration input.", "directives": Object {}, - "jsonPath": "$.properties.providerSpecificDetails.vmwareMachineId", + "jsonPath": "$['properties']['providerSpecificDetails']['vmwareMachineId']", "message": "Missing required property: vmwareMachineId", "params": Array [ "vmwareMachineId", ], - "path": "properties/providerSpecificDetails/vmwareMachineId", + "path": "$/properties/providerSpecificDetails/vmwareMachineId", "position": Object { "column": 38, "line": 16029, @@ -95796,12 +96388,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "VMwareCbt specific migrate input.", "directives": Object {}, - "jsonPath": "$.properties.providerSpecificDetails.performShutdown", + "jsonPath": "$['properties']['providerSpecificDetails']['performShutdown']", "message": "Missing required property: performShutdown", "params": Array [ "performShutdown", ], - "path": "properties/providerSpecificDetails/performShutdown", + "path": "$/properties/providerSpecificDetails/performShutdown", "position": Object { "column": 30, "line": 16110, @@ -95821,12 +96413,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "VMwareCbt specific test migrate input.", "directives": Object {}, - "jsonPath": "$.properties.providerSpecificDetails.networkId", + "jsonPath": "$['properties']['providerSpecificDetails']['networkId']", "message": "Missing required property: networkId", "params": Array [ "networkId", ], - "path": "properties/providerSpecificDetails/networkId", + "path": "$/properties/providerSpecificDetails/networkId", "position": Object { "column": 34, "line": 16473, @@ -95846,12 +96438,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "VMwareCbt specific test migrate input.", "directives": Object {}, - "jsonPath": "$.properties.providerSpecificDetails.recoveryPointId", + "jsonPath": "$['properties']['providerSpecificDetails']['recoveryPointId']", "message": "Missing required property: recoveryPointId", "params": Array [ "recoveryPointId", ], - "path": "properties/providerSpecificDetails/recoveryPointId", + "path": "$/properties/providerSpecificDetails/recoveryPointId", "position": Object { "column": 34, "line": 16473, @@ -95871,12 +96463,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Configure pairing input properties.", "directives": Object {}, - "jsonPath": "$.properties.PolicyId", + "jsonPath": "$['properties']['PolicyId']", "message": "Additional properties not allowed: PolicyId", "params": Array [ "PolicyId", ], - "path": "properties/PolicyId", + "path": "$/properties/PolicyId", "position": Object { "column": 56, "line": 8337, @@ -95896,13 +96488,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets the Instance type.", "directives": Object {}, - "jsonPath": "$.properties.providerSpecificDetails.instanceType", + "jsonPath": "$['properties']['providerSpecificDetails']['instanceType']", "message": "ReadOnly property \`\\"instanceType\\": \\"A2A\\"\`, cannot be sent in the request.", "params": Array [ "instanceType", "A2A", ], - "path": "properties/providerSpecificDetails/instanceType", + "path": "$/properties/providerSpecificDetails/instanceType", "position": Object { "column": 25, "line": 14950, @@ -95922,13 +96514,13 @@ Array [ "code": "INVALID_TYPE", "description": "The states of the job to be filtered can be in.", "directives": Object {}, - "jsonPath": "$.jobStatus", + "jsonPath": "$['jobStatus']", "message": "Expected type string but found type array", "params": Array [ "string", "array", ], - "path": "jobStatus", + "path": "$/jobStatus", "position": Object { "column": 22, "line": 12008, @@ -95948,13 +96540,13 @@ Array [ "code": "INVALID_TYPE", "description": "The type of objects.", "directives": Object {}, - "jsonPath": "$.affectedObjectTypes", + "jsonPath": "$['affectedObjectTypes']", "message": "Expected type string but found type array", "params": Array [ "string", "array", ], - "path": "affectedObjectTypes", + "path": "$/affectedObjectTypes", "position": Object { "column": 32, "line": 12004, @@ -95974,12 +96566,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Recovery plan HVR Azure failover input.", "directives": Object {}, - "jsonPath": "$.properties.providerSpecificDetails[0].vaultLocation", + "jsonPath": "$['properties']['providerSpecificDetails'][0]['vaultLocation']", "message": "Missing required property: vaultLocation", "params": Array [ "vaultLocation", ], - "path": "properties/providerSpecificDetails/0/vaultLocation", + "path": "$/properties/providerSpecificDetails/0/vaultLocation", "position": Object { "column": 52, "line": 13674, @@ -95999,12 +96591,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Recovery plan HVR Azure failover input.", "directives": Object {}, - "jsonPath": "$.properties.providerSpecificDetails[0].vaultLocation", + "jsonPath": "$['properties']['providerSpecificDetails'][0]['vaultLocation']", "message": "Missing required property: vaultLocation", "params": Array [ "vaultLocation", ], - "path": "properties/providerSpecificDetails/0/vaultLocation", + "path": "$/properties/providerSpecificDetails/0/vaultLocation", "position": Object { "column": 52, "line": 13674, @@ -96024,12 +96616,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Recovery plan HVR Azure failover input.", "directives": Object {}, - "jsonPath": "$.properties.providerSpecificDetails[0].vaultLocation", + "jsonPath": "$['properties']['providerSpecificDetails'][0]['vaultLocation']", "message": "Missing required property: vaultLocation", "params": Array [ "vaultLocation", ], - "path": "properties/providerSpecificDetails/0/vaultLocation", + "path": "$/properties/providerSpecificDetails/0/vaultLocation", "position": Object { "column": 52, "line": 13674, @@ -96072,58 +96664,58 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The object that represents the operation.", "directives": Object {}, - "jsonPath": "$.value[0].display.description", + "jsonPath": "$['value'][0]['display']['description']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/examples/RelayOperations_List.json", "message": "Additional properties not allowed: description", "params": Array [ "description", ], - "path": "value/0/display/description", + "path": "$/value/0/display/description", "position": Object { "column": 20, "line": 2305, }, "similarJsonPaths": Array [ - "$.value[1].display.description", - "$.value[2].display.description", - "$.value[3].display.description", - "$.value[4].display.description", - "$.value[5].display.description", - "$.value[6].display.description", - "$.value[7].display.description", - "$.value[8].display.description", - "$.value[9].display.description", - "$.value[10].display.description", - "$.value[11].display.description", - "$.value[12].display.description", - "$.value[13].display.description", - "$.value[14].display.description", - "$.value[15].display.description", - "$.value[16].display.description", - "$.value[17].display.description", - "$.value[18].display.description", - "$.value[19].display.description", + "$['value'][1]['display']['description']", + "$['value'][2]['display']['description']", + "$['value'][3]['display']['description']", + "$['value'][4]['display']['description']", + "$['value'][5]['display']['description']", + "$['value'][6]['display']['description']", + "$['value'][7]['display']['description']", + "$['value'][8]['display']['description']", + "$['value'][9]['display']['description']", + "$['value'][10]['display']['description']", + "$['value'][11]['display']['description']", + "$['value'][12]['display']['description']", + "$['value'][13]['display']['description']", + "$['value'][14]['display']['description']", + "$['value'][15]['display']['description']", + "$['value'][16]['display']['description']", + "$['value'][17]['display']['description']", + "$['value'][18]['display']['description']", + "$['value'][19]['display']['description']", ], "similarPaths": Array [ - "value/1/display/description", - "value/2/display/description", - "value/3/display/description", - "value/4/display/description", - "value/5/display/description", - "value/6/display/description", - "value/7/display/description", - "value/8/display/description", - "value/9/display/description", - "value/10/display/description", - "value/11/display/description", - "value/12/display/description", - "value/13/display/description", - "value/14/display/description", - "value/15/display/description", - "value/16/display/description", - "value/17/display/description", - "value/18/display/description", - "value/19/display/description", + "$/value/1/display/description", + "$/value/2/display/description", + "$/value/3/display/description", + "$/value/4/display/description", + "$/value/5/display/description", + "$/value/6/display/description", + "$/value/7/display/description", + "$/value/8/display/description", + "$/value/9/display/description", + "$/value/10/display/description", + "$/value/11/display/description", + "$/value/12/display/description", + "$/value/13/display/description", + "$/value/14/display/description", + "$/value/15/display/description", + "$/value/16/display/description", + "$/value/17/display/description", + "$/value/18/display/description", + "$/value/19/display/description", ], "title": "#/definitions/Operation/properties/display", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/relay/resource-manager/Microsoft.Relay/stable/2016-07-01/relay.json", @@ -96202,13 +96794,13 @@ Array [ "code": "INVALID_FORMAT", "description": "Quantity of the SKUs that are part of the Reservation. Must be greater than zero.", "directives": Object {}, - "jsonPath": "$.properties.quantity", + "jsonPath": "$['properties']['quantity']", "message": "Object didn't pass validation for format int32: 1", "params": Array [ "int32", "1", ], - "path": "properties/quantity", + "path": "$/properties/quantity", "position": Object { "column": 29, "line": 1163, @@ -96228,13 +96820,13 @@ Array [ "code": "INVALID_TYPE", "description": "Quantity of the SKUs that are part of the Reservation. Must be greater than zero.", "directives": Object {}, - "jsonPath": "$.properties.quantity", + "jsonPath": "$['properties']['quantity']", "message": "Expected type integer but found type string", "params": Array [ "integer", "string", ], - "path": "properties/quantity", + "path": "$/properties/quantity", "position": Object { "column": 29, "line": 1163, @@ -96254,13 +96846,13 @@ Array [ "code": "INVALID_FORMAT", "description": "Quantity of the SKUs that are part of the Reservation. Must be greater than zero.", "directives": Object {}, - "jsonPath": "$.properties.quantity", + "jsonPath": "$['properties']['quantity']", "message": "Object didn't pass validation for format int32: 1", "params": Array [ "int32", "1", ], - "path": "properties/quantity", + "path": "$/properties/quantity", "position": Object { "column": 29, "line": 1163, @@ -96280,13 +96872,13 @@ Array [ "code": "INVALID_TYPE", "description": "Quantity of the SKUs that are part of the Reservation. Must be greater than zero.", "directives": Object {}, - "jsonPath": "$.properties.quantity", + "jsonPath": "$['properties']['quantity']", "message": "Expected type integer but found type string", "params": Array [ "integer", "string", ], - "path": "properties/quantity", + "path": "$/properties/quantity", "position": Object { "column": 29, "line": 1163, @@ -96361,13 +96953,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "This will be used to handle Optimistic Concurrency. If not present, it will always overwrite the existing resource without checking conflict.", "directives": Object {}, - "jsonPath": "$.eTag", + "jsonPath": "$['eTag']", "message": "ReadOnly property \`\\"eTag\\": \\"b0809832-ca62-4133-8f13-0c46580f9db1\\"\`, cannot be sent in the request.", "params": Array [ "eTag", "b0809832-ca62-4133-8f13-0c46580f9db1", ], - "path": "eTag", + "path": "$/eTag", "position": Object { "column": 17, "line": 385, @@ -96402,13 +96994,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of availability state.", "directives": Object {}, - "jsonPath": "$.value[1].properties.RecommendedActions", + "jsonPath": "$['value'][1]['properties']['RecommendedActions']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/AvailabilityStatuses_ListBySubscriptionId.json", "message": "Additional properties not allowed: RecommendedActions", "params": Array [ "RecommendedActions", ], - "path": "value/1/properties/RecommendedActions", + "path": "$/value/1/properties/RecommendedActions", "position": Object { "column": 23, "line": 440, @@ -96428,13 +97020,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of availability state.", "directives": Object {}, - "jsonPath": "$.value[0].properties.RecommendedActions", + "jsonPath": "$['value'][0]['properties']['RecommendedActions']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/AvailabilityStatuses_ListBySubscriptionId.json", "message": "Additional properties not allowed: RecommendedActions", "params": Array [ "RecommendedActions", ], - "path": "value/0/properties/RecommendedActions", + "path": "$/value/0/properties/RecommendedActions", "position": Object { "column": 23, "line": 440, @@ -96454,13 +97046,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of availability state.", "directives": Object {}, - "jsonPath": "$.value[0].properties.RecentlyResolved", + "jsonPath": "$['value'][0]['properties']['RecentlyResolved']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/AvailabilityStatuses_ListBySubscriptionId.json", "message": "Additional properties not allowed: RecentlyResolved", "params": Array [ "RecentlyResolved", ], - "path": "value/0/properties/RecentlyResolved", + "path": "$/value/0/properties/RecentlyResolved", "position": Object { "column": 23, "line": 440, @@ -96480,13 +97072,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of availability state.", "directives": Object {}, - "jsonPath": "$.value[1].properties.RecommendedActions", + "jsonPath": "$['value'][1]['properties']['RecommendedActions']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/AvailabilityStatuses_ListByResourceGroup.json", "message": "Additional properties not allowed: RecommendedActions", "params": Array [ "RecommendedActions", ], - "path": "value/1/properties/RecommendedActions", + "path": "$/value/1/properties/RecommendedActions", "position": Object { "column": 23, "line": 440, @@ -96506,13 +97098,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of availability state.", "directives": Object {}, - "jsonPath": "$.value[0].properties.RecommendedActions", + "jsonPath": "$['value'][0]['properties']['RecommendedActions']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/AvailabilityStatuses_ListByResourceGroup.json", "message": "Additional properties not allowed: RecommendedActions", "params": Array [ "RecommendedActions", ], - "path": "value/0/properties/RecommendedActions", + "path": "$/value/0/properties/RecommendedActions", "position": Object { "column": 23, "line": 440, @@ -96532,13 +97124,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of availability state.", "directives": Object {}, - "jsonPath": "$.value[0].properties.RecentlyResolved", + "jsonPath": "$['value'][0]['properties']['RecentlyResolved']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2015-01-01/examples/AvailabilityStatuses_ListByResourceGroup.json", "message": "Additional properties not allowed: RecentlyResolved", "params": Array [ "RecentlyResolved", ], - "path": "value/0/properties/RecentlyResolved", + "path": "$/value/0/properties/RecentlyResolved", "position": Object { "column": 23, "line": 440, @@ -96558,7 +97150,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of availability state.", "directives": Object {}, - "jsonPath": "$.properties.RecommendedActions", + "jsonPath": "$['properties']['RecommendedActions']", "jsonPosition": Object { "column": 19, "line": 14, @@ -96568,7 +97160,7 @@ Array [ "params": Array [ "RecommendedActions", ], - "path": "properties/RecommendedActions", + "path": "$/properties/RecommendedActions", "position": Object { "column": 23, "line": 440, @@ -96588,7 +97180,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of availability state.", "directives": Object {}, - "jsonPath": "$.properties.RecommendedActions", + "jsonPath": "$['properties']['RecommendedActions']", "jsonPosition": Object { "column": 19, "line": 14, @@ -96598,7 +97190,7 @@ Array [ "params": Array [ "RecommendedActions", ], - "path": "properties/RecommendedActions", + "path": "$/properties/RecommendedActions", "position": Object { "column": 23, "line": 440, @@ -96762,7 +97354,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Information about appliance.", "directives": Object {}, - "jsonPath": "$.resourceGroup", + "jsonPath": "$['resourceGroup']", "jsonPosition": Object { "column": 15, "line": 11, @@ -96772,7 +97364,7 @@ Array [ "params": Array [ "resourceGroup", ], - "path": "resourceGroup", + "path": "$/resourceGroup", "position": Object { "column": 18, "line": 900, @@ -96808,13 +97400,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myAppliance\\"\`, cannot be sent in the request.", "params": Array [ "name", "myAppliance", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1215, @@ -96850,7 +97442,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Information about appliance.", "directives": Object {}, - "jsonPath": "$.resourceGroup", + "jsonPath": "$['resourceGroup']", "jsonPosition": Object { "column": 15, "line": 20, @@ -96860,7 +97452,7 @@ Array [ "params": Array [ "resourceGroup", ], - "path": "resourceGroup", + "path": "$/resourceGroup", "position": Object { "column": 18, "line": 900, @@ -96901,7 +97493,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Information about appliance definition.", "directives": Object {}, - "jsonPath": "$.resourceGroup", + "jsonPath": "$['resourceGroup']", "jsonPosition": Object { "column": 15, "line": 11, @@ -96911,7 +97503,7 @@ Array [ "params": Array [ "resourceGroup", ], - "path": "resourceGroup", + "path": "$/resourceGroup", "position": Object { "column": 28, "line": 948, @@ -96931,7 +97523,7 @@ Array [ "code": "INVALID_TYPE", "description": "The appliance lock level.", "directives": Object {}, - "jsonPath": "$.properties.lockLevel", + "jsonPath": "$['properties']['lockLevel']", "jsonPosition": Object { "column": 24, "line": 42, @@ -96942,7 +97534,7 @@ Array [ "string", "null", ], - "path": "properties/lockLevel", + "path": "$/properties/lockLevel", "position": Object { "column": 27, "line": 1294, @@ -96962,7 +97554,7 @@ Array [ "code": "ENUM_MISMATCH", "description": "The appliance lock level.", "directives": Object {}, - "jsonPath": "$.properties.lockLevel", + "jsonPath": "$['properties']['lockLevel']", "jsonPosition": Object { "column": 24, "line": 42, @@ -96972,7 +97564,7 @@ Array [ "params": Array [ null, ], - "path": "properties/lockLevel", + "path": "$/properties/lockLevel", "position": Object { "column": 27, "line": 1294, @@ -97024,7 +97616,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Information about appliance definition.", "directives": Object {}, - "jsonPath": "$.resourceGroup", + "jsonPath": "$['resourceGroup']", "jsonPosition": Object { "column": 15, "line": 26, @@ -97034,7 +97626,7 @@ Array [ "params": Array [ "resourceGroup", ], - "path": "resourceGroup", + "path": "$/resourceGroup", "position": Object { "column": 28, "line": 948, @@ -97054,7 +97646,7 @@ Array [ "code": "INVALID_TYPE", "description": "The appliance lock level.", "directives": Object {}, - "jsonPath": "$.properties.lockLevel", + "jsonPath": "$['properties']['lockLevel']", "jsonPosition": Object { "column": 24, "line": 57, @@ -97065,7 +97657,7 @@ Array [ "string", "null", ], - "path": "properties/lockLevel", + "path": "$/properties/lockLevel", "position": Object { "column": 27, "line": 1294, @@ -97085,7 +97677,7 @@ Array [ "code": "ENUM_MISMATCH", "description": "The appliance lock level.", "directives": Object {}, - "jsonPath": "$.properties.lockLevel", + "jsonPath": "$['properties']['lockLevel']", "jsonPosition": Object { "column": 24, "line": 57, @@ -97095,7 +97687,7 @@ Array [ "params": Array [ null, ], - "path": "properties/lockLevel", + "path": "$/properties/lockLevel", "position": Object { "column": 27, "line": 1294, @@ -97115,22 +97707,22 @@ Array [ "code": "ENUM_MISMATCH", "description": "The appliance lock level.", "directives": Object {}, - "jsonPath": "$.value[0].properties.lockLevel", + "jsonPath": "$['value'][0]['properties']['lockLevel']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/examples/listApplianceDefinitionsByResourceGroup.json", "message": "No enum match for: null", "params": Array [ null, ], - "path": "value/0/properties/lockLevel", + "path": "$/value/0/properties/lockLevel", "position": Object { "column": 27, "line": 1294, }, "similarJsonPaths": Array [ - "$.value[1].properties.lockLevel", + "$['value'][1]['properties']['lockLevel']", ], "similarPaths": Array [ - "value/1/properties/lockLevel", + "$/value/1/properties/lockLevel", ], "title": "#/definitions/ApplianceLockLevel", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/managedapplications.json", @@ -97147,23 +97739,23 @@ Array [ "code": "INVALID_TYPE", "description": "The appliance lock level.", "directives": Object {}, - "jsonPath": "$.value[0].properties.lockLevel", + "jsonPath": "$['value'][0]['properties']['lockLevel']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/examples/listApplianceDefinitionsByResourceGroup.json", "message": "Expected type string but found type null", "params": Array [ "string", "null", ], - "path": "value/0/properties/lockLevel", + "path": "$/value/0/properties/lockLevel", "position": Object { "column": 27, "line": 1294, }, "similarJsonPaths": Array [ - "$.value[1].properties.lockLevel", + "$['value'][1]['properties']['lockLevel']", ], "similarPaths": Array [ - "value/1/properties/lockLevel", + "$/value/1/properties/lockLevel", ], "title": "#/definitions/ApplianceLockLevel", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/managedapplications.json", @@ -97180,22 +97772,22 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Information about appliance definition.", "directives": Object {}, - "jsonPath": "$.value[0].resourceGroup", + "jsonPath": "$['value'][0]['resourceGroup']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/examples/listApplianceDefinitionsByResourceGroup.json", "message": "Additional properties not allowed: resourceGroup", "params": Array [ "resourceGroup", ], - "path": "value/0/resourceGroup", + "path": "$/value/0/resourceGroup", "position": Object { "column": 28, "line": 948, }, "similarJsonPaths": Array [ - "$.value[1].resourceGroup", + "$['value'][1]['resourceGroup']", ], "similarPaths": Array [ - "value/1/resourceGroup", + "$/value/1/resourceGroup", ], "title": "#/definitions/ApplianceDefinition", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/managedapplications.json", @@ -97212,22 +97804,22 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Information about appliance.", "directives": Object {}, - "jsonPath": "$.value[0].resourceGroup", + "jsonPath": "$['value'][0]['resourceGroup']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/examples/listAppliancesByResourceGroup.json", "message": "Additional properties not allowed: resourceGroup", "params": Array [ "resourceGroup", ], - "path": "value/0/resourceGroup", + "path": "$/value/0/resourceGroup", "position": Object { "column": 18, "line": 900, }, "similarJsonPaths": Array [ - "$.value[1].resourceGroup", + "$['value'][1]['resourceGroup']", ], "similarPaths": Array [ - "value/1/resourceGroup", + "$/value/1/resourceGroup", ], "title": "#/definitions/Appliance", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/resources/resource-manager/Microsoft.Solutions/preview/2016-09-01-preview/managedapplications.json", @@ -97272,7 +97864,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Information about managed application.", "directives": Object {}, - "jsonPath": "$.resourceGroup", + "jsonPath": "$['resourceGroup']", "jsonPosition": Object { "column": 15, "line": 11, @@ -97282,7 +97874,7 @@ Array [ "params": Array [ "resourceGroup", ], - "path": "resourceGroup", + "path": "$/resourceGroup", "position": Object { "column": 20, "line": 875, @@ -97302,7 +97894,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The managed application properties.", "directives": Object {}, - "jsonPath": "$.properties.managedApplicationDefinitionId", + "jsonPath": "$['properties']['managedApplicationDefinitionId']", "jsonPosition": Object { "column": 23, "line": 23, @@ -97312,7 +97904,7 @@ Array [ "params": Array [ "managedApplicationDefinitionId", ], - "path": "properties/managedApplicationDefinitionId", + "path": "$/properties/managedApplicationDefinitionId", "position": Object { "column": 30, "line": 945, @@ -97385,7 +97977,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Information about managed application.", "directives": Object {}, - "jsonPath": "$.resourceGroup", + "jsonPath": "$['resourceGroup']", "jsonPosition": Object { "column": 15, "line": 20, @@ -97395,7 +97987,7 @@ Array [ "params": Array [ "resourceGroup", ], - "path": "resourceGroup", + "path": "$/resourceGroup", "position": Object { "column": 20, "line": 875, @@ -97415,7 +98007,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The managed application properties.", "directives": Object {}, - "jsonPath": "$.properties.managedApplicationDefinitionId", + "jsonPath": "$['properties']['managedApplicationDefinitionId']", "jsonPosition": Object { "column": 23, "line": 32, @@ -97425,7 +98017,7 @@ Array [ "params": Array [ "managedApplicationDefinitionId", ], - "path": "properties/managedApplicationDefinitionId", + "path": "$/properties/managedApplicationDefinitionId", "position": Object { "column": 30, "line": 945, @@ -97466,7 +98058,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Information about managed application definition.", "directives": Object {}, - "jsonPath": "$.resourceGroup", + "jsonPath": "$['resourceGroup']", "jsonPosition": Object { "column": 15, "line": 11, @@ -97476,7 +98068,7 @@ Array [ "params": Array [ "resourceGroup", ], - "path": "resourceGroup", + "path": "$/resourceGroup", "position": Object { "column": 30, "line": 927, @@ -97496,7 +98088,7 @@ Array [ "code": "INVALID_TYPE", "description": "The managed application lock level.", "directives": Object {}, - "jsonPath": "$.properties.lockLevel", + "jsonPath": "$['properties']['lockLevel']", "jsonPosition": Object { "column": 24, "line": 42, @@ -97507,7 +98099,7 @@ Array [ "string", "null", ], - "path": "properties/lockLevel", + "path": "$/properties/lockLevel", "position": Object { "column": 29, "line": 1284, @@ -97527,7 +98119,7 @@ Array [ "code": "ENUM_MISMATCH", "description": "The managed application lock level.", "directives": Object {}, - "jsonPath": "$.properties.lockLevel", + "jsonPath": "$['properties']['lockLevel']", "jsonPosition": Object { "column": 24, "line": 42, @@ -97537,7 +98129,7 @@ Array [ "params": Array [ null, ], - "path": "properties/lockLevel", + "path": "$/properties/lockLevel", "position": Object { "column": 29, "line": 1284, @@ -97610,7 +98202,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Information about managed application definition.", "directives": Object {}, - "jsonPath": "$.resourceGroup", + "jsonPath": "$['resourceGroup']", "jsonPosition": Object { "column": 15, "line": 26, @@ -97620,7 +98212,7 @@ Array [ "params": Array [ "resourceGroup", ], - "path": "resourceGroup", + "path": "$/resourceGroup", "position": Object { "column": 30, "line": 927, @@ -97640,7 +98232,7 @@ Array [ "code": "INVALID_TYPE", "description": "The managed application lock level.", "directives": Object {}, - "jsonPath": "$.properties.lockLevel", + "jsonPath": "$['properties']['lockLevel']", "jsonPosition": Object { "column": 24, "line": 57, @@ -97651,7 +98243,7 @@ Array [ "string", "null", ], - "path": "properties/lockLevel", + "path": "$/properties/lockLevel", "position": Object { "column": 29, "line": 1284, @@ -97671,7 +98263,7 @@ Array [ "code": "ENUM_MISMATCH", "description": "The managed application lock level.", "directives": Object {}, - "jsonPath": "$.properties.lockLevel", + "jsonPath": "$['properties']['lockLevel']", "jsonPosition": Object { "column": 24, "line": 57, @@ -97681,7 +98273,7 @@ Array [ "params": Array [ null, ], - "path": "properties/lockLevel", + "path": "$/properties/lockLevel", "position": Object { "column": 29, "line": 1284, @@ -97701,22 +98293,22 @@ Array [ "code": "ENUM_MISMATCH", "description": "The managed application lock level.", "directives": Object {}, - "jsonPath": "$.value[0].properties.lockLevel", + "jsonPath": "$['value'][0]['properties']['lockLevel']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/examples/listApplicationDefinitionsByResourceGroup.json", "message": "No enum match for: null", "params": Array [ null, ], - "path": "value/0/properties/lockLevel", + "path": "$/value/0/properties/lockLevel", "position": Object { "column": 29, "line": 1284, }, "similarJsonPaths": Array [ - "$.value[1].properties.lockLevel", + "$['value'][1]['properties']['lockLevel']", ], "similarPaths": Array [ - "value/1/properties/lockLevel", + "$/value/1/properties/lockLevel", ], "title": "#/definitions/ApplicationLockLevel", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/managedapplications.json", @@ -97733,23 +98325,23 @@ Array [ "code": "INVALID_TYPE", "description": "The managed application lock level.", "directives": Object {}, - "jsonPath": "$.value[0].properties.lockLevel", + "jsonPath": "$['value'][0]['properties']['lockLevel']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/examples/listApplicationDefinitionsByResourceGroup.json", "message": "Expected type string but found type null", "params": Array [ "string", "null", ], - "path": "value/0/properties/lockLevel", + "path": "$/value/0/properties/lockLevel", "position": Object { "column": 29, "line": 1284, }, "similarJsonPaths": Array [ - "$.value[1].properties.lockLevel", + "$['value'][1]['properties']['lockLevel']", ], "similarPaths": Array [ - "value/1/properties/lockLevel", + "$/value/1/properties/lockLevel", ], "title": "#/definitions/ApplicationLockLevel", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/managedapplications.json", @@ -97766,22 +98358,22 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Information about managed application definition.", "directives": Object {}, - "jsonPath": "$.value[0].resourceGroup", + "jsonPath": "$['value'][0]['resourceGroup']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/examples/listApplicationDefinitionsByResourceGroup.json", "message": "Additional properties not allowed: resourceGroup", "params": Array [ "resourceGroup", ], - "path": "value/0/resourceGroup", + "path": "$/value/0/resourceGroup", "position": Object { "column": 30, "line": 927, }, "similarJsonPaths": Array [ - "$.value[1].resourceGroup", + "$['value'][1]['resourceGroup']", ], "similarPaths": Array [ - "value/1/resourceGroup", + "$/value/1/resourceGroup", ], "title": "#/definitions/ApplicationDefinition", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/managedapplications.json", @@ -97798,22 +98390,22 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The managed application properties.", "directives": Object {}, - "jsonPath": "$.value[0].properties.managedApplicationDefinitionId", + "jsonPath": "$['value'][0]['properties']['managedApplicationDefinitionId']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/examples/listApplicationsByResourceGroup.json", "message": "Additional properties not allowed: managedApplicationDefinitionId", "params": Array [ "managedApplicationDefinitionId", ], - "path": "value/0/properties/managedApplicationDefinitionId", + "path": "$/value/0/properties/managedApplicationDefinitionId", "position": Object { "column": 30, "line": 945, }, "similarJsonPaths": Array [ - "$.value[1].properties.managedApplicationDefinitionId", + "$['value'][1]['properties']['managedApplicationDefinitionId']", ], "similarPaths": Array [ - "value/1/properties/managedApplicationDefinitionId", + "$/value/1/properties/managedApplicationDefinitionId", ], "title": "#/definitions/ApplicationProperties", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/managedapplications.json", @@ -97830,22 +98422,22 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Information about managed application.", "directives": Object {}, - "jsonPath": "$.value[0].resourceGroup", + "jsonPath": "$['value'][0]['resourceGroup']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/examples/listApplicationsByResourceGroup.json", "message": "Additional properties not allowed: resourceGroup", "params": Array [ "resourceGroup", ], - "path": "value/0/resourceGroup", + "path": "$/value/0/resourceGroup", "position": Object { "column": 20, "line": 875, }, "similarJsonPaths": Array [ - "$.value[1].resourceGroup", + "$['value'][1]['resourceGroup']", ], "similarPaths": Array [ - "value/1/resourceGroup", + "$/value/1/resourceGroup", ], "title": "#/definitions/Application", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/resources/resource-manager/Microsoft.Solutions/stable/2017-09-01/managedapplications.json", @@ -97913,7 +98505,7 @@ Array [ "code": "INVALID_TYPE", "description": "The connection string for the datasource.", "directives": Object {}, - "jsonPath": "$.credentials.connectionString", + "jsonPath": "$['credentials']['connectionString']", "jsonPosition": Object { "column": 41, "line": 37, @@ -97924,7 +98516,7 @@ Array [ "string", "null", ], - "path": "credentials/connectionString", + "path": "$/credentials/connectionString", "position": Object { "column": 29, "line": 2960, @@ -97944,7 +98536,7 @@ Array [ "code": "INVALID_TYPE", "description": "The connection string for the datasource.", "directives": Object {}, - "jsonPath": "$.credentials.connectionString", + "jsonPath": "$['credentials']['connectionString']", "jsonPosition": Object { "column": 41, "line": 60, @@ -97955,7 +98547,7 @@ Array [ "string", "null", ], - "path": "credentials/connectionString", + "path": "$/credentials/connectionString", "position": Object { "column": 29, "line": 2960, @@ -97975,7 +98567,7 @@ Array [ "code": "INVALID_TYPE", "description": "The connection string for the datasource.", "directives": Object {}, - "jsonPath": "$.credentials.connectionString", + "jsonPath": "$['credentials']['connectionString']", "jsonPosition": Object { "column": 41, "line": 15, @@ -97986,7 +98578,7 @@ Array [ "string", "null", ], - "path": "credentials/connectionString", + "path": "$/credentials/connectionString", "position": Object { "column": 29, "line": 2960, @@ -98019,7 +98611,7 @@ Array [ "code": "INVALID_TYPE", "description": "The connection string for the datasource.", "directives": Object {}, - "jsonPath": "$.credentials.connectionString", + "jsonPath": "$['credentials']['connectionString']", "jsonPosition": Object { "column": 41, "line": 35, @@ -98030,7 +98622,7 @@ Array [ "string", "null", ], - "path": "credentials/connectionString", + "path": "$/credentials/connectionString", "position": Object { "column": 29, "line": 2960, @@ -98050,13 +98642,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Represents an item- or document-level indexing error.", "directives": Object {}, - "jsonPath": "$.executionHistory[1].errors[0].statusCode", + "jsonPath": "$['executionHistory'][1]['errors'][0]['statusCode']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetIndexerStatus.json", "message": "Additional properties not allowed: statusCode", "params": Array [ "statusCode", ], - "path": "executionHistory/1/errors/0/statusCode", + "path": "$/executionHistory/1/errors/0/statusCode", "position": Object { "column": 18, "line": 3297, @@ -98076,13 +98668,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Represents an item- or document-level indexing error.", "directives": Object {}, - "jsonPath": "$.executionHistory[1].errors[0].status", + "jsonPath": "$['executionHistory'][1]['errors'][0]['status']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2016-09-01-preview/examples/SearchServiceGetIndexerStatus.json", "message": "Additional properties not allowed: status", "params": Array [ "status", ], - "path": "executionHistory/1/errors/0/status", + "path": "$/executionHistory/1/errors/0/status", "position": Object { "column": 18, "line": 3297, @@ -98109,7 +98701,7 @@ Array [ "code": "INVALID_TYPE", "description": "The connection string for the datasource.", "directives": Object {}, - "jsonPath": "$.credentials.connectionString", + "jsonPath": "$['credentials']['connectionString']", "jsonPosition": Object { "column": 41, "line": 37, @@ -98120,7 +98712,7 @@ Array [ "string", "null", ], - "path": "credentials/connectionString", + "path": "$/credentials/connectionString", "position": Object { "column": 29, "line": 2960, @@ -98140,7 +98732,7 @@ Array [ "code": "INVALID_TYPE", "description": "The connection string for the datasource.", "directives": Object {}, - "jsonPath": "$.credentials.connectionString", + "jsonPath": "$['credentials']['connectionString']", "jsonPosition": Object { "column": 41, "line": 60, @@ -98151,7 +98743,7 @@ Array [ "string", "null", ], - "path": "credentials/connectionString", + "path": "$/credentials/connectionString", "position": Object { "column": 29, "line": 2960, @@ -98171,7 +98763,7 @@ Array [ "code": "INVALID_TYPE", "description": "The connection string for the datasource.", "directives": Object {}, - "jsonPath": "$.credentials.connectionString", + "jsonPath": "$['credentials']['connectionString']", "jsonPosition": Object { "column": 41, "line": 15, @@ -98182,7 +98774,7 @@ Array [ "string", "null", ], - "path": "credentials/connectionString", + "path": "$/credentials/connectionString", "position": Object { "column": 29, "line": 2960, @@ -98215,7 +98807,7 @@ Array [ "code": "INVALID_TYPE", "description": "The connection string for the datasource.", "directives": Object {}, - "jsonPath": "$.credentials.connectionString", + "jsonPath": "$['credentials']['connectionString']", "jsonPosition": Object { "column": 41, "line": 35, @@ -98226,7 +98818,7 @@ Array [ "string", "null", ], - "path": "credentials/connectionString", + "path": "$/credentials/connectionString", "position": Object { "column": 29, "line": 2960, @@ -98246,13 +98838,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Represents an item- or document-level indexing error.", "directives": Object {}, - "jsonPath": "$.executionHistory[1].errors[0].statusCode", + "jsonPath": "$['executionHistory'][1]['errors'][0]['statusCode']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceGetIndexerStatus.json", "message": "Additional properties not allowed: statusCode", "params": Array [ "statusCode", ], - "path": "executionHistory/1/errors/0/statusCode", + "path": "$/executionHistory/1/errors/0/statusCode", "position": Object { "column": 18, "line": 3297, @@ -98272,13 +98864,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Represents an item- or document-level indexing error.", "directives": Object {}, - "jsonPath": "$.executionHistory[1].errors[0].status", + "jsonPath": "$['executionHistory'][1]['errors'][0]['status']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11/examples/SearchServiceGetIndexerStatus.json", "message": "Additional properties not allowed: status", "params": Array [ "status", ], - "path": "executionHistory/1/errors/0/status", + "path": "$/executionHistory/1/errors/0/status", "position": Object { "column": 18, "line": 3297, @@ -98305,18 +98897,18 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "The connection string for the datasource.", "directives": Object {}, - "jsonPath": "$.credentials.connectionString", + "jsonPath": "$['credentials']['connectionString']", "jsonPosition": Object { "column": 41, "line": 37, }, "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateOrUpdateDataSource.json", - "message": "Write-only property \`\\"connectionString\\": null\`, is not allowed in the response.", + "message": "Write-only property \`\\"connectionString\\"\`, is not allowed in the response.", "params": Array [ "connectionString", - null, + "", ], - "path": "credentials/connectionString", + "path": "$/credentials/connectionString", "position": Object { "column": 29, "line": 3395, @@ -98336,18 +98928,18 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "The connection string for the datasource.", "directives": Object {}, - "jsonPath": "$.credentials.connectionString", + "jsonPath": "$['credentials']['connectionString']", "jsonPosition": Object { "column": 41, "line": 60, }, "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateOrUpdateDataSource.json", - "message": "Write-only property \`\\"connectionString\\": null\`, is not allowed in the response.", + "message": "Write-only property \`\\"connectionString\\"\`, is not allowed in the response.", "params": Array [ "connectionString", - null, + "", ], - "path": "credentials/connectionString", + "path": "$/credentials/connectionString", "position": Object { "column": 29, "line": 3395, @@ -98367,18 +98959,18 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "The connection string for the datasource.", "directives": Object {}, - "jsonPath": "$.credentials.connectionString", + "jsonPath": "$['credentials']['connectionString']", "jsonPosition": Object { "column": 41, "line": 15, }, "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetDataSource.json", - "message": "Write-only property \`\\"connectionString\\": null\`, is not allowed in the response.", + "message": "Write-only property \`\\"connectionString\\"\`, is not allowed in the response.", "params": Array [ "connectionString", - null, + "", ], - "path": "credentials/connectionString", + "path": "$/credentials/connectionString", "position": Object { "column": 29, "line": 3395, @@ -98411,18 +99003,18 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "The connection string for the datasource.", "directives": Object {}, - "jsonPath": "$.credentials.connectionString", + "jsonPath": "$['credentials']['connectionString']", "jsonPosition": Object { "column": 41, "line": 35, }, "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateDataSource.json", - "message": "Write-only property \`\\"connectionString\\": null\`, is not allowed in the response.", + "message": "Write-only property \`\\"connectionString\\"\`, is not allowed in the response.", "params": Array [ "connectionString", - null, + "", ], - "path": "credentials/connectionString", + "path": "$/credentials/connectionString", "position": Object { "column": 29, "line": 3395, @@ -98442,12 +99034,12 @@ Array [ "code": "ENUM_MISMATCH", "description": "Defines the data type of a field in an Azure Search index.", "directives": Object {}, - "jsonPath": "$.fields[6].type", + "jsonPath": "$['fields'][6]['type']", "message": "No enum match for: Collection(Edm.String)", "params": Array [ "Collection(Edm.String)", ], - "path": "fields/6/type", + "path": "$/fields/6/type", "position": Object { "column": 17, "line": 1683, @@ -98467,12 +99059,12 @@ Array [ "code": "ENUM_MISMATCH", "description": "Defines the names of all text analyzers supported by Azure Search.", "directives": Object {}, - "jsonPath": "$.fields[6].analyzer", + "jsonPath": "$['fields'][6]['analyzer']", "message": "No enum match for: tagsAnalyzer", "params": Array [ "tagsAnalyzer", ], - "path": "fields/6/analyzer", + "path": "$/fields/6/analyzer", "position": Object { "column": 21, "line": 1469, @@ -98492,7 +99084,7 @@ Array [ "code": "ENUM_MISMATCH", "description": "Defines the data type of a field in an Azure Search index.", "directives": Object {}, - "jsonPath": "$.fields[6].type", + "jsonPath": "$['fields'][6]['type']", "jsonPosition": Object { "column": 33, "line": 218, @@ -98502,7 +99094,7 @@ Array [ "params": Array [ "Collection(Edm.String)", ], - "path": "fields/6/type", + "path": "$/fields/6/type", "position": Object { "column": 17, "line": 1683, @@ -98522,13 +99114,13 @@ Array [ "code": "ENUM_MISMATCH", "description": "Defines the names of all text analyzers supported by Azure Search.", "directives": Object {}, - "jsonPath": "$.fields[6].analyzer", + "jsonPath": "$['fields'][6]['analyzer']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateIndex.json", "message": "No enum match for: tagsAnalyzer", "params": Array [ "tagsAnalyzer", ], - "path": "fields/6/analyzer", + "path": "$/fields/6/analyzer", "position": Object { "column": 21, "line": 1469, @@ -98548,13 +99140,13 @@ Array [ "code": "ENUM_MISMATCH", "description": "Defines the data type of a field in an Azure Search index.", "directives": Object {}, - "jsonPath": "$.value[0].fields[6].type", + "jsonPath": "$['value'][0]['fields'][6]['type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceListIndexes.json", "message": "No enum match for: Collection(Edm.String)", "params": Array [ "Collection(Edm.String)", ], - "path": "value/0/fields/6/type", + "path": "$/value/0/fields/6/type", "position": Object { "column": 17, "line": 1683, @@ -98574,13 +99166,13 @@ Array [ "code": "ENUM_MISMATCH", "description": "Defines the names of all text analyzers supported by Azure Search.", "directives": Object {}, - "jsonPath": "$.value[0].fields[6].analyzer", + "jsonPath": "$['value'][0]['fields'][6]['analyzer']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceListIndexes.json", "message": "No enum match for: tagsAnalyzer", "params": Array [ "tagsAnalyzer", ], - "path": "value/0/fields/6/analyzer", + "path": "$/value/0/fields/6/analyzer", "position": Object { "column": 21, "line": 1469, @@ -98600,12 +99192,12 @@ Array [ "code": "ENUM_MISMATCH", "description": "Defines the data type of a field in an Azure Search index.", "directives": Object {}, - "jsonPath": "$.fields[6].type", + "jsonPath": "$['fields'][6]['type']", "message": "No enum match for: Collection(Edm.String)", "params": Array [ "Collection(Edm.String)", ], - "path": "fields/6/type", + "path": "$/fields/6/type", "position": Object { "column": 17, "line": 1683, @@ -98625,12 +99217,12 @@ Array [ "code": "ENUM_MISMATCH", "description": "Defines the names of all text analyzers supported by Azure Search.", "directives": Object {}, - "jsonPath": "$.fields[6].analyzer", + "jsonPath": "$['fields'][6]['analyzer']", "message": "No enum match for: tagsAnalyzer", "params": Array [ "tagsAnalyzer", ], - "path": "fields/6/analyzer", + "path": "$/fields/6/analyzer", "position": Object { "column": 21, "line": 1469, @@ -98650,7 +99242,7 @@ Array [ "code": "ENUM_MISMATCH", "description": "Defines the data type of a field in an Azure Search index.", "directives": Object {}, - "jsonPath": "$.fields[6].type", + "jsonPath": "$['fields'][6]['type']", "jsonPosition": Object { "column": 33, "line": 218, @@ -98660,7 +99252,7 @@ Array [ "params": Array [ "Collection(Edm.String)", ], - "path": "fields/6/type", + "path": "$/fields/6/type", "position": Object { "column": 17, "line": 1683, @@ -98680,13 +99272,13 @@ Array [ "code": "ENUM_MISMATCH", "description": "Defines the names of all text analyzers supported by Azure Search.", "directives": Object {}, - "jsonPath": "$.fields[6].analyzer", + "jsonPath": "$['fields'][6]['analyzer']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateOrUpdateIndex.json", "message": "No enum match for: tagsAnalyzer", "params": Array [ "tagsAnalyzer", ], - "path": "fields/6/analyzer", + "path": "$/fields/6/analyzer", "position": Object { "column": 21, "line": 1469, @@ -98706,7 +99298,7 @@ Array [ "code": "ENUM_MISMATCH", "description": "Defines the data type of a field in an Azure Search index.", "directives": Object {}, - "jsonPath": "$.fields[6].type", + "jsonPath": "$['fields'][6]['type']", "jsonPosition": Object { "column": 33, "line": 450, @@ -98716,7 +99308,7 @@ Array [ "params": Array [ "Collection(Edm.String)", ], - "path": "fields/6/type", + "path": "$/fields/6/type", "position": Object { "column": 17, "line": 1683, @@ -98736,13 +99328,13 @@ Array [ "code": "ENUM_MISMATCH", "description": "Defines the names of all text analyzers supported by Azure Search.", "directives": Object {}, - "jsonPath": "$.fields[6].analyzer", + "jsonPath": "$['fields'][6]['analyzer']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceCreateOrUpdateIndex.json", "message": "No enum match for: tagsAnalyzer", "params": Array [ "tagsAnalyzer", ], - "path": "fields/6/analyzer", + "path": "$/fields/6/analyzer", "position": Object { "column": 21, "line": 1469, @@ -98762,7 +99354,7 @@ Array [ "code": "ENUM_MISMATCH", "description": "Defines the data type of a field in an Azure Search index.", "directives": Object {}, - "jsonPath": "$.fields[6].type", + "jsonPath": "$['fields'][6]['type']", "jsonPosition": Object { "column": 33, "line": 99, @@ -98772,7 +99364,7 @@ Array [ "params": Array [ "Collection(Edm.String)", ], - "path": "fields/6/type", + "path": "$/fields/6/type", "position": Object { "column": 17, "line": 1683, @@ -98792,13 +99384,13 @@ Array [ "code": "ENUM_MISMATCH", "description": "Defines the names of all text analyzers supported by Azure Search.", "directives": Object {}, - "jsonPath": "$.fields[6].analyzer", + "jsonPath": "$['fields'][6]['analyzer']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2017-11-11-preview/examples/SearchServiceGetIndex.json", "message": "No enum match for: tagsAnalyzer", "params": Array [ "tagsAnalyzer", ], - "path": "fields/6/analyzer", + "path": "$/fields/6/analyzer", "position": Object { "column": 21, "line": 1469, @@ -98849,13 +99441,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Location where the resource is stored", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "message": "ReadOnly property \`\\"location\\": \\"westeurope\\"\`, cannot be sent in the request.", "params": Array [ "location", "westeurope", ], - "path": "location", + "path": "$/location", "position": Object { "column": 21, "line": 74, @@ -98875,13 +99467,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Security/locations/jitNetworkAccessPolicies\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Security/locations/jitNetworkAccessPolicies", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 52, @@ -98901,13 +99493,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"default\\"\`, cannot be sent in the request.", "params": Array [ "name", "default", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 47, @@ -98927,13 +99519,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Id", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/jitNetworkAccessPolicies/default\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Security/locations/westeurope/jitNetworkAccessPolicies/default", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 42, @@ -98953,13 +99545,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets the provisioning state of the Just-in-Time policy.", "directives": Object {}, - "jsonPath": "$.properties.provisioningState", + "jsonPath": "$['properties']['provisioningState']", "message": "ReadOnly property \`\\"provisioningState\\": \\"Succeeded\\"\`, cannot be sent in the request.", "params": Array [ "provisioningState", "Succeeded", ], - "path": "properties/provisioningState", + "path": "$/properties/provisioningState", "position": Object { "column": 38, "line": 450, @@ -98978,12 +99570,12 @@ Array [ "details": Object { "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "directives": Object {}, - "jsonPath": "$.virtualMachines[0].ports[0].endTimeUtc", + "jsonPath": "$['virtualMachines'][0]['ports'][0]['endTimeUtc']", "message": "Missing required property: endTimeUtc", "params": Array [ "endTimeUtc", ], - "path": "virtualMachines/0/ports/0/endTimeUtc", + "path": "$/virtualMachines/0/ports/0/endTimeUtc", "position": Object { "column": 47, "line": 688, @@ -99002,12 +99594,12 @@ Array [ "details": Object { "code": "OBJECT_ADDITIONAL_PROPERTIES", "directives": Object {}, - "jsonPath": "$.virtualMachines[0].ports[0].duration", + "jsonPath": "$['virtualMachines'][0]['ports'][0]['duration']", "message": "Additional properties not allowed: duration", "params": Array [ "duration", ], - "path": "virtualMachines/0/ports/0/duration", + "path": "$/virtualMachines/0/ports/0/duration", "position": Object { "column": 47, "line": 688, @@ -99050,13 +99642,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Security/advancedThreatProtectionSettings\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Security/advancedThreatProtectionSettings", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 52, @@ -99076,13 +99668,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"current\\"\`, cannot be sent in the request.", "params": Array [ "name", "current", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 47, @@ -99102,13 +99694,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Id", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/SampleRG/providers/Microsoft.Storage/storageAccounts/samplestorageaccount/providers/Microsoft.Security/advancedThreatProtectionSettings/current\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/SampleRG/providers/Microsoft.Storage/storageAccounts/samplestorageaccount/providers/Microsoft.Security/advancedThreatProtectionSettings/current", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 42, @@ -99135,13 +99727,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Security/autoProvisioningSettings\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Security/autoProvisioningSettings", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 52, @@ -99161,13 +99753,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"default\\"\`, cannot be sent in the request.", "params": Array [ "name", "default", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 47, @@ -99187,13 +99779,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Id", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/autoProvisioningSettings/default\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/autoProvisioningSettings/default", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 42, @@ -99224,13 +99816,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The display name of the custom alert.", "directives": Object {}, - "jsonPath": "$.properties.timeWindowRules[0].displayName", + "jsonPath": "$['properties']['timeWindowRules'][0]['displayName']", "message": "ReadOnly property \`\\"displayName\\": \\"Number of active connections is not in allowed range\\"\`, cannot be sent in the request.", "params": Array [ "displayName", "Number of active connections is not in allowed range", ], - "path": "properties/timeWindowRules/0/displayName", + "path": "$/properties/timeWindowRules/0/displayName", "position": Object { "column": 32, "line": 259, @@ -99250,13 +99842,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The description of the custom alert.", "directives": Object {}, - "jsonPath": "$.properties.timeWindowRules[0].description", + "jsonPath": "$['properties']['timeWindowRules'][0]['description']", "message": "ReadOnly property \`\\"description\\": \\"Get an alert when the number of active connections of a device in the time window is not in the allowed range\\"\`, cannot be sent in the request.", "params": Array [ "description", "Get an alert when the number of active connections of a device in the time window is not in the allowed range", ], - "path": "properties/timeWindowRules/0/description", + "path": "$/properties/timeWindowRules/0/description", "position": Object { "column": 32, "line": 264, @@ -99276,13 +99868,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Security/deviceSecurityGroups\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Security/deviceSecurityGroups", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 52, @@ -99302,13 +99894,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"samplesecuritygroup\\"\`, cannot be sent in the request.", "params": Array [ "name", "samplesecuritygroup", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 47, @@ -99328,13 +99920,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Id", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/SampleRG/providers/Microsoft.Devices/iotHubs/sampleiothub/providers/Microsoft.Security/deviceSecurityGroups/samplesecuritygroup\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/SampleRG/providers/Microsoft.Devices/iotHubs/sampleiothub/providers/Microsoft.Security/deviceSecurityGroups/samplesecuritygroup", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 42, @@ -99369,13 +99961,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Security/pricings\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Security/pricings", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 52, @@ -99395,13 +99987,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"default\\"\`, cannot be sent in the request.", "params": Array [ "name", "default", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 47, @@ -99421,13 +100013,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Id", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/default\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/default", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 42, @@ -99447,13 +100039,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Security/pricings\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Security/pricings", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 52, @@ -99473,13 +100065,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myRg\\"\`, cannot be sent in the request.", "params": Array [ "name", "myRg", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 47, @@ -99499,13 +100091,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Id", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Security/pricings/myRg\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg/providers/Microsoft.Security/pricings/myRg", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 42, @@ -99532,13 +100124,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Security/securityContacts\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Security/securityContacts", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 52, @@ -99558,13 +100150,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"default2\\"\`, cannot be sent in the request.", "params": Array [ "name", "default2", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 47, @@ -99584,13 +100176,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Id", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default2\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default2", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 42, @@ -99610,13 +100202,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Security/securityContacts\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Security/securityContacts", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 52, @@ -99636,13 +100228,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"default1\\"\`, cannot be sent in the request.", "params": Array [ "name", "default1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 47, @@ -99662,13 +100254,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Id", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default1\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default1", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 42, @@ -99688,12 +100280,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "describes security contact properties", "directives": Object {}, - "jsonPath": "$.properties.email", + "jsonPath": "$['properties']['email']", "message": "Missing required property: email", "params": Array [ "email", ], - "path": "properties/email", + "path": "$/properties/email", "position": Object { "column": 38, "line": 237, @@ -99713,12 +100305,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "describes security contact properties", "directives": Object {}, - "jsonPath": "$.properties.alertsToAdmins", + "jsonPath": "$['properties']['alertsToAdmins']", "message": "Missing required property: alertsToAdmins", "params": Array [ "alertsToAdmins", ], - "path": "properties/alertsToAdmins", + "path": "$/properties/alertsToAdmins", "position": Object { "column": 38, "line": 237, @@ -99738,13 +100330,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Security/securityContacts\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Security/securityContacts", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 52, @@ -99764,13 +100356,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"default2\\"\`, cannot be sent in the request.", "params": Array [ "name", "default2", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 47, @@ -99790,13 +100382,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Id", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default2\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default2", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 42, @@ -99816,12 +100408,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "describes security contact properties", "directives": Object {}, - "jsonPath": "$.properties.email", + "jsonPath": "$['properties']['email']", "message": "Missing required property: email", "params": Array [ "email", ], - "path": "properties/email", + "path": "$/properties/email", "position": Object { "column": 38, "line": 237, @@ -99841,12 +100433,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "describes security contact properties", "directives": Object {}, - "jsonPath": "$.properties.alertsToAdmins", + "jsonPath": "$['properties']['alertsToAdmins']", "message": "Missing required property: alertsToAdmins", "params": Array [ "alertsToAdmins", ], - "path": "properties/alertsToAdmins", + "path": "$/properties/alertsToAdmins", "position": Object { "column": 38, "line": 237, @@ -99866,13 +100458,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Security/securityContacts\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Security/securityContacts", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 52, @@ -99892,13 +100484,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"default1\\"\`, cannot be sent in the request.", "params": Array [ "name", "default1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 47, @@ -99918,13 +100510,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Id", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default1\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/securityContacts/default1", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 42, @@ -99951,13 +100543,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Security/settings\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Security/settings", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 52, @@ -99977,13 +100569,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"MCAS\\"\`, cannot be sent in the request.", "params": Array [ "name", "MCAS", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 47, @@ -100003,13 +100595,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Id", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/settings/MCAS\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/settings/MCAS", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 42, @@ -100036,13 +100628,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Security/workspaceSettings\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Security/workspaceSettings", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 52, @@ -100062,13 +100654,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"default\\"\`, cannot be sent in the request.", "params": Array [ "name", "default", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 47, @@ -100088,13 +100680,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Id", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/workspaceSettings/default\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/workspaceSettings/default", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 42, @@ -100114,12 +100706,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Workspace setting data", "directives": Object {}, - "jsonPath": "$.properties.scope", + "jsonPath": "$['properties']['scope']", "message": "Missing required property: scope", "params": Array [ "scope", ], - "path": "properties/scope", + "path": "$/properties/scope", "position": Object { "column": 39, "line": 226, @@ -100139,13 +100731,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Security/workspaceSettings\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Security/workspaceSettings", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 52, @@ -100165,13 +100757,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"default\\"\`, cannot be sent in the request.", "params": Array [ "name", "default", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 47, @@ -100191,13 +100783,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Id", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/workspaceSettings/default\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/workspaceSettings/default", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 42, @@ -100245,13 +100837,13 @@ Array [ "code": "ENUM_CASE_MISMATCH", "description": "Aggregative state based on the standard's supported controls states", "directives": Object {}, - "jsonPath": "$.value[3].properties.state", + "jsonPath": "$['value'][3]['properties']['state']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceStandardList_example.json", "message": "Enum does not match case for: passed", "params": Array [ "passed", ], - "path": "value/3/properties/state", + "path": "$/value/3/properties/state", "position": Object { "column": 18, "line": 335, @@ -100271,13 +100863,13 @@ Array [ "code": "ENUM_CASE_MISMATCH", "description": "Aggregative state based on the standard's supported controls states", "directives": Object {}, - "jsonPath": "$.value[2].properties.state", + "jsonPath": "$['value'][2]['properties']['state']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceStandardList_example.json", "message": "Enum does not match case for: unsupported", "params": Array [ "unsupported", ], - "path": "value/2/properties/state", + "path": "$/value/2/properties/state", "position": Object { "column": 18, "line": 335, @@ -100297,13 +100889,13 @@ Array [ "code": "ENUM_CASE_MISMATCH", "description": "Aggregative state based on the standard's supported controls states", "directives": Object {}, - "jsonPath": "$.value[1].properties.state", + "jsonPath": "$['value'][1]['properties']['state']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceStandardList_example.json", "message": "Enum does not match case for: skipped", "params": Array [ "skipped", ], - "path": "value/1/properties/state", + "path": "$/value/1/properties/state", "position": Object { "column": 18, "line": 335, @@ -100323,13 +100915,13 @@ Array [ "code": "ENUM_CASE_MISMATCH", "description": "Aggregative state based on the standard's supported controls states", "directives": Object {}, - "jsonPath": "$.value[0].properties.state", + "jsonPath": "$['value'][0]['properties']['state']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceStandardList_example.json", "message": "Enum does not match case for: failed", "params": Array [ "failed", ], - "path": "value/0/properties/state", + "path": "$/value/0/properties/state", "position": Object { "column": 18, "line": 335, @@ -100370,7 +100962,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Regulatory compliance standard details and state", "directives": Object {}, - "jsonPath": "$.value", + "jsonPath": "$['value']", "jsonPosition": Object { "column": 21, "line": 9, @@ -100380,7 +100972,7 @@ Array [ "params": Array [ "value", ], - "path": "value", + "path": "$/value", "position": Object { "column": 37, "line": 315, @@ -100421,13 +101013,13 @@ Array [ "code": "ENUM_CASE_MISMATCH", "description": "Aggregative state based on the control's supported assessments states", "directives": Object {}, - "jsonPath": "$.value[2].properties.state", + "jsonPath": "$['value'][2]['properties']['state']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceControlList_example.json", "message": "Enum does not match case for: unsupported", "params": Array [ "unsupported", ], - "path": "value/2/properties/state", + "path": "$/value/2/properties/state", "position": Object { "column": 18, "line": 427, @@ -100447,13 +101039,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Regulatory compliance control data", "directives": Object {}, - "jsonPath": "$.value[2].properties.unsupportedAssessments", + "jsonPath": "$['value'][2]['properties']['unsupportedAssessments']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceControlList_example.json", "message": "Additional properties not allowed: unsupportedAssessments", "params": Array [ "unsupportedAssessments", ], - "path": "value/2/properties/unsupportedAssessments", + "path": "$/value/2/properties/unsupportedAssessments", "position": Object { "column": 46, "line": 418, @@ -100473,13 +101065,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Regulatory compliance control data", "directives": Object {}, - "jsonPath": "$.value[2].properties.standardName", + "jsonPath": "$['value'][2]['properties']['standardName']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceControlList_example.json", "message": "Additional properties not allowed: standardName", "params": Array [ "standardName", ], - "path": "value/2/properties/standardName", + "path": "$/value/2/properties/standardName", "position": Object { "column": 46, "line": 418, @@ -100499,13 +101091,13 @@ Array [ "code": "ENUM_CASE_MISMATCH", "description": "Aggregative state based on the control's supported assessments states", "directives": Object {}, - "jsonPath": "$.value[1].properties.state", + "jsonPath": "$['value'][1]['properties']['state']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceControlList_example.json", "message": "Enum does not match case for: skipped", "params": Array [ "skipped", ], - "path": "value/1/properties/state", + "path": "$/value/1/properties/state", "position": Object { "column": 18, "line": 427, @@ -100525,13 +101117,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Regulatory compliance control data", "directives": Object {}, - "jsonPath": "$.value[1].properties.unsupportedAssessments", + "jsonPath": "$['value'][1]['properties']['unsupportedAssessments']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceControlList_example.json", "message": "Additional properties not allowed: unsupportedAssessments", "params": Array [ "unsupportedAssessments", ], - "path": "value/1/properties/unsupportedAssessments", + "path": "$/value/1/properties/unsupportedAssessments", "position": Object { "column": 46, "line": 418, @@ -100551,13 +101143,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Regulatory compliance control data", "directives": Object {}, - "jsonPath": "$.value[1].properties.standardName", + "jsonPath": "$['value'][1]['properties']['standardName']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceControlList_example.json", "message": "Additional properties not allowed: standardName", "params": Array [ "standardName", ], - "path": "value/1/properties/standardName", + "path": "$/value/1/properties/standardName", "position": Object { "column": 46, "line": 418, @@ -100577,13 +101169,13 @@ Array [ "code": "ENUM_CASE_MISMATCH", "description": "Aggregative state based on the control's supported assessments states", "directives": Object {}, - "jsonPath": "$.value[0].properties.state", + "jsonPath": "$['value'][0]['properties']['state']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceControlList_example.json", "message": "Enum does not match case for: failed", "params": Array [ "failed", ], - "path": "value/0/properties/state", + "path": "$/value/0/properties/state", "position": Object { "column": 18, "line": 427, @@ -100603,13 +101195,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Regulatory compliance control data", "directives": Object {}, - "jsonPath": "$.value[0].properties.unsupportedAssessments", + "jsonPath": "$['value'][0]['properties']['unsupportedAssessments']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceControlList_example.json", "message": "Additional properties not allowed: unsupportedAssessments", "params": Array [ "unsupportedAssessments", ], - "path": "value/0/properties/unsupportedAssessments", + "path": "$/value/0/properties/unsupportedAssessments", "position": Object { "column": 46, "line": 418, @@ -100629,13 +101221,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Regulatory compliance control data", "directives": Object {}, - "jsonPath": "$.value[0].properties.standardName", + "jsonPath": "$['value'][0]['properties']['standardName']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceControlList_example.json", "message": "Additional properties not allowed: standardName", "params": Array [ "standardName", ], - "path": "value/0/properties/standardName", + "path": "$/value/0/properties/standardName", "position": Object { "column": 46, "line": 418, @@ -100676,7 +101268,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Regulatory compliance control details and state", "directives": Object {}, - "jsonPath": "$.value", + "jsonPath": "$['value']", "jsonPosition": Object { "column": 21, "line": 10, @@ -100686,7 +101278,7 @@ Array [ "params": Array [ "value", ], - "path": "value", + "path": "$/value", "position": Object { "column": 36, "line": 402, @@ -100727,13 +101319,13 @@ Array [ "code": "ENUM_CASE_MISMATCH", "description": "Aggregative state based on the assessment's scanned resources states", "directives": Object {}, - "jsonPath": "$.value[2].properties.state", + "jsonPath": "$['value'][2]['properties']['state']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceAssessmentList_example.json", "message": "Enum does not match case for: passed", "params": Array [ "passed", ], - "path": "value/2/properties/state", + "path": "$/value/2/properties/state", "position": Object { "column": 18, "line": 523, @@ -100753,13 +101345,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Regulatory compliance assessment data", "directives": Object {}, - "jsonPath": "$.value[2].properties.controlName", + "jsonPath": "$['value'][2]['properties']['controlName']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceAssessmentList_example.json", "message": "Additional properties not allowed: controlName", "params": Array [ "controlName", ], - "path": "value/2/properties/controlName", + "path": "$/value/2/properties/controlName", "position": Object { "column": 49, "line": 504, @@ -100779,13 +101371,13 @@ Array [ "code": "ENUM_CASE_MISMATCH", "description": "Aggregative state based on the assessment's scanned resources states", "directives": Object {}, - "jsonPath": "$.value[1].properties.state", + "jsonPath": "$['value'][1]['properties']['state']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceAssessmentList_example.json", "message": "Enum does not match case for: skipped", "params": Array [ "skipped", ], - "path": "value/1/properties/state", + "path": "$/value/1/properties/state", "position": Object { "column": 18, "line": 523, @@ -100805,13 +101397,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Regulatory compliance assessment data", "directives": Object {}, - "jsonPath": "$.value[1].properties.controlName", + "jsonPath": "$['value'][1]['properties']['controlName']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceAssessmentList_example.json", "message": "Additional properties not allowed: controlName", "params": Array [ "controlName", ], - "path": "value/1/properties/controlName", + "path": "$/value/1/properties/controlName", "position": Object { "column": 49, "line": 504, @@ -100831,13 +101423,13 @@ Array [ "code": "ENUM_CASE_MISMATCH", "description": "Aggregative state based on the assessment's scanned resources states", "directives": Object {}, - "jsonPath": "$.value[0].properties.state", + "jsonPath": "$['value'][0]['properties']['state']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceAssessmentList_example.json", "message": "Enum does not match case for: failed", "params": Array [ "failed", ], - "path": "value/0/properties/state", + "path": "$/value/0/properties/state", "position": Object { "column": 18, "line": 523, @@ -100857,13 +101449,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Regulatory compliance assessment data", "directives": Object {}, - "jsonPath": "$.value[0].properties.controlName", + "jsonPath": "$['value'][0]['properties']['controlName']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/security/resource-manager/Microsoft.Security/preview/2019-01-01-preview/examples/RegulatoryCompliance/getRegulatoryComplianceAssessmentList_example.json", "message": "Additional properties not allowed: controlName", "params": Array [ "controlName", ], - "path": "value/0/properties/controlName", + "path": "$/value/0/properties/controlName", "position": Object { "column": 49, "line": 504, @@ -100904,7 +101496,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Regulatory compliance assessment details and state", "directives": Object {}, - "jsonPath": "$.value", + "jsonPath": "$['value']", "jsonPosition": Object { "column": 12, "line": 11, @@ -100914,7 +101506,7 @@ Array [ "params": Array [ "value", ], - "path": "value", + "path": "$/value", "position": Object { "column": 39, "line": 488, @@ -100941,13 +101533,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Security/pricings\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Security/pricings", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 52, @@ -100967,13 +101559,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"VirtualMachines\\"\`, cannot be sent in the request.", "params": Array [ "name", "VirtualMachines", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 47, @@ -100993,13 +101585,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Id", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/VirtualMachines\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Security/pricings/VirtualMachines", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 42, @@ -101030,13 +101622,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource type", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.SecurityInsights/alertRules\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.SecurityInsights/alertRules", ], - "path": "type", + "path": "$/type", "position": Object { "column": 25, "line": 2726, @@ -101056,13 +101648,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"73e01a99-5cd7-4139-a149-9f2736ff2ab5\\"\`, cannot be sent in the request.", "params": Array [ "name", "73e01a99-5cd7-4139-a149-9f2736ff2ab5", ], - "path": "name", + "path": "$/name", "position": Object { "column": 25, "line": 2731, @@ -101082,13 +101674,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource Id", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/alertRules/73e01a99-5cd7-4139-a149-9f2736ff2ab5\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/alertRules/73e01a99-5cd7-4139-a149-9f2736ff2ab5", ], - "path": "id", + "path": "$/id", "position": Object { "column": 23, "line": 2721, @@ -101108,13 +101700,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource type", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.SecurityInsights/alertRules/actions\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.SecurityInsights/alertRules/actions", ], - "path": "type", + "path": "$/type", "position": Object { "column": 25, "line": 2726, @@ -101134,13 +101726,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"912bec42-cb66-4c03-ac63-1761b6898c3e\\"\`, cannot be sent in the request.", "params": Array [ "name", "912bec42-cb66-4c03-ac63-1761b6898c3e", ], - "path": "name", + "path": "$/name", "position": Object { "column": 25, "line": 2731, @@ -101160,13 +101752,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource Id", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/alertRules/73e01a99-5cd7-4139-a149-9f2736ff2ab5/actions/912bec42-cb66-4c03-ac63-1761b6898c3e\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/alertRules/73e01a99-5cd7-4139-a149-9f2736ff2ab5/actions/912bec42-cb66-4c03-ac63-1761b6898c3e", ], - "path": "id", + "path": "$/id", "position": Object { "column": 23, "line": 2721, @@ -101186,14 +101778,14 @@ Array [ "code": "INVALID_TYPE", "description": "List of labels relevant to this case", "directives": Object {}, - "jsonPath": "$.value[0].properties.labels", + "jsonPath": "$['value'][0]['properties']['labels']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/cases/GetCases.json", "message": "Expected type array but found type string", "params": Array [ "array", "string", ], - "path": "value/0/properties/labels", + "path": "$/value/0/properties/labels", "position": Object { "column": 27, "line": 1845, @@ -101234,14 +101826,14 @@ Array [ "code": "INVALID_TYPE", "description": "List of labels relevant to this case", "directives": Object {}, - "jsonPath": "$.properties.labels", + "jsonPath": "$['properties']['labels']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/cases/GetCaseById.json", "message": "Expected type array but found type string", "params": Array [ "array", "string", ], - "path": "properties/labels", + "path": "$/properties/labels", "position": Object { "column": 27, "line": 1845, @@ -101261,13 +101853,13 @@ Array [ "code": "INVALID_TYPE", "description": "List of labels relevant to this case", "directives": Object {}, - "jsonPath": "$.properties.labels", + "jsonPath": "$['properties']['labels']", "message": "Expected type array but found type string", "params": Array [ "array", "string", ], - "path": "properties/labels", + "path": "$/properties/labels", "position": Object { "column": 27, "line": 1845, @@ -101287,13 +101879,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource type", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.SecurityInsights/cases\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.SecurityInsights/cases", ], - "path": "type", + "path": "$/type", "position": Object { "column": 25, "line": 2726, @@ -101313,13 +101905,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"73e01a99-5cd7-4139-a149-9f2736ff2ab5\\"\`, cannot be sent in the request.", "params": Array [ "name", "73e01a99-5cd7-4139-a149-9f2736ff2ab5", ], - "path": "name", + "path": "$/name", "position": Object { "column": 25, "line": 2731, @@ -101339,13 +101931,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource Id", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/cases/73e01a99-5cd7-4139-a149-9f2736ff2ab5\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/cases/73e01a99-5cd7-4139-a149-9f2736ff2ab5", ], - "path": "id", + "path": "$/id", "position": Object { "column": 23, "line": 2721, @@ -101365,14 +101957,14 @@ Array [ "code": "INVALID_TYPE", "description": "List of labels relevant to this case", "directives": Object {}, - "jsonPath": "$.properties.labels", + "jsonPath": "$['properties']['labels']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/cases/CreateCase.json", "message": "Expected type array but found type string", "params": Array [ "array", "string", ], - "path": "properties/labels", + "path": "$/properties/labels", "position": Object { "column": 27, "line": 1845, @@ -101392,7 +101984,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Represents a case in Azure Security Insights.", "directives": Object {}, - "jsonPath": "$.kind", + "jsonPath": "$['kind']", "jsonPosition": Object { "column": 21, "line": 60, @@ -101402,7 +101994,7 @@ Array [ "params": Array [ "kind", ], - "path": "kind", + "path": "$/kind", "position": Object { "column": 17, "line": 1801, @@ -101422,14 +102014,14 @@ Array [ "code": "INVALID_TYPE", "description": "List of labels relevant to this case", "directives": Object {}, - "jsonPath": "$.properties.labels", + "jsonPath": "$['properties']['labels']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/cases/CreateCase.json", "message": "Expected type array but found type string", "params": Array [ "array", "string", ], - "path": "properties/labels", + "path": "$/properties/labels", "position": Object { "column": 27, "line": 1845, @@ -101449,14 +102041,14 @@ Array [ "code": "INVALID_TYPE", "description": "List of labels relevant to this bookmark", "directives": Object {}, - "jsonPath": "$.value[0].properties.labels", + "jsonPath": "$['value'][0]['properties']['labels']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/bookmarks/GetBookmarks.json", "message": "Expected type array but found type string", "params": Array [ "array", "string", ], - "path": "value/0/properties/labels", + "path": "$/value/0/properties/labels", "position": Object { "column": 27, "line": 2040, @@ -101476,7 +102068,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Represents a bookmark in Azure Security Insights.", "directives": Object {}, - "jsonPath": "$.kind", + "jsonPath": "$['kind']", "jsonPosition": Object { "column": 21, "line": 12, @@ -101486,7 +102078,7 @@ Array [ "params": Array [ "kind", ], - "path": "kind", + "path": "$/kind", "position": Object { "column": 21, "line": 1988, @@ -101506,14 +102098,14 @@ Array [ "code": "INVALID_TYPE", "description": "List of labels relevant to this bookmark", "directives": Object {}, - "jsonPath": "$.properties.labels", + "jsonPath": "$['properties']['labels']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/bookmarks/GetBookmarkById.json", "message": "Expected type array but found type string", "params": Array [ "array", "string", ], - "path": "properties/labels", + "path": "$/properties/labels", "position": Object { "column": 27, "line": 2040, @@ -101533,13 +102125,13 @@ Array [ "code": "INVALID_TYPE", "description": "List of labels relevant to this bookmark", "directives": Object {}, - "jsonPath": "$.properties.labels", + "jsonPath": "$['properties']['labels']", "message": "Expected type array but found type string", "params": Array [ "array", "string", ], - "path": "properties/labels", + "path": "$/properties/labels", "position": Object { "column": 27, "line": 2040, @@ -101559,13 +102151,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource type", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.SecurityInsights/bookmarks\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.SecurityInsights/bookmarks", ], - "path": "type", + "path": "$/type", "position": Object { "column": 25, "line": 2726, @@ -101585,13 +102177,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"73e01a99-5cd7-4139-a149-9f2736ff2ab5\\"\`, cannot be sent in the request.", "params": Array [ "name", "73e01a99-5cd7-4139-a149-9f2736ff2ab5", ], - "path": "name", + "path": "$/name", "position": Object { "column": 25, "line": 2731, @@ -101611,13 +102203,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource Id", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/bookmarks/73e01a99-5cd7-4139-a149-9f2736ff2ab5\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/bookmarks/73e01a99-5cd7-4139-a149-9f2736ff2ab5", ], - "path": "id", + "path": "$/id", "position": Object { "column": 23, "line": 2721, @@ -101637,14 +102229,14 @@ Array [ "code": "INVALID_TYPE", "description": "List of labels relevant to this bookmark", "directives": Object {}, - "jsonPath": "$.properties.labels", + "jsonPath": "$['properties']['labels']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/bookmarks/CreateBookmark.json", "message": "Expected type array but found type string", "params": Array [ "array", "string", ], - "path": "properties/labels", + "path": "$/properties/labels", "position": Object { "column": 27, "line": 2040, @@ -101664,14 +102256,14 @@ Array [ "code": "INVALID_TYPE", "description": "List of labels relevant to this bookmark", "directives": Object {}, - "jsonPath": "$.properties.labels", + "jsonPath": "$['properties']['labels']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/bookmarks/CreateBookmark.json", "message": "Expected type array but found type string", "params": Array [ "array", "string", ], - "path": "properties/labels", + "path": "$/properties/labels", "position": Object { "column": 27, "line": 2040, @@ -101691,13 +102283,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource type", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.SecurityInsights/dataConnectors\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.SecurityInsights/dataConnectors", ], - "path": "type", + "path": "$/type", "position": Object { "column": 25, "line": 2726, @@ -101717,13 +102309,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"73e01a99-5cd7-4139-a149-9f2736ff2ab5\\"\`, cannot be sent in the request.", "params": Array [ "name", "73e01a99-5cd7-4139-a149-9f2736ff2ab5", ], - "path": "name", + "path": "$/name", "position": Object { "column": 25, "line": 2731, @@ -101743,13 +102335,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource Id", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/73e01a99-5cd7-4139-a149-9f2736ff2ab5\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/dataConnectors/73e01a99-5cd7-4139-a149-9f2736ff2ab5", ], - "path": "id", + "path": "$/id", "position": Object { "column": 23, "line": 2721, @@ -101769,7 +102361,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Represents a file entity.", "directives": Object {}, - "jsonPath": "$.value[2].etag", + "jsonPath": "$['value'][2]['etag']", "jsonPosition": Object { "column": 21, "line": 49, @@ -101779,7 +102371,7 @@ Array [ "params": Array [ "etag", ], - "path": "value/2/etag", + "path": "$/value/2/etag", "position": Object { "column": 23, "line": 2633, @@ -101799,7 +102391,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Represents a host entity.", "directives": Object {}, - "jsonPath": "$.value[1].etag", + "jsonPath": "$['value'][1]['etag']", "jsonPosition": Object { "column": 21, "line": 31, @@ -101809,7 +102401,7 @@ Array [ "params": Array [ "etag", ], - "path": "value/1/etag", + "path": "$/value/1/etag", "position": Object { "column": 23, "line": 2538, @@ -101829,13 +102421,13 @@ Array [ "code": "ENUM_MISMATCH", "description": "The operating system type.", "directives": Object {}, - "jsonPath": "$.value[1].properties.osFamily", + "jsonPath": "$['value'][1]['properties']['osFamily']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/entities/GetEntities.json", "message": "No enum match for: f7033626-2572-46b1-bba0-06646f4f95b3", "params": Array [ "f7033626-2572-46b1-bba0-06646f4f95b3", ], - "path": "value/1/properties/osFamily", + "path": "$/value/1/properties/osFamily", "position": Object { "column": 29, "line": 2589, @@ -101855,7 +102447,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Represents an account entity.", "directives": Object {}, - "jsonPath": "$.value[0].etag", + "jsonPath": "$['value'][0]['etag']", "jsonPosition": Object { "column": 21, "line": 13, @@ -101865,7 +102457,7 @@ Array [ "params": Array [ "etag", ], - "path": "value/0/etag", + "path": "$/value/0/etag", "position": Object { "column": 26, "line": 2469, @@ -101885,7 +102477,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Represents an account entity.", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 21, "line": 12, @@ -101895,7 +102487,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 26, "line": 2469, @@ -101915,7 +102507,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Represents a host entity.", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 21, "line": 12, @@ -101925,7 +102517,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 23, "line": 2538, @@ -101945,13 +102537,13 @@ Array [ "code": "ENUM_MISMATCH", "description": "The operating system type.", "directives": Object {}, - "jsonPath": "$.properties.osFamily", + "jsonPath": "$['properties']['osFamily']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/entities/GetHostEntityById.json", "message": "No enum match for: f7033626-2572-46b1-bba0-06646f4f95b3", "params": Array [ "f7033626-2572-46b1-bba0-06646f4f95b3", ], - "path": "properties/osFamily", + "path": "$/properties/osFamily", "position": Object { "column": 29, "line": 2589, @@ -101971,7 +102563,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Represents a file entity.", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 21, "line": 12, @@ -101981,7 +102573,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 23, "line": 2633, @@ -102001,7 +102593,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Represents settings for User and Entity Behavior Analytics enablement.", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 21, "line": 12, @@ -102011,7 +102603,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 25, "line": 2769, @@ -102031,14 +102623,14 @@ Array [ "code": "INVALID_TYPE", "description": "Determines whether the tenant has ATP (Advanced Threat Protection) license.", "directives": Object {}, - "jsonPath": "$.properties.atpLicenseStatus", + "jsonPath": "$['properties']['atpLicenseStatus']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/settings/GetUebaSettings.json", "message": "Expected type boolean but found type string", "params": Array [ "boolean", "string", ], - "path": "properties/atpLicenseStatus", + "path": "$/properties/atpLicenseStatus", "position": Object { "column": 37, "line": 2807, @@ -102058,7 +102650,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Settings with single toggle.", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 21, "line": 12, @@ -102068,7 +102660,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 27, "line": 2822, @@ -102088,12 +102680,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Represents settings for User and Entity Behavior Analytics enablement.", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "message": "Additional properties not allowed: etag", "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 25, "line": 2769, @@ -102113,13 +102705,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Determines whether User and Entity Behavior Analytics is enabled from MCAS (Microsoft Cloud App Security).", "directives": Object {}, - "jsonPath": "$.properties.statusInMcas", + "jsonPath": "$['properties']['statusInMcas']", "message": "ReadOnly property \`\\"statusInMcas\\": \\"Enabled\\"\`, cannot be sent in the request.", "params": Array [ "statusInMcas", "Enabled", ], - "path": "properties/statusInMcas", + "path": "$/properties/statusInMcas", "position": Object { "column": 33, "line": 2794, @@ -102139,13 +102731,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Determines whether the tenant has ATP (Advanced Threat Protection) license.", "directives": Object {}, - "jsonPath": "$.properties.atpLicenseStatus", + "jsonPath": "$['properties']['atpLicenseStatus']", "message": "ReadOnly property \`\\"atpLicenseStatus\\": Enabled\`, cannot be sent in the request.", "params": Array [ "atpLicenseStatus", "Enabled", ], - "path": "properties/atpLicenseStatus", + "path": "$/properties/atpLicenseStatus", "position": Object { "column": 37, "line": 2807, @@ -102165,13 +102757,13 @@ Array [ "code": "INVALID_TYPE", "description": "Determines whether the tenant has ATP (Advanced Threat Protection) license.", "directives": Object {}, - "jsonPath": "$.properties.atpLicenseStatus", + "jsonPath": "$['properties']['atpLicenseStatus']", "message": "Expected type boolean but found type string", "params": Array [ "boolean", "string", ], - "path": "properties/atpLicenseStatus", + "path": "$/properties/atpLicenseStatus", "position": Object { "column": 37, "line": 2807, @@ -102191,13 +102783,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource type", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.SecurityInsights/settings\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.SecurityInsights/settings", ], - "path": "type", + "path": "$/type", "position": Object { "column": 25, "line": 2726, @@ -102217,13 +102809,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"UEBA\\"\`, cannot be sent in the request.", "params": Array [ "name", "UEBA", ], - "path": "name", + "path": "$/name", "position": Object { "column": 25, "line": 2731, @@ -102243,13 +102835,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource Id", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/settings/UEBA\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalIinsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/settings/UEBA", ], - "path": "id", + "path": "$/id", "position": Object { "column": 23, "line": 2721, @@ -102269,7 +102861,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Represents settings for User and Entity Behavior Analytics enablement.", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 21, "line": 24, @@ -102279,7 +102871,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 25, "line": 2769, @@ -102299,14 +102891,14 @@ Array [ "code": "INVALID_TYPE", "description": "Determines whether the tenant has ATP (Advanced Threat Protection) license.", "directives": Object {}, - "jsonPath": "$.properties.atpLicenseStatus", + "jsonPath": "$['properties']['atpLicenseStatus']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2019-01-01-preview/examples/settings/UpdateUebaSettings.json", "message": "Expected type boolean but found type string", "params": Array [ "boolean", "string", ], - "path": "properties/atpLicenseStatus", + "path": "$/properties/atpLicenseStatus", "position": Object { "column": 37, "line": 2807, @@ -102326,7 +102918,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The aggregation.", "directives": Object {}, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "jsonPosition": Object { "column": 21, "line": 12, @@ -102336,7 +102928,7 @@ Array [ "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 25, "line": 2849, @@ -102394,90 +102986,90 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The object that represents the operation.", "directives": Object {}, - "jsonPath": "$.value[0].display.description", + "jsonPath": "$['value'][0]['display']['description']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/examples/SBOperations_List.json", "message": "Additional properties not allowed: description", "params": Array [ "description", ], - "path": "value/0/display/description", + "path": "$/value/0/display/description", "position": Object { "column": 20, "line": 2650, }, "similarJsonPaths": Array [ - "$.value[1].display.description", - "$.value[2].display.description", - "$.value[3].display.description", - "$.value[4].display.description", - "$.value[5].display.description", - "$.value[6].display.description", - "$.value[7].display.description", - "$.value[8].display.description", - "$.value[9].display.description", - "$.value[10].display.description", - "$.value[11].display.description", - "$.value[12].display.description", - "$.value[13].display.description", - "$.value[14].display.description", - "$.value[15].display.description", - "$.value[16].display.description", - "$.value[17].display.description", - "$.value[18].display.description", - "$.value[19].display.description", - "$.value[20].display.description", - "$.value[21].display.description", - "$.value[22].display.description", - "$.value[23].display.description", - "$.value[24].display.description", - "$.value[25].display.description", - "$.value[26].display.description", - "$.value[27].display.description", - "$.value[28].display.description", - "$.value[29].display.description", - "$.value[30].display.description", - "$.value[31].display.description", - "$.value[32].display.description", - "$.value[33].display.description", - "$.value[34].display.description", - "$.value[35].display.description", + "$['value'][1]['display']['description']", + "$['value'][2]['display']['description']", + "$['value'][3]['display']['description']", + "$['value'][4]['display']['description']", + "$['value'][5]['display']['description']", + "$['value'][6]['display']['description']", + "$['value'][7]['display']['description']", + "$['value'][8]['display']['description']", + "$['value'][9]['display']['description']", + "$['value'][10]['display']['description']", + "$['value'][11]['display']['description']", + "$['value'][12]['display']['description']", + "$['value'][13]['display']['description']", + "$['value'][14]['display']['description']", + "$['value'][15]['display']['description']", + "$['value'][16]['display']['description']", + "$['value'][17]['display']['description']", + "$['value'][18]['display']['description']", + "$['value'][19]['display']['description']", + "$['value'][20]['display']['description']", + "$['value'][21]['display']['description']", + "$['value'][22]['display']['description']", + "$['value'][23]['display']['description']", + "$['value'][24]['display']['description']", + "$['value'][25]['display']['description']", + "$['value'][26]['display']['description']", + "$['value'][27]['display']['description']", + "$['value'][28]['display']['description']", + "$['value'][29]['display']['description']", + "$['value'][30]['display']['description']", + "$['value'][31]['display']['description']", + "$['value'][32]['display']['description']", + "$['value'][33]['display']['description']", + "$['value'][34]['display']['description']", + "$['value'][35]['display']['description']", ], "similarPaths": Array [ - "value/1/display/description", - "value/2/display/description", - "value/3/display/description", - "value/4/display/description", - "value/5/display/description", - "value/6/display/description", - "value/7/display/description", - "value/8/display/description", - "value/9/display/description", - "value/10/display/description", - "value/11/display/description", - "value/12/display/description", - "value/13/display/description", - "value/14/display/description", - "value/15/display/description", - "value/16/display/description", - "value/17/display/description", - "value/18/display/description", - "value/19/display/description", - "value/20/display/description", - "value/21/display/description", - "value/22/display/description", - "value/23/display/description", - "value/24/display/description", - "value/25/display/description", - "value/26/display/description", - "value/27/display/description", - "value/28/display/description", - "value/29/display/description", - "value/30/display/description", - "value/31/display/description", - "value/32/display/description", - "value/33/display/description", - "value/34/display/description", - "value/35/display/description", + "$/value/1/display/description", + "$/value/2/display/description", + "$/value/3/display/description", + "$/value/4/display/description", + "$/value/5/display/description", + "$/value/6/display/description", + "$/value/7/display/description", + "$/value/8/display/description", + "$/value/9/display/description", + "$/value/10/display/description", + "$/value/11/display/description", + "$/value/12/display/description", + "$/value/13/display/description", + "$/value/14/display/description", + "$/value/15/display/description", + "$/value/16/display/description", + "$/value/17/display/description", + "$/value/18/display/description", + "$/value/19/display/description", + "$/value/20/display/description", + "$/value/21/display/description", + "$/value/22/display/description", + "$/value/23/display/description", + "$/value/24/display/description", + "$/value/25/display/description", + "$/value/26/display/description", + "$/value/27/display/description", + "$/value/28/display/description", + "$/value/29/display/description", + "$/value/30/display/description", + "$/value/31/display/description", + "$/value/32/display/description", + "$/value/33/display/description", + "$/value/34/display/description", + "$/value/35/display/description", ], "title": "#/definitions/Operation/properties/display", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2015-08-01/servicebus.json", @@ -102569,13 +103161,13 @@ Array [ "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.ScalingPolicies[0].ScalingTrigger.LowerLoadThreshold", + "jsonPath": "$['ScalingPolicies'][0]['ScalingTrigger']['LowerLoadThreshold']", "message": "Expected type string but found type number", "params": Array [ "string", "number", ], - "path": "ScalingPolicies/0/ScalingTrigger/LowerLoadThreshold", + "path": "$/ScalingPolicies/0/ScalingTrigger/LowerLoadThreshold", "position": Object { "column": 31, "line": 19929, @@ -102611,13 +103203,13 @@ Array [ "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.ScalingPolicies[0].ScalingTrigger.UpperLoadThreshold", + "jsonPath": "$['ScalingPolicies'][0]['ScalingTrigger']['UpperLoadThreshold']", "message": "Expected type string but found type number", "params": Array [ "string", "number", ], - "path": "ScalingPolicies/0/ScalingTrigger/UpperLoadThreshold", + "path": "$/ScalingPolicies/0/ScalingTrigger/UpperLoadThreshold", "position": Object { "column": 31, "line": 19934, @@ -102653,13 +103245,13 @@ Array [ "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.ScalingPolicies[0].ScalingTrigger.LowerLoadThreshold", + "jsonPath": "$['ScalingPolicies'][0]['ScalingTrigger']['LowerLoadThreshold']", "message": "Expected type string but found type integer", "params": Array [ "string", "integer", ], - "path": "ScalingPolicies/0/ScalingTrigger/LowerLoadThreshold", + "path": "$/ScalingPolicies/0/ScalingTrigger/LowerLoadThreshold", "position": Object { "column": 31, "line": 19970, @@ -102695,13 +103287,13 @@ Array [ "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.ScalingPolicies[0].ScalingTrigger.UpperLoadThreshold", + "jsonPath": "$['ScalingPolicies'][0]['ScalingTrigger']['UpperLoadThreshold']", "message": "Expected type string but found type integer", "params": Array [ "string", "integer", ], - "path": "ScalingPolicies/0/ScalingTrigger/UpperLoadThreshold", + "path": "$/ScalingPolicies/0/ScalingTrigger/UpperLoadThreshold", "position": Object { "column": 31, "line": 19975, @@ -102737,12 +103329,12 @@ Array [ "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.PartitionDescription.Count", + "jsonPath": "$['PartitionDescription']['Count']", "message": "Additional properties not allowed: Count", "params": Array [ "Count", ], - "path": "PartitionDescription/Count", + "path": "$/PartitionDescription/Count", "position": Object { "column": 35, "line": 15694, @@ -102778,12 +103370,12 @@ Array [ "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.PartitionDescription.Names", + "jsonPath": "$['PartitionDescription']['Names']", "message": "Additional properties not allowed: Names", "params": Array [ "Names", ], - "path": "PartitionDescription/Names", + "path": "$/PartitionDescription/Names", "position": Object { "column": 35, "line": 15694, @@ -102819,13 +103411,13 @@ Array [ "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.ScalingPolicies[0].ScalingTrigger.LowerLoadThreshold", + "jsonPath": "$['ScalingPolicies'][0]['ScalingTrigger']['LowerLoadThreshold']", "message": "Expected type string but found type number", "params": Array [ "string", "number", ], - "path": "ScalingPolicies/0/ScalingTrigger/LowerLoadThreshold", + "path": "$/ScalingPolicies/0/ScalingTrigger/LowerLoadThreshold", "position": Object { "column": 31, "line": 19929, @@ -102861,13 +103453,13 @@ Array [ "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.ScalingPolicies[0].ScalingTrigger.UpperLoadThreshold", + "jsonPath": "$['ScalingPolicies'][0]['ScalingTrigger']['UpperLoadThreshold']", "message": "Expected type string but found type number", "params": Array [ "string", "number", ], - "path": "ScalingPolicies/0/ScalingTrigger/UpperLoadThreshold", + "path": "$/ScalingPolicies/0/ScalingTrigger/UpperLoadThreshold", "position": Object { "column": 31, "line": 19934, @@ -102907,12 +103499,12 @@ the entire batch fails and cannot be committed in a transactional manner.", "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.Operations[0].Exists", + "jsonPath": "$['Operations'][0]['Exists']", "message": "Missing required property: Exists", "params": Array [ "Exists", ], - "path": "Operations/0/Exists", + "path": "$/Operations/0/Exists", "position": Object { "column": 42, "line": 17786, @@ -102952,12 +103544,12 @@ the entire batch fails and cannot be committed in a transactional manner.", "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.Operations[0].Exits", + "jsonPath": "$['Operations'][0]['Exits']", "message": "Additional properties not allowed: Exits", "params": Array [ "Exits", ], - "path": "Operations/0/Exits", + "path": "$/Operations/0/Exits", "position": Object { "column": 42, "line": 17786, @@ -103064,13 +103656,13 @@ Array [ "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.ScalingPolicies[0].ScalingTrigger.LowerLoadThreshold", + "jsonPath": "$['ScalingPolicies'][0]['ScalingTrigger']['LowerLoadThreshold']", "message": "Expected type string but found type number", "params": Array [ "string", "number", ], - "path": "ScalingPolicies/0/ScalingTrigger/LowerLoadThreshold", + "path": "$/ScalingPolicies/0/ScalingTrigger/LowerLoadThreshold", "position": Object { "column": 31, "line": 20340, @@ -103106,13 +103698,13 @@ Array [ "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.ScalingPolicies[0].ScalingTrigger.UpperLoadThreshold", + "jsonPath": "$['ScalingPolicies'][0]['ScalingTrigger']['UpperLoadThreshold']", "message": "Expected type string but found type number", "params": Array [ "string", "number", ], - "path": "ScalingPolicies/0/ScalingTrigger/UpperLoadThreshold", + "path": "$/ScalingPolicies/0/ScalingTrigger/UpperLoadThreshold", "position": Object { "column": 31, "line": 20345, @@ -103148,13 +103740,13 @@ Array [ "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.ScalingPolicies[0].ScalingTrigger.LowerLoadThreshold", + "jsonPath": "$['ScalingPolicies'][0]['ScalingTrigger']['LowerLoadThreshold']", "message": "Expected type string but found type integer", "params": Array [ "string", "integer", ], - "path": "ScalingPolicies/0/ScalingTrigger/LowerLoadThreshold", + "path": "$/ScalingPolicies/0/ScalingTrigger/LowerLoadThreshold", "position": Object { "column": 31, "line": 20381, @@ -103190,13 +103782,13 @@ Array [ "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.ScalingPolicies[0].ScalingTrigger.UpperLoadThreshold", + "jsonPath": "$['ScalingPolicies'][0]['ScalingTrigger']['UpperLoadThreshold']", "message": "Expected type string but found type integer", "params": Array [ "string", "integer", ], - "path": "ScalingPolicies/0/ScalingTrigger/UpperLoadThreshold", + "path": "$/ScalingPolicies/0/ScalingTrigger/UpperLoadThreshold", "position": Object { "column": 31, "line": 20386, @@ -103232,12 +103824,12 @@ Array [ "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.PartitionDescription.Count", + "jsonPath": "$['PartitionDescription']['Count']", "message": "Additional properties not allowed: Count", "params": Array [ "Count", ], - "path": "PartitionDescription/Count", + "path": "$/PartitionDescription/Count", "position": Object { "column": 35, "line": 16105, @@ -103273,12 +103865,12 @@ Array [ "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.PartitionDescription.Names", + "jsonPath": "$['PartitionDescription']['Names']", "message": "Additional properties not allowed: Names", "params": Array [ "Names", ], - "path": "PartitionDescription/Names", + "path": "$/PartitionDescription/Names", "position": Object { "column": 35, "line": 16105, @@ -103314,13 +103906,13 @@ Array [ "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.ScalingPolicies[0].ScalingTrigger.LowerLoadThreshold", + "jsonPath": "$['ScalingPolicies'][0]['ScalingTrigger']['LowerLoadThreshold']", "message": "Expected type string but found type number", "params": Array [ "string", "number", ], - "path": "ScalingPolicies/0/ScalingTrigger/LowerLoadThreshold", + "path": "$/ScalingPolicies/0/ScalingTrigger/LowerLoadThreshold", "position": Object { "column": 31, "line": 20340, @@ -103356,13 +103948,13 @@ Array [ "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.ScalingPolicies[0].ScalingTrigger.UpperLoadThreshold", + "jsonPath": "$['ScalingPolicies'][0]['ScalingTrigger']['UpperLoadThreshold']", "message": "Expected type string but found type number", "params": Array [ "string", "number", ], - "path": "ScalingPolicies/0/ScalingTrigger/UpperLoadThreshold", + "path": "$/ScalingPolicies/0/ScalingTrigger/UpperLoadThreshold", "position": Object { "column": 31, "line": 20345, @@ -103402,12 +103994,12 @@ the entire batch fails and cannot be committed in a transactional manner.", "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.Operations[0].Exists", + "jsonPath": "$['Operations'][0]['Exists']", "message": "Missing required property: Exists", "params": Array [ "Exists", ], - "path": "Operations/0/Exists", + "path": "$/Operations/0/Exists", "position": Object { "column": 42, "line": 18197, @@ -103447,12 +104039,12 @@ the entire batch fails and cannot be committed in a transactional manner.", "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.Operations[0].Exits", + "jsonPath": "$['Operations'][0]['Exits']", "message": "Additional properties not allowed: Exits", "params": Array [ "Exits", ], - "path": "Operations/0/Exits", + "path": "$/Operations/0/Exits", "position": Object { "column": 42, "line": 18197, @@ -103488,12 +104080,12 @@ the entire batch fails and cannot be committed in a transactional manner.", "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.properties.services[0][0].properties.osType", + "jsonPath": "$['properties']['services'][0][0]['properties']['osType']", "message": "Enum does not match case for: linux", "params": Array [ "linux", ], - "path": "properties/services/0/0/properties/osType", + "path": "$/properties/services/0/0/properties/osType", "position": Object { "column": 19, "line": 24182, @@ -103529,12 +104121,12 @@ the entire batch fails and cannot be committed in a transactional manner.", "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.volumeResourceName", + "jsonPath": "$['volumeResourceName']", "message": "Additional properties not allowed: volumeResourceName", "params": Array [ "volumeResourceName", ], - "path": "volumeResourceName", + "path": "$/volumeResourceName", "position": Object { "column": 34, "line": 23646, @@ -103570,12 +104162,12 @@ the entire batch fails and cannot be committed in a transactional manner.", "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "Missing required property: name", "params": Array [ "name", ], - "path": "name", + "path": "$/name", "position": Object { "column": 34, "line": 23646, @@ -103682,13 +104274,13 @@ Array [ "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.ScalingPolicies[0].ScalingTrigger.LowerLoadThreshold", + "jsonPath": "$['ScalingPolicies'][0]['ScalingTrigger']['LowerLoadThreshold']", "message": "Expected type string but found type number", "params": Array [ "string", "number", ], - "path": "ScalingPolicies/0/ScalingTrigger/LowerLoadThreshold", + "path": "$/ScalingPolicies/0/ScalingTrigger/LowerLoadThreshold", "position": Object { "column": 31, "line": 20572, @@ -103724,13 +104316,13 @@ Array [ "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.ScalingPolicies[0].ScalingTrigger.UpperLoadThreshold", + "jsonPath": "$['ScalingPolicies'][0]['ScalingTrigger']['UpperLoadThreshold']", "message": "Expected type string but found type number", "params": Array [ "string", "number", ], - "path": "ScalingPolicies/0/ScalingTrigger/UpperLoadThreshold", + "path": "$/ScalingPolicies/0/ScalingTrigger/UpperLoadThreshold", "position": Object { "column": 31, "line": 20577, @@ -103766,13 +104358,13 @@ Array [ "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.ScalingPolicies[0].ScalingTrigger.LowerLoadThreshold", + "jsonPath": "$['ScalingPolicies'][0]['ScalingTrigger']['LowerLoadThreshold']", "message": "Expected type string but found type integer", "params": Array [ "string", "integer", ], - "path": "ScalingPolicies/0/ScalingTrigger/LowerLoadThreshold", + "path": "$/ScalingPolicies/0/ScalingTrigger/LowerLoadThreshold", "position": Object { "column": 31, "line": 20610, @@ -103808,13 +104400,13 @@ Array [ "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.ScalingPolicies[0].ScalingTrigger.UpperLoadThreshold", + "jsonPath": "$['ScalingPolicies'][0]['ScalingTrigger']['UpperLoadThreshold']", "message": "Expected type string but found type integer", "params": Array [ "string", "integer", ], - "path": "ScalingPolicies/0/ScalingTrigger/UpperLoadThreshold", + "path": "$/ScalingPolicies/0/ScalingTrigger/UpperLoadThreshold", "position": Object { "column": 31, "line": 20615, @@ -103850,12 +104442,12 @@ Array [ "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.PartitionDescription.Count", + "jsonPath": "$['PartitionDescription']['Count']", "message": "Additional properties not allowed: Count", "params": Array [ "Count", ], - "path": "PartitionDescription/Count", + "path": "$/PartitionDescription/Count", "position": Object { "column": 35, "line": 16518, @@ -103891,12 +104483,12 @@ Array [ "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.PartitionDescription.Names", + "jsonPath": "$['PartitionDescription']['Names']", "message": "Additional properties not allowed: Names", "params": Array [ "Names", ], - "path": "PartitionDescription/Names", + "path": "$/PartitionDescription/Names", "position": Object { "column": 35, "line": 16518, @@ -103932,13 +104524,13 @@ Array [ "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.ScalingPolicies[0].ScalingTrigger.LowerLoadThreshold", + "jsonPath": "$['ScalingPolicies'][0]['ScalingTrigger']['LowerLoadThreshold']", "message": "Expected type string but found type number", "params": Array [ "string", "number", ], - "path": "ScalingPolicies/0/ScalingTrigger/LowerLoadThreshold", + "path": "$/ScalingPolicies/0/ScalingTrigger/LowerLoadThreshold", "position": Object { "column": 31, "line": 20572, @@ -103974,13 +104566,13 @@ Array [ "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.ScalingPolicies[0].ScalingTrigger.UpperLoadThreshold", + "jsonPath": "$['ScalingPolicies'][0]['ScalingTrigger']['UpperLoadThreshold']", "message": "Expected type string but found type number", "params": Array [ "string", "number", ], - "path": "ScalingPolicies/0/ScalingTrigger/UpperLoadThreshold", + "path": "$/ScalingPolicies/0/ScalingTrigger/UpperLoadThreshold", "position": Object { "column": 31, "line": 20577, @@ -104020,12 +104612,12 @@ the entire batch fails and cannot be committed in a transactional manner.", "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.Operations[0].Exists", + "jsonPath": "$['Operations'][0]['Exists']", "message": "Missing required property: Exists", "params": Array [ "Exists", ], - "path": "Operations/0/Exists", + "path": "$/Operations/0/Exists", "position": Object { "column": 42, "line": 18494, @@ -104065,12 +104657,12 @@ the entire batch fails and cannot be committed in a transactional manner.", "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.Operations[0].Exits", + "jsonPath": "$['Operations'][0]['Exits']", "message": "Additional properties not allowed: Exits", "params": Array [ "Exits", ], - "path": "Operations/0/Exits", + "path": "$/Operations/0/Exits", "position": Object { "column": 42, "line": 18494, @@ -104106,12 +104698,12 @@ the entire batch fails and cannot be committed in a transactional manner.", "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "Missing required property: name", "params": Array [ "name", ], - "path": "name", + "path": "$/name", "position": Object { "column": 34, "line": 23702, @@ -104147,12 +104739,12 @@ the entire batch fails and cannot be committed in a transactional manner.", "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.properties.services[0][0].properties.osType", + "jsonPath": "$['properties']['services'][0][0]['properties']['osType']", "message": "Enum does not match case for: linux", "params": Array [ "linux", ], - "path": "properties/services/0/0/properties/osType", + "path": "$/properties/services/0/0/properties/osType", "position": Object { "column": 28, "line": 24753, @@ -104188,12 +104780,12 @@ the entire batch fails and cannot be committed in a transactional manner.", "SecurityDefinitionsStructure": ".*", "XmsExamplesRequired": ".*", }, - "jsonPath": "$.properties.services[0][0].properties.osType", + "jsonPath": "$['properties']['services'][0][0]['properties']['osType']", "message": "Enum does not match case for: linux", "params": Array [ "linux", ], - "path": "properties/services/0/0/properties/osType", + "path": "$/properties/services/0/0/properties/osType", "position": Object { "column": 28, "line": 24753, @@ -104220,7 +104812,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application type name resource", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "jsonPosition": Object { "column": 15, "line": 12, @@ -104230,7 +104822,7 @@ Array [ "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 32, "line": 1567, @@ -104250,7 +104842,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application type name resource", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 15, "line": 12, @@ -104260,7 +104852,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 32, "line": 1567, @@ -104280,12 +104872,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application type name resource", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "message": "Additional properties not allowed: tags", "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 32, "line": 1567, @@ -104305,13 +104897,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myCluster\\"\`, cannot be sent in the request.", "params": Array [ "name", "myCluster", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1728, @@ -104331,13 +104923,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource identifier.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applicationTypes/myAppType\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applicationTypes/myAppType", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1723, @@ -104357,13 +104949,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"applicationTypes\\"\`, cannot be sent in the request.", "params": Array [ "type", "applicationTypes", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1733, @@ -104383,7 +104975,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application type name resource", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "jsonPosition": Object { "column": 15, "line": 19, @@ -104393,7 +104985,7 @@ Array [ "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 32, "line": 1567, @@ -104413,7 +105005,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application type name resource", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 15, "line": 19, @@ -104423,7 +105015,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 32, "line": 1567, @@ -104459,7 +105051,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The list of application type names.", "directives": Object {}, - "jsonPath": "$.nextLink", + "jsonPath": "$['nextLink']", "jsonPosition": Object { "column": 15, "line": 11, @@ -104469,7 +105061,7 @@ Array [ "params": Array [ "nextLink", ], - "path": "nextLink", + "path": "$/nextLink", "position": Object { "column": 36, "line": 1582, @@ -104489,13 +105081,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application type name resource", "directives": Object {}, - "jsonPath": "$.value[0].etag", + "jsonPath": "$['value'][0]['etag']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationTypeNameListOperation_example.json", "message": "Additional properties not allowed: etag", "params": Array [ "etag", ], - "path": "value/0/etag", + "path": "$/value/0/etag", "position": Object { "column": 32, "line": 1567, @@ -104515,13 +105107,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application type name resource", "directives": Object {}, - "jsonPath": "$.value[0].tags", + "jsonPath": "$['value'][0]['tags']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationTypeNameListOperation_example.json", "message": "Additional properties not allowed: tags", "params": Array [ "tags", ], - "path": "value/0/tags", + "path": "$/value/0/tags", "position": Object { "column": 32, "line": 1567, @@ -104541,7 +105133,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "An application type version resource for the specified application type name resource.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "jsonPosition": Object { "column": 15, "line": 13, @@ -104551,7 +105143,7 @@ Array [ "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 39, "line": 1593, @@ -104571,7 +105163,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "An application type version resource for the specified application type name resource.", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 15, "line": 13, @@ -104581,7 +105173,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 39, "line": 1593, @@ -104601,12 +105193,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "An application type version resource for the specified application type name resource.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "message": "Additional properties not allowed: tags", "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 39, "line": 1593, @@ -104626,13 +105218,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myCluster\\"\`, cannot be sent in the request.", "params": Array [ "name", "myCluster", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1728, @@ -104652,13 +105244,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource identifier.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applicationTypes/myAppType/versions/1.0\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applicationTypes/myAppType/versions/1.0", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1723, @@ -104678,13 +105270,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"versions\\"\`, cannot be sent in the request.", "params": Array [ "type", "versions", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1733, @@ -104704,7 +105296,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "An application type version resource for the specified application type name resource.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "jsonPosition": Object { "column": 15, "line": 26, @@ -104714,7 +105306,7 @@ Array [ "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 39, "line": 1593, @@ -104734,7 +105326,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "An application type version resource for the specified application type name resource.", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 15, "line": 26, @@ -104744,7 +105336,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 39, "line": 1593, @@ -104780,7 +105372,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The list of application type version resources for the specified application type name resource.", "directives": Object {}, - "jsonPath": "$.nextLink", + "jsonPath": "$['nextLink']", "jsonPosition": Object { "column": 15, "line": 12, @@ -104790,7 +105382,7 @@ Array [ "params": Array [ "nextLink", ], - "path": "nextLink", + "path": "$/nextLink", "position": Object { "column": 43, "line": 1608, @@ -104810,13 +105402,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "An application type version resource for the specified application type name resource.", "directives": Object {}, - "jsonPath": "$.value[0].etag", + "jsonPath": "$['value'][0]['etag']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationTypeVersionListOperation_example.json", "message": "Additional properties not allowed: etag", "params": Array [ "etag", ], - "path": "value/0/etag", + "path": "$/value/0/etag", "position": Object { "column": 39, "line": 1593, @@ -104836,13 +105428,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "An application type version resource for the specified application type name resource.", "directives": Object {}, - "jsonPath": "$.value[0].tags", + "jsonPath": "$['value'][0]['tags']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationTypeVersionListOperation_example.json", "message": "Additional properties not allowed: tags", "params": Array [ "tags", ], - "path": "value/0/tags", + "path": "$/value/0/tags", "position": Object { "column": 39, "line": 1593, @@ -104862,7 +105454,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "jsonPosition": Object { "column": 15, "line": 12, @@ -104872,7 +105464,7 @@ Array [ "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 28, "line": 1452, @@ -104892,7 +105484,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource.", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 15, "line": 12, @@ -104902,7 +105494,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 28, "line": 1452, @@ -104923,13 +105515,13 @@ Array [ "description": "Defines a health policy used to evaluate the health of an application or one of its children entities. ", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.applicationHealthPolicy.defaultServiceTypeHealthPolicy", + "jsonPath": "$['properties']['upgradePolicy']['applicationHealthPolicy']['defaultServiceTypeHealthPolicy']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationGetOperation_example.json", "message": "Additional properties not allowed: defaultServiceTypeHealthPolicy", "params": Array [ "defaultServiceTypeHealthPolicy", ], - "path": "properties/upgradePolicy/applicationHealthPolicy/defaultServiceTypeHealthPolicy", + "path": "$/properties/upgradePolicy/applicationHealthPolicy/defaultServiceTypeHealthPolicy", "position": Object { "column": 32, "line": 973, @@ -104950,13 +105542,13 @@ Array [ "description": "Defines a health policy used to evaluate the health of an application or one of its children entities. ", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.applicationHealthPolicy.maxPercentUnhealthyDeployedApplications", + "jsonPath": "$['properties']['upgradePolicy']['applicationHealthPolicy']['maxPercentUnhealthyDeployedApplications']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationGetOperation_example.json", "message": "Additional properties not allowed: maxPercentUnhealthyDeployedApplications", "params": Array [ "maxPercentUnhealthyDeployedApplications", ], - "path": "properties/upgradePolicy/applicationHealthPolicy/maxPercentUnhealthyDeployedApplications", + "path": "$/properties/upgradePolicy/applicationHealthPolicy/maxPercentUnhealthyDeployedApplications", "position": Object { "column": 32, "line": 973, @@ -104977,13 +105569,13 @@ Array [ "description": "Defines a health policy used to evaluate the health of an application or one of its children entities. ", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.applicationHealthPolicy.considerWarningAsError", + "jsonPath": "$['properties']['upgradePolicy']['applicationHealthPolicy']['considerWarningAsError']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationGetOperation_example.json", "message": "Additional properties not allowed: considerWarningAsError", "params": Array [ "considerWarningAsError", ], - "path": "properties/upgradePolicy/applicationHealthPolicy/considerWarningAsError", + "path": "$/properties/upgradePolicy/applicationHealthPolicy/considerWarningAsError", "position": Object { "column": 32, "line": 973, @@ -105003,13 +105595,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The policy used for monitoring the application upgrade", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.rollingUpgradeMonitoringPolicy.failureAction", + "jsonPath": "$['properties']['upgradePolicy']['rollingUpgradeMonitoringPolicy']['failureAction']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationGetOperation_example.json", "message": "Additional properties not allowed: failureAction", "params": Array [ "failureAction", ], - "path": "properties/upgradePolicy/rollingUpgradeMonitoringPolicy/failureAction", + "path": "$/properties/upgradePolicy/rollingUpgradeMonitoringPolicy/failureAction", "position": Object { "column": 39, "line": 1750, @@ -105029,14 +105621,14 @@ Array [ "code": "INVALID_FORMAT", "description": "The maximum amount of time to block processing of an upgrade domain and prevent loss of availability when there are unexpected issues. When this timeout expires, processing of the upgrade domain will proceed regardless of availability loss issues. The timeout is reset at the start of each upgrade domain. Valid values are between 0 and 42949672925 inclusive. (unsigned 32-bit integer).", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.upgradeReplicaSetCheckTimeout", + "jsonPath": "$['properties']['upgradePolicy']['upgradeReplicaSetCheckTimeout']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationGetOperation_example.json", "message": "Object didn't pass validation for format int64: 01:00:00", "params": Array [ "int64", "01:00:00", ], - "path": "properties/upgradePolicy/upgradeReplicaSetCheckTimeout", + "path": "$/properties/upgradePolicy/upgradeReplicaSetCheckTimeout", "position": Object { "column": 38, "line": 1067, @@ -105056,14 +105648,14 @@ Array [ "code": "INVALID_TYPE", "description": "The maximum amount of time to block processing of an upgrade domain and prevent loss of availability when there are unexpected issues. When this timeout expires, processing of the upgrade domain will proceed regardless of availability loss issues. The timeout is reset at the start of each upgrade domain. Valid values are between 0 and 42949672925 inclusive. (unsigned 32-bit integer).", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.upgradeReplicaSetCheckTimeout", + "jsonPath": "$['properties']['upgradePolicy']['upgradeReplicaSetCheckTimeout']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationGetOperation_example.json", "message": "Expected type integer but found type string", "params": Array [ "integer", "string", ], - "path": "properties/upgradePolicy/upgradeReplicaSetCheckTimeout", + "path": "$/properties/upgradePolicy/upgradeReplicaSetCheckTimeout", "position": Object { "column": 38, "line": 1067, @@ -105084,13 +105676,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].totalApplicationCapacity", + "jsonPath": "$['properties']['metrics'][0]['totalApplicationCapacity']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationGetOperation_example.json", "message": "Additional properties not allowed: totalApplicationCapacity", "params": Array [ "totalApplicationCapacity", ], - "path": "properties/metrics/0/totalApplicationCapacity", + "path": "$/properties/metrics/0/totalApplicationCapacity", "position": Object { "column": 37, "line": 997, @@ -105111,13 +105703,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].maximumCapacity", + "jsonPath": "$['properties']['metrics'][0]['maximumCapacity']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationGetOperation_example.json", "message": "Additional properties not allowed: maximumCapacity", "params": Array [ "maximumCapacity", ], - "path": "properties/metrics/0/maximumCapacity", + "path": "$/properties/metrics/0/maximumCapacity", "position": Object { "column": 37, "line": 997, @@ -105138,13 +105730,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].reservationCapacity", + "jsonPath": "$['properties']['metrics'][0]['reservationCapacity']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationGetOperation_example.json", "message": "Additional properties not allowed: reservationCapacity", "params": Array [ "reservationCapacity", ], - "path": "properties/metrics/0/reservationCapacity", + "path": "$/properties/metrics/0/reservationCapacity", "position": Object { "column": 37, "line": 997, @@ -105165,13 +105757,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].name", + "jsonPath": "$['properties']['metrics'][0]['name']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationGetOperation_example.json", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "properties/metrics/0/name", + "path": "$/properties/metrics/0/name", "position": Object { "column": 37, "line": 997, @@ -105191,12 +105783,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "message": "Additional properties not allowed: tags", "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 28, "line": 1452, @@ -105216,13 +105808,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myCluster\\"\`, cannot be sent in the request.", "params": Array [ "name", "myCluster", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1728, @@ -105242,13 +105834,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource identifier.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1723, @@ -105268,13 +105860,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"applications\\"\`, cannot be sent in the request.", "params": Array [ "type", "applications", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1733, @@ -105294,7 +105886,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "jsonPosition": Object { "column": 15, "line": 27, @@ -105304,7 +105896,7 @@ Array [ "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 28, "line": 1452, @@ -105324,7 +105916,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource.", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 15, "line": 27, @@ -105334,7 +105926,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 28, "line": 1452, @@ -105354,12 +105946,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "message": "Additional properties not allowed: tags", "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 28, "line": 1452, @@ -105380,12 +105972,12 @@ Array [ "description": "Defines a health policy used to evaluate the health of an application or one of its children entities. ", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.applicationHealthPolicy.defaultServiceTypeHealthPolicy", + "jsonPath": "$['properties']['upgradePolicy']['applicationHealthPolicy']['defaultServiceTypeHealthPolicy']", "message": "Additional properties not allowed: defaultServiceTypeHealthPolicy", "params": Array [ "defaultServiceTypeHealthPolicy", ], - "path": "properties/upgradePolicy/applicationHealthPolicy/defaultServiceTypeHealthPolicy", + "path": "$/properties/upgradePolicy/applicationHealthPolicy/defaultServiceTypeHealthPolicy", "position": Object { "column": 32, "line": 973, @@ -105406,12 +105998,12 @@ Array [ "description": "Defines a health policy used to evaluate the health of an application or one of its children entities. ", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.applicationHealthPolicy.maxPercentUnhealthyDeployedApplications", + "jsonPath": "$['properties']['upgradePolicy']['applicationHealthPolicy']['maxPercentUnhealthyDeployedApplications']", "message": "Additional properties not allowed: maxPercentUnhealthyDeployedApplications", "params": Array [ "maxPercentUnhealthyDeployedApplications", ], - "path": "properties/upgradePolicy/applicationHealthPolicy/maxPercentUnhealthyDeployedApplications", + "path": "$/properties/upgradePolicy/applicationHealthPolicy/maxPercentUnhealthyDeployedApplications", "position": Object { "column": 32, "line": 973, @@ -105432,12 +106024,12 @@ Array [ "description": "Defines a health policy used to evaluate the health of an application or one of its children entities. ", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.applicationHealthPolicy.considerWarningAsError", + "jsonPath": "$['properties']['upgradePolicy']['applicationHealthPolicy']['considerWarningAsError']", "message": "Additional properties not allowed: considerWarningAsError", "params": Array [ "considerWarningAsError", ], - "path": "properties/upgradePolicy/applicationHealthPolicy/considerWarningAsError", + "path": "$/properties/upgradePolicy/applicationHealthPolicy/considerWarningAsError", "position": Object { "column": 32, "line": 973, @@ -105457,12 +106049,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The policy used for monitoring the application upgrade", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.rollingUpgradeMonitoringPolicy.failureAction", + "jsonPath": "$['properties']['upgradePolicy']['rollingUpgradeMonitoringPolicy']['failureAction']", "message": "Additional properties not allowed: failureAction", "params": Array [ "failureAction", ], - "path": "properties/upgradePolicy/rollingUpgradeMonitoringPolicy/failureAction", + "path": "$/properties/upgradePolicy/rollingUpgradeMonitoringPolicy/failureAction", "position": Object { "column": 39, "line": 1750, @@ -105482,13 +106074,13 @@ Array [ "code": "INVALID_FORMAT", "description": "The maximum amount of time to block processing of an upgrade domain and prevent loss of availability when there are unexpected issues. When this timeout expires, processing of the upgrade domain will proceed regardless of availability loss issues. The timeout is reset at the start of each upgrade domain. Valid values are between 0 and 42949672925 inclusive. (unsigned 32-bit integer).", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.upgradeReplicaSetCheckTimeout", + "jsonPath": "$['properties']['upgradePolicy']['upgradeReplicaSetCheckTimeout']", "message": "Object didn't pass validation for format int64: 01:00:00", "params": Array [ "int64", "01:00:00", ], - "path": "properties/upgradePolicy/upgradeReplicaSetCheckTimeout", + "path": "$/properties/upgradePolicy/upgradeReplicaSetCheckTimeout", "position": Object { "column": 38, "line": 1067, @@ -105508,13 +106100,13 @@ Array [ "code": "INVALID_TYPE", "description": "The maximum amount of time to block processing of an upgrade domain and prevent loss of availability when there are unexpected issues. When this timeout expires, processing of the upgrade domain will proceed regardless of availability loss issues. The timeout is reset at the start of each upgrade domain. Valid values are between 0 and 42949672925 inclusive. (unsigned 32-bit integer).", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.upgradeReplicaSetCheckTimeout", + "jsonPath": "$['properties']['upgradePolicy']['upgradeReplicaSetCheckTimeout']", "message": "Expected type integer but found type string", "params": Array [ "integer", "string", ], - "path": "properties/upgradePolicy/upgradeReplicaSetCheckTimeout", + "path": "$/properties/upgradePolicy/upgradeReplicaSetCheckTimeout", "position": Object { "column": 38, "line": 1067, @@ -105535,12 +106127,12 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].totalApplicationCapacity", + "jsonPath": "$['properties']['metrics'][0]['totalApplicationCapacity']", "message": "Additional properties not allowed: totalApplicationCapacity", "params": Array [ "totalApplicationCapacity", ], - "path": "properties/metrics/0/totalApplicationCapacity", + "path": "$/properties/metrics/0/totalApplicationCapacity", "position": Object { "column": 37, "line": 997, @@ -105561,12 +106153,12 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].maximumCapacity", + "jsonPath": "$['properties']['metrics'][0]['maximumCapacity']", "message": "Additional properties not allowed: maximumCapacity", "params": Array [ "maximumCapacity", ], - "path": "properties/metrics/0/maximumCapacity", + "path": "$/properties/metrics/0/maximumCapacity", "position": Object { "column": 37, "line": 997, @@ -105587,12 +106179,12 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].reservationCapacity", + "jsonPath": "$['properties']['metrics'][0]['reservationCapacity']", "message": "Additional properties not allowed: reservationCapacity", "params": Array [ "reservationCapacity", ], - "path": "properties/metrics/0/reservationCapacity", + "path": "$/properties/metrics/0/reservationCapacity", "position": Object { "column": 37, "line": 997, @@ -105613,12 +106205,12 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].name", + "jsonPath": "$['properties']['metrics'][0]['name']", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "properties/metrics/0/name", + "path": "$/properties/metrics/0/name", "position": Object { "column": 37, "line": 997, @@ -105638,13 +106230,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myCluster\\"\`, cannot be sent in the request.", "params": Array [ "name", "myCluster", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1728, @@ -105664,13 +106256,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource identifier.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1723, @@ -105690,13 +106282,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"applications\\"\`, cannot be sent in the request.", "params": Array [ "type", "applications", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1733, @@ -105716,7 +106308,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "jsonPosition": Object { "column": 15, "line": 61, @@ -105726,7 +106318,7 @@ Array [ "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 28, "line": 1452, @@ -105746,7 +106338,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource.", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 15, "line": 61, @@ -105756,7 +106348,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 28, "line": 1452, @@ -105777,13 +106369,13 @@ Array [ "description": "Defines a health policy used to evaluate the health of an application or one of its children entities. ", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.applicationHealthPolicy.defaultServiceTypeHealthPolicy", + "jsonPath": "$['properties']['upgradePolicy']['applicationHealthPolicy']['defaultServiceTypeHealthPolicy']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationPutOperation_example_max.json", "message": "Additional properties not allowed: defaultServiceTypeHealthPolicy", "params": Array [ "defaultServiceTypeHealthPolicy", ], - "path": "properties/upgradePolicy/applicationHealthPolicy/defaultServiceTypeHealthPolicy", + "path": "$/properties/upgradePolicy/applicationHealthPolicy/defaultServiceTypeHealthPolicy", "position": Object { "column": 32, "line": 973, @@ -105804,13 +106396,13 @@ Array [ "description": "Defines a health policy used to evaluate the health of an application or one of its children entities. ", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.applicationHealthPolicy.maxPercentUnhealthyDeployedApplications", + "jsonPath": "$['properties']['upgradePolicy']['applicationHealthPolicy']['maxPercentUnhealthyDeployedApplications']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationPutOperation_example_max.json", "message": "Additional properties not allowed: maxPercentUnhealthyDeployedApplications", "params": Array [ "maxPercentUnhealthyDeployedApplications", ], - "path": "properties/upgradePolicy/applicationHealthPolicy/maxPercentUnhealthyDeployedApplications", + "path": "$/properties/upgradePolicy/applicationHealthPolicy/maxPercentUnhealthyDeployedApplications", "position": Object { "column": 32, "line": 973, @@ -105831,13 +106423,13 @@ Array [ "description": "Defines a health policy used to evaluate the health of an application or one of its children entities. ", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.applicationHealthPolicy.considerWarningAsError", + "jsonPath": "$['properties']['upgradePolicy']['applicationHealthPolicy']['considerWarningAsError']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationPutOperation_example_max.json", "message": "Additional properties not allowed: considerWarningAsError", "params": Array [ "considerWarningAsError", ], - "path": "properties/upgradePolicy/applicationHealthPolicy/considerWarningAsError", + "path": "$/properties/upgradePolicy/applicationHealthPolicy/considerWarningAsError", "position": Object { "column": 32, "line": 973, @@ -105857,13 +106449,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The policy used for monitoring the application upgrade", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.rollingUpgradeMonitoringPolicy.failureAction", + "jsonPath": "$['properties']['upgradePolicy']['rollingUpgradeMonitoringPolicy']['failureAction']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationPutOperation_example_max.json", "message": "Additional properties not allowed: failureAction", "params": Array [ "failureAction", ], - "path": "properties/upgradePolicy/rollingUpgradeMonitoringPolicy/failureAction", + "path": "$/properties/upgradePolicy/rollingUpgradeMonitoringPolicy/failureAction", "position": Object { "column": 39, "line": 1750, @@ -105883,14 +106475,14 @@ Array [ "code": "INVALID_FORMAT", "description": "The maximum amount of time to block processing of an upgrade domain and prevent loss of availability when there are unexpected issues. When this timeout expires, processing of the upgrade domain will proceed regardless of availability loss issues. The timeout is reset at the start of each upgrade domain. Valid values are between 0 and 42949672925 inclusive. (unsigned 32-bit integer).", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.upgradeReplicaSetCheckTimeout", + "jsonPath": "$['properties']['upgradePolicy']['upgradeReplicaSetCheckTimeout']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationPutOperation_example_max.json", "message": "Object didn't pass validation for format int64: 01:00:00", "params": Array [ "int64", "01:00:00", ], - "path": "properties/upgradePolicy/upgradeReplicaSetCheckTimeout", + "path": "$/properties/upgradePolicy/upgradeReplicaSetCheckTimeout", "position": Object { "column": 38, "line": 1067, @@ -105910,14 +106502,14 @@ Array [ "code": "INVALID_TYPE", "description": "The maximum amount of time to block processing of an upgrade domain and prevent loss of availability when there are unexpected issues. When this timeout expires, processing of the upgrade domain will proceed regardless of availability loss issues. The timeout is reset at the start of each upgrade domain. Valid values are between 0 and 42949672925 inclusive. (unsigned 32-bit integer).", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.upgradeReplicaSetCheckTimeout", + "jsonPath": "$['properties']['upgradePolicy']['upgradeReplicaSetCheckTimeout']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationPutOperation_example_max.json", "message": "Expected type integer but found type string", "params": Array [ "integer", "string", ], - "path": "properties/upgradePolicy/upgradeReplicaSetCheckTimeout", + "path": "$/properties/upgradePolicy/upgradeReplicaSetCheckTimeout", "position": Object { "column": 38, "line": 1067, @@ -105938,13 +106530,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].totalApplicationCapacity", + "jsonPath": "$['properties']['metrics'][0]['totalApplicationCapacity']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationPutOperation_example_max.json", "message": "Additional properties not allowed: totalApplicationCapacity", "params": Array [ "totalApplicationCapacity", ], - "path": "properties/metrics/0/totalApplicationCapacity", + "path": "$/properties/metrics/0/totalApplicationCapacity", "position": Object { "column": 37, "line": 997, @@ -105965,13 +106557,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].maximumCapacity", + "jsonPath": "$['properties']['metrics'][0]['maximumCapacity']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationPutOperation_example_max.json", "message": "Additional properties not allowed: maximumCapacity", "params": Array [ "maximumCapacity", ], - "path": "properties/metrics/0/maximumCapacity", + "path": "$/properties/metrics/0/maximumCapacity", "position": Object { "column": 37, "line": 997, @@ -105992,13 +106584,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].reservationCapacity", + "jsonPath": "$['properties']['metrics'][0]['reservationCapacity']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationPutOperation_example_max.json", "message": "Additional properties not allowed: reservationCapacity", "params": Array [ "reservationCapacity", ], - "path": "properties/metrics/0/reservationCapacity", + "path": "$/properties/metrics/0/reservationCapacity", "position": Object { "column": 37, "line": 997, @@ -106019,13 +106611,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].name", + "jsonPath": "$['properties']['metrics'][0]['name']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationPutOperation_example_max.json", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "properties/metrics/0/name", + "path": "$/properties/metrics/0/name", "position": Object { "column": 37, "line": 997, @@ -106045,12 +106637,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource for patch operations.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "message": "Additional properties not allowed: tags", "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 34, "line": 1497, @@ -106071,12 +106663,12 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].totalApplicationCapacity", + "jsonPath": "$['properties']['metrics'][0]['totalApplicationCapacity']", "message": "Additional properties not allowed: totalApplicationCapacity", "params": Array [ "totalApplicationCapacity", ], - "path": "properties/metrics/0/totalApplicationCapacity", + "path": "$/properties/metrics/0/totalApplicationCapacity", "position": Object { "column": 37, "line": 997, @@ -106097,12 +106689,12 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].maximumCapacity", + "jsonPath": "$['properties']['metrics'][0]['maximumCapacity']", "message": "Additional properties not allowed: maximumCapacity", "params": Array [ "maximumCapacity", ], - "path": "properties/metrics/0/maximumCapacity", + "path": "$/properties/metrics/0/maximumCapacity", "position": Object { "column": 37, "line": 997, @@ -106123,12 +106715,12 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].reservationCapacity", + "jsonPath": "$['properties']['metrics'][0]['reservationCapacity']", "message": "Additional properties not allowed: reservationCapacity", "params": Array [ "reservationCapacity", ], - "path": "properties/metrics/0/reservationCapacity", + "path": "$/properties/metrics/0/reservationCapacity", "position": Object { "column": 37, "line": 997, @@ -106149,12 +106741,12 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].name", + "jsonPath": "$['properties']['metrics'][0]['name']", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "properties/metrics/0/name", + "path": "$/properties/metrics/0/name", "position": Object { "column": 37, "line": 997, @@ -106174,12 +106766,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource properties for patch operations.", "directives": Object {}, - "jsonPath": "$.properties.typeName", + "jsonPath": "$['properties']['typeName']", "message": "Additional properties not allowed: typeName", "params": Array [ "typeName", ], - "path": "properties/typeName", + "path": "$/properties/typeName", "position": Object { "column": 44, "line": 1512, @@ -106199,13 +106791,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myCluster\\"\`, cannot be sent in the request.", "params": Array [ "name", "myCluster", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1728, @@ -106225,13 +106817,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource identifier.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1723, @@ -106251,13 +106843,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"applications\\"\`, cannot be sent in the request.", "params": Array [ "type", "applications", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1733, @@ -106277,7 +106869,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource for patch operations.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "jsonPosition": Object { "column": 15, "line": 35, @@ -106287,7 +106879,7 @@ Array [ "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 34, "line": 1497, @@ -106307,7 +106899,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource for patch operations.", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 15, "line": 35, @@ -106317,7 +106909,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 34, "line": 1497, @@ -106338,13 +106930,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].totalApplicationCapacity", + "jsonPath": "$['properties']['metrics'][0]['totalApplicationCapacity']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationPatchOperation_example.json", "message": "Additional properties not allowed: totalApplicationCapacity", "params": Array [ "totalApplicationCapacity", ], - "path": "properties/metrics/0/totalApplicationCapacity", + "path": "$/properties/metrics/0/totalApplicationCapacity", "position": Object { "column": 37, "line": 997, @@ -106365,13 +106957,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].maximumCapacity", + "jsonPath": "$['properties']['metrics'][0]['maximumCapacity']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationPatchOperation_example.json", "message": "Additional properties not allowed: maximumCapacity", "params": Array [ "maximumCapacity", ], - "path": "properties/metrics/0/maximumCapacity", + "path": "$/properties/metrics/0/maximumCapacity", "position": Object { "column": 37, "line": 997, @@ -106392,13 +106984,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].reservationCapacity", + "jsonPath": "$['properties']['metrics'][0]['reservationCapacity']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationPatchOperation_example.json", "message": "Additional properties not allowed: reservationCapacity", "params": Array [ "reservationCapacity", ], - "path": "properties/metrics/0/reservationCapacity", + "path": "$/properties/metrics/0/reservationCapacity", "position": Object { "column": 37, "line": 997, @@ -106419,13 +107011,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].name", + "jsonPath": "$['properties']['metrics'][0]['name']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationPatchOperation_example.json", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "properties/metrics/0/name", + "path": "$/properties/metrics/0/name", "position": Object { "column": 37, "line": 997, @@ -106445,7 +107037,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource properties for patch operations.", "directives": Object {}, - "jsonPath": "$.properties.typeName", + "jsonPath": "$['properties']['typeName']", "jsonPosition": Object { "column": 23, "line": 42, @@ -106455,7 +107047,7 @@ Array [ "params": Array [ "typeName", ], - "path": "properties/typeName", + "path": "$/properties/typeName", "position": Object { "column": 44, "line": 1512, @@ -106475,7 +107067,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource properties for patch operations.", "directives": Object {}, - "jsonPath": "$.properties.provisioningState", + "jsonPath": "$['properties']['provisioningState']", "jsonPosition": Object { "column": 23, "line": 42, @@ -106485,7 +107077,7 @@ Array [ "params": Array [ "provisioningState", ], - "path": "properties/provisioningState", + "path": "$/properties/provisioningState", "position": Object { "column": 44, "line": 1512, @@ -106521,7 +107113,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The list of application resources.", "directives": Object {}, - "jsonPath": "$.nextLink", + "jsonPath": "$['nextLink']", "jsonPosition": Object { "column": 15, "line": 11, @@ -106531,7 +107123,7 @@ Array [ "params": Array [ "nextLink", ], - "path": "nextLink", + "path": "$/nextLink", "position": Object { "column": 32, "line": 1467, @@ -106552,13 +107144,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.value[0].properties.metrics.metrics[0].totalApplicationCapacity", + "jsonPath": "$['value'][0]['properties']['metrics']['metrics'][0]['totalApplicationCapacity']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationListOperation_example.json", "message": "Additional properties not allowed: totalApplicationCapacity", "params": Array [ "totalApplicationCapacity", ], - "path": "value/0/properties/metrics/metrics/0/totalApplicationCapacity", + "path": "$/value/0/properties/metrics/metrics/0/totalApplicationCapacity", "position": Object { "column": 37, "line": 997, @@ -106579,13 +107171,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.value[0].properties.metrics.metrics[0].maximumCapacity", + "jsonPath": "$['value'][0]['properties']['metrics']['metrics'][0]['maximumCapacity']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationListOperation_example.json", "message": "Additional properties not allowed: maximumCapacity", "params": Array [ "maximumCapacity", ], - "path": "value/0/properties/metrics/metrics/0/maximumCapacity", + "path": "$/value/0/properties/metrics/metrics/0/maximumCapacity", "position": Object { "column": 37, "line": 997, @@ -106606,13 +107198,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.value[0].properties.metrics.metrics[0].reservationCapacity", + "jsonPath": "$['value'][0]['properties']['metrics']['metrics'][0]['reservationCapacity']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationListOperation_example.json", "message": "Additional properties not allowed: reservationCapacity", "params": Array [ "reservationCapacity", ], - "path": "value/0/properties/metrics/metrics/0/reservationCapacity", + "path": "$/value/0/properties/metrics/metrics/0/reservationCapacity", "position": Object { "column": 37, "line": 997, @@ -106633,13 +107225,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.value[0].properties.metrics.metrics[0].name", + "jsonPath": "$['value'][0]['properties']['metrics']['metrics'][0]['name']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationListOperation_example.json", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "value/0/properties/metrics/metrics/0/name", + "path": "$/value/0/properties/metrics/metrics/0/name", "position": Object { "column": 37, "line": 997, @@ -106659,13 +107251,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource.", "directives": Object {}, - "jsonPath": "$.value[0].etag", + "jsonPath": "$['value'][0]['etag']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationListOperation_example.json", "message": "Additional properties not allowed: etag", "params": Array [ "etag", ], - "path": "value/0/etag", + "path": "$/value/0/etag", "position": Object { "column": 28, "line": 1452, @@ -106685,13 +107277,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource.", "directives": Object {}, - "jsonPath": "$.value[0].tags", + "jsonPath": "$['value'][0]['tags']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationListOperation_example.json", "message": "Additional properties not allowed: tags", "params": Array [ "tags", ], - "path": "value/0/tags", + "path": "$/value/0/tags", "position": Object { "column": 28, "line": 1452, @@ -106711,7 +107303,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The service resource.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "jsonPosition": Object { "column": 15, "line": 13, @@ -106721,7 +107313,7 @@ Array [ "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 24, "line": 1775, @@ -106741,7 +107333,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The service resource.", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 15, "line": 13, @@ -106751,7 +107343,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 24, "line": 1775, @@ -106771,13 +107363,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.properties.serviceLoadMetrics[0].weight", + "jsonPath": "$['properties']['serviceLoadMetrics'][0]['weight']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ServiceGetOperation_example.json", "message": "Additional properties not allowed: weight", "params": Array [ "weight", ], - "path": "properties/serviceLoadMetrics/0/weight", + "path": "$/properties/serviceLoadMetrics/0/weight", "position": Object { "column": 37, "line": 1168, @@ -106797,13 +107389,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.properties.serviceLoadMetrics[0].name", + "jsonPath": "$['properties']['serviceLoadMetrics'][0]['name']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ServiceGetOperation_example.json", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "properties/serviceLoadMetrics/0/name", + "path": "$/properties/serviceLoadMetrics/0/name", "position": Object { "column": 37, "line": 1168, @@ -106823,13 +107415,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.properties.serviceLoadMetrics[0].Name", + "jsonPath": "$['properties']['serviceLoadMetrics'][0]['Name']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ServiceGetOperation_example.json", "message": "Missing required property: Name", "params": Array [ "Name", ], - "path": "properties/serviceLoadMetrics/0/Name", + "path": "$/properties/serviceLoadMetrics/0/Name", "position": Object { "column": 37, "line": 1168, @@ -106849,7 +107441,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes how the service is partitioned.", "directives": Object {}, - "jsonPath": "$.properties.partitionDescription.partitionScheme", + "jsonPath": "$['properties']['partitionDescription']['partitionScheme']", "jsonPosition": Object { "column": 35, "line": 25, @@ -106859,7 +107451,7 @@ Array [ "params": Array [ "partitionScheme", ], - "path": "properties/partitionDescription/partitionScheme", + "path": "$/properties/partitionDescription/partitionScheme", "position": Object { "column": 35, "line": 1324, @@ -106879,12 +107471,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The service resource.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "message": "Additional properties not allowed: tags", "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 24, "line": 1775, @@ -106904,12 +107496,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes how the service is partitioned.", "directives": Object {}, - "jsonPath": "$.properties.partitionDescription.partitionScheme", + "jsonPath": "$['properties']['partitionDescription']['partitionScheme']", "message": "Additional properties not allowed: partitionScheme", "params": Array [ "partitionScheme", ], - "path": "properties/partitionDescription/partitionScheme", + "path": "$/properties/partitionDescription/partitionScheme", "position": Object { "column": 35, "line": 1324, @@ -106929,13 +107521,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myCluster\\"\`, cannot be sent in the request.", "params": Array [ "name", "myCluster", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1728, @@ -106955,13 +107547,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource identifier.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp/services/myService\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp/services/myService", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1723, @@ -106981,13 +107573,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"services\\"\`, cannot be sent in the request.", "params": Array [ "type", "services", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1733, @@ -107007,7 +107599,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The service resource.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "jsonPosition": Object { "column": 15, "line": 31, @@ -107017,7 +107609,7 @@ Array [ "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 24, "line": 1775, @@ -107037,7 +107629,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The service resource.", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 15, "line": 31, @@ -107047,7 +107639,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 24, "line": 1775, @@ -107067,7 +107659,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes how the service is partitioned.", "directives": Object {}, - "jsonPath": "$.properties.partitionDescription.partitionScheme", + "jsonPath": "$['properties']['partitionDescription']['partitionScheme']", "jsonPosition": Object { "column": 35, "line": 42, @@ -107077,7 +107669,7 @@ Array [ "params": Array [ "partitionScheme", ], - "path": "properties/partitionDescription/partitionScheme", + "path": "$/properties/partitionDescription/partitionScheme", "position": Object { "column": 35, "line": 1324, @@ -107097,12 +107689,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The service resource.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "message": "Additional properties not allowed: tags", "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 24, "line": 1775, @@ -107122,12 +107714,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Creates a particular correlation between services.", "directives": Object {}, - "jsonPath": "$.properties.correlationScheme[0].scheme", + "jsonPath": "$['properties']['correlationScheme'][0]['scheme']", "message": "Additional properties not allowed: scheme", "params": Array [ "scheme", ], - "path": "properties/correlationScheme/0/scheme", + "path": "$/properties/correlationScheme/0/scheme", "position": Object { "column": 38, "line": 1111, @@ -107147,12 +107739,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Creates a particular correlation between services.", "directives": Object {}, - "jsonPath": "$.properties.correlationScheme[0].serviceName", + "jsonPath": "$['properties']['correlationScheme'][0]['serviceName']", "message": "Additional properties not allowed: serviceName", "params": Array [ "serviceName", ], - "path": "properties/correlationScheme/0/serviceName", + "path": "$/properties/correlationScheme/0/serviceName", "position": Object { "column": 38, "line": 1111, @@ -107172,12 +107764,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Creates a particular correlation between services.", "directives": Object {}, - "jsonPath": "$.properties.correlationScheme[0].Scheme", + "jsonPath": "$['properties']['correlationScheme'][0]['Scheme']", "message": "Missing required property: Scheme", "params": Array [ "Scheme", ], - "path": "properties/correlationScheme/0/Scheme", + "path": "$/properties/correlationScheme/0/Scheme", "position": Object { "column": 38, "line": 1111, @@ -107197,12 +107789,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Creates a particular correlation between services.", "directives": Object {}, - "jsonPath": "$.properties.correlationScheme[0].ServiceName", + "jsonPath": "$['properties']['correlationScheme'][0]['ServiceName']", "message": "Missing required property: ServiceName", "params": Array [ "ServiceName", ], - "path": "properties/correlationScheme/0/ServiceName", + "path": "$/properties/correlationScheme/0/ServiceName", "position": Object { "column": 38, "line": 1111, @@ -107222,12 +107814,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.properties.serviceLoadMetrics[0].weight", + "jsonPath": "$['properties']['serviceLoadMetrics'][0]['weight']", "message": "Additional properties not allowed: weight", "params": Array [ "weight", ], - "path": "properties/serviceLoadMetrics/0/weight", + "path": "$/properties/serviceLoadMetrics/0/weight", "position": Object { "column": 37, "line": 1168, @@ -107247,12 +107839,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.properties.serviceLoadMetrics[0].name", + "jsonPath": "$['properties']['serviceLoadMetrics'][0]['name']", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "properties/serviceLoadMetrics/0/name", + "path": "$/properties/serviceLoadMetrics/0/name", "position": Object { "column": 37, "line": 1168, @@ -107272,12 +107864,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.properties.serviceLoadMetrics[0].Name", + "jsonPath": "$['properties']['serviceLoadMetrics'][0]['Name']", "message": "Missing required property: Name", "params": Array [ "Name", ], - "path": "properties/serviceLoadMetrics/0/Name", + "path": "$/properties/serviceLoadMetrics/0/Name", "position": Object { "column": 37, "line": 1168, @@ -107297,12 +107889,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes how the service is partitioned.", "directives": Object {}, - "jsonPath": "$.properties.partitionDescription.partitionScheme", + "jsonPath": "$['properties']['partitionDescription']['partitionScheme']", "message": "Additional properties not allowed: partitionScheme", "params": Array [ "partitionScheme", ], - "path": "properties/partitionDescription/partitionScheme", + "path": "$/properties/partitionDescription/partitionScheme", "position": Object { "column": 35, "line": 1324, @@ -107322,13 +107914,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myCluster\\"\`, cannot be sent in the request.", "params": Array [ "name", "myCluster", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1728, @@ -107348,13 +107940,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource identifier.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp/services/myService\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp/services/myService", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1723, @@ -107374,13 +107966,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"services\\"\`, cannot be sent in the request.", "params": Array [ "type", "services", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1733, @@ -107400,7 +107992,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The service resource.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "jsonPosition": Object { "column": 15, "line": 46, @@ -107410,7 +108002,7 @@ Array [ "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 24, "line": 1775, @@ -107430,7 +108022,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The service resource.", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 15, "line": 46, @@ -107440,7 +108032,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 24, "line": 1775, @@ -107460,13 +108052,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.properties.serviceLoadMetrics[0].weight", + "jsonPath": "$['properties']['serviceLoadMetrics'][0]['weight']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ServicePutOperation_example_max.json", "message": "Additional properties not allowed: weight", "params": Array [ "weight", ], - "path": "properties/serviceLoadMetrics/0/weight", + "path": "$/properties/serviceLoadMetrics/0/weight", "position": Object { "column": 37, "line": 1168, @@ -107486,13 +108078,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.properties.serviceLoadMetrics[0].name", + "jsonPath": "$['properties']['serviceLoadMetrics'][0]['name']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ServicePutOperation_example_max.json", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "properties/serviceLoadMetrics/0/name", + "path": "$/properties/serviceLoadMetrics/0/name", "position": Object { "column": 37, "line": 1168, @@ -107512,13 +108104,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.properties.serviceLoadMetrics[0].Name", + "jsonPath": "$['properties']['serviceLoadMetrics'][0]['Name']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ServicePutOperation_example_max.json", "message": "Missing required property: Name", "params": Array [ "Name", ], - "path": "properties/serviceLoadMetrics/0/Name", + "path": "$/properties/serviceLoadMetrics/0/Name", "position": Object { "column": 37, "line": 1168, @@ -107538,7 +108130,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes how the service is partitioned.", "directives": Object {}, - "jsonPath": "$.properties.partitionDescription.partitionScheme", + "jsonPath": "$['properties']['partitionDescription']['partitionScheme']", "jsonPosition": Object { "column": 35, "line": 58, @@ -107548,7 +108140,7 @@ Array [ "params": Array [ "partitionScheme", ], - "path": "properties/partitionDescription/partitionScheme", + "path": "$/properties/partitionDescription/partitionScheme", "position": Object { "column": 35, "line": 1324, @@ -107568,12 +108160,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The service resource for patch operations.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "message": "Additional properties not allowed: tags", "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 30, "line": 1857, @@ -107593,12 +108185,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of a stateless service resource for patch operations.", "directives": Object {}, - "jsonPath": "$.properties.serviceTypeName", + "jsonPath": "$['properties']['serviceTypeName']", "message": "Additional properties not allowed: serviceTypeName", "params": Array [ "serviceTypeName", ], - "path": "properties/serviceTypeName", + "path": "$/properties/serviceTypeName", "position": Object { "column": 41, "line": 1982, @@ -107618,12 +108210,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.properties.serviceLoadMetrics[0].weight", + "jsonPath": "$['properties']['serviceLoadMetrics'][0]['weight']", "message": "Additional properties not allowed: weight", "params": Array [ "weight", ], - "path": "properties/serviceLoadMetrics/0/weight", + "path": "$/properties/serviceLoadMetrics/0/weight", "position": Object { "column": 37, "line": 1168, @@ -107643,12 +108235,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.properties.serviceLoadMetrics[0].name", + "jsonPath": "$['properties']['serviceLoadMetrics'][0]['name']", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "properties/serviceLoadMetrics/0/name", + "path": "$/properties/serviceLoadMetrics/0/name", "position": Object { "column": 37, "line": 1168, @@ -107668,12 +108260,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.properties.serviceLoadMetrics[0].Name", + "jsonPath": "$['properties']['serviceLoadMetrics'][0]['Name']", "message": "Missing required property: Name", "params": Array [ "Name", ], - "path": "properties/serviceLoadMetrics/0/Name", + "path": "$/properties/serviceLoadMetrics/0/Name", "position": Object { "column": 37, "line": 1168, @@ -107693,13 +108285,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myCluster\\"\`, cannot be sent in the request.", "params": Array [ "name", "myCluster", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1728, @@ -107719,13 +108311,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource identifier.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp/services/myService\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp/services/myService", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1723, @@ -107745,13 +108337,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"services\\"\`, cannot be sent in the request.", "params": Array [ "type", "services", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1733, @@ -107771,7 +108363,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The service resource for patch operations.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "jsonPosition": Object { "column": 15, "line": 33, @@ -107781,7 +108373,7 @@ Array [ "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 30, "line": 1857, @@ -107801,7 +108393,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The service resource for patch operations.", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 15, "line": 33, @@ -107811,7 +108403,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 30, "line": 1857, @@ -107831,7 +108423,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of a stateless service resource for patch operations.", "directives": Object {}, - "jsonPath": "$.properties.provisioningState", + "jsonPath": "$['properties']['provisioningState']", "jsonPosition": Object { "column": 23, "line": 40, @@ -107841,7 +108433,7 @@ Array [ "params": Array [ "provisioningState", ], - "path": "properties/provisioningState", + "path": "$/properties/provisioningState", "position": Object { "column": 41, "line": 1982, @@ -107861,7 +108453,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of a stateless service resource for patch operations.", "directives": Object {}, - "jsonPath": "$.properties.serviceTypeName", + "jsonPath": "$['properties']['serviceTypeName']", "jsonPosition": Object { "column": 23, "line": 40, @@ -107871,7 +108463,7 @@ Array [ "params": Array [ "serviceTypeName", ], - "path": "properties/serviceTypeName", + "path": "$/properties/serviceTypeName", "position": Object { "column": 41, "line": 1982, @@ -107891,7 +108483,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of a stateless service resource for patch operations.", "directives": Object {}, - "jsonPath": "$.properties.partitionDescription", + "jsonPath": "$['properties']['partitionDescription']", "jsonPosition": Object { "column": 23, "line": 40, @@ -107901,7 +108493,7 @@ Array [ "params": Array [ "partitionDescription", ], - "path": "properties/partitionDescription", + "path": "$/properties/partitionDescription", "position": Object { "column": 41, "line": 1982, @@ -107921,13 +108513,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.properties.serviceLoadMetrics[0].weight", + "jsonPath": "$['properties']['serviceLoadMetrics'][0]['weight']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ServicePatchOperation_example.json", "message": "Additional properties not allowed: weight", "params": Array [ "weight", ], - "path": "properties/serviceLoadMetrics/0/weight", + "path": "$/properties/serviceLoadMetrics/0/weight", "position": Object { "column": 37, "line": 1168, @@ -107947,13 +108539,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.properties.serviceLoadMetrics[0].name", + "jsonPath": "$['properties']['serviceLoadMetrics'][0]['name']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ServicePatchOperation_example.json", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "properties/serviceLoadMetrics/0/name", + "path": "$/properties/serviceLoadMetrics/0/name", "position": Object { "column": 37, "line": 1168, @@ -107973,13 +108565,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.properties.serviceLoadMetrics[0].Name", + "jsonPath": "$['properties']['serviceLoadMetrics'][0]['Name']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ServicePatchOperation_example.json", "message": "Missing required property: Name", "params": Array [ "Name", ], - "path": "properties/serviceLoadMetrics/0/Name", + "path": "$/properties/serviceLoadMetrics/0/Name", "position": Object { "column": 37, "line": 1168, @@ -108015,7 +108607,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The list of service resources.", "directives": Object {}, - "jsonPath": "$.nextLink", + "jsonPath": "$['nextLink']", "jsonPosition": Object { "column": 15, "line": 12, @@ -108025,7 +108617,7 @@ Array [ "params": Array [ "nextLink", ], - "path": "nextLink", + "path": "$/nextLink", "position": Object { "column": 28, "line": 1790, @@ -108045,13 +108637,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes how the service is partitioned.", "directives": Object {}, - "jsonPath": "$.value[0].properties.partitionDescription.partitionScheme", + "jsonPath": "$['value'][0]['properties']['partitionDescription']['partitionScheme']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ServiceListOperation_example.json", "message": "Additional properties not allowed: partitionScheme", "params": Array [ "partitionScheme", ], - "path": "value/0/properties/partitionDescription/partitionScheme", + "path": "$/value/0/properties/partitionDescription/partitionScheme", "position": Object { "column": 35, "line": 1324, @@ -108071,13 +108663,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.value[0].properties.serviceLoadMetrics.properties.serviceLoadMetrics[0].weight", + "jsonPath": "$['value'][0]['properties']['serviceLoadMetrics']['properties']['serviceLoadMetrics'][0]['weight']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ServiceListOperation_example.json", "message": "Additional properties not allowed: weight", "params": Array [ "weight", ], - "path": "value/0/properties/serviceLoadMetrics/properties/serviceLoadMetrics/0/weight", + "path": "$/value/0/properties/serviceLoadMetrics/properties/serviceLoadMetrics/0/weight", "position": Object { "column": 37, "line": 1168, @@ -108097,13 +108689,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.value[0].properties.serviceLoadMetrics.properties.serviceLoadMetrics[0].name", + "jsonPath": "$['value'][0]['properties']['serviceLoadMetrics']['properties']['serviceLoadMetrics'][0]['name']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ServiceListOperation_example.json", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "value/0/properties/serviceLoadMetrics/properties/serviceLoadMetrics/0/name", + "path": "$/value/0/properties/serviceLoadMetrics/properties/serviceLoadMetrics/0/name", "position": Object { "column": 37, "line": 1168, @@ -108123,13 +108715,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.value[0].properties.serviceLoadMetrics.properties.serviceLoadMetrics[0].Name", + "jsonPath": "$['value'][0]['properties']['serviceLoadMetrics']['properties']['serviceLoadMetrics'][0]['Name']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ServiceListOperation_example.json", "message": "Missing required property: Name", "params": Array [ "Name", ], - "path": "value/0/properties/serviceLoadMetrics/properties/serviceLoadMetrics/0/Name", + "path": "$/value/0/properties/serviceLoadMetrics/properties/serviceLoadMetrics/0/Name", "position": Object { "column": 37, "line": 1168, @@ -108149,13 +108741,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The service resource.", "directives": Object {}, - "jsonPath": "$.value[0].etag", + "jsonPath": "$['value'][0]['etag']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ServiceListOperation_example.json", "message": "Additional properties not allowed: etag", "params": Array [ "etag", ], - "path": "value/0/etag", + "path": "$/value/0/etag", "position": Object { "column": 24, "line": 1775, @@ -108175,13 +108767,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The service resource.", "directives": Object {}, - "jsonPath": "$.value[0].tags", + "jsonPath": "$['value'][0]['tags']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ServiceListOperation_example.json", "message": "Additional properties not allowed: tags", "params": Array [ "tags", ], - "path": "value/0/tags", + "path": "$/value/0/tags", "position": Object { "column": 24, "line": 1775, @@ -108220,12 +108812,12 @@ Array [ - Ready - Indicates that the cluster is in a stable state. ", "directives": Object {}, - "jsonPath": "$.properties.clusterState", + "jsonPath": "$['properties']['clusterState']", "message": "No enum match for: Default", "params": Array [ "Default", ], - "path": "properties/clusterState", + "path": "$/properties/clusterState", "position": Object { "column": 21, "line": 2998, @@ -108245,13 +108837,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myCluster\\"\`, cannot be sent in the request.", "params": Array [ "name", "myCluster", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 2887, @@ -108271,13 +108863,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource ID.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 2882, @@ -108297,13 +108889,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.ServiceFabric/clusters\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.ServiceFabric/clusters", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 2892, @@ -108324,7 +108916,7 @@ Array [ "description": "The cluster resource ", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 15, "line": 60, @@ -108334,7 +108926,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 16, "line": 2302, @@ -108354,13 +108946,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the policy used when upgrading the cluster.", "directives": Object {}, - "jsonPath": "$.properties.upgradeDescription.overrideUserUpgradePolicy", + "jsonPath": "$['properties']['upgradeDescription']['overrideUserUpgradePolicy']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ClusterPutOperation_example_min.json", "message": "Additional properties not allowed: overrideUserUpgradePolicy", "params": Array [ "overrideUserUpgradePolicy", ], - "path": "properties/upgradeDescription/overrideUserUpgradePolicy", + "path": "$/properties/upgradeDescription/overrideUserUpgradePolicy", "position": Object { "column": 29, "line": 2617, @@ -108408,12 +109000,12 @@ Array [ - Ready - Indicates that the cluster is in a stable state. ", "directives": Object {}, - "jsonPath": "$.properties.clusterState", + "jsonPath": "$['properties']['clusterState']", "message": "No enum match for: Default", "params": Array [ "Default", ], - "path": "properties/clusterState", + "path": "$/properties/clusterState", "position": Object { "column": 21, "line": 2998, @@ -108433,12 +109025,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a health policy used to evaluate the health of the cluster or of a cluster node.", "directives": Object {}, - "jsonPath": "$.properties.upgradeDescription.healthPolicy.applicationHealthPolicies", + "jsonPath": "$['properties']['upgradeDescription']['healthPolicy']['applicationHealthPolicies']", "message": "Additional properties not allowed: applicationHealthPolicies", "params": Array [ "applicationHealthPolicies", ], - "path": "properties/upgradeDescription/healthPolicy/applicationHealthPolicies", + "path": "$/properties/upgradeDescription/healthPolicy/applicationHealthPolicies", "position": Object { "column": 28, "line": 2981, @@ -108458,12 +109050,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the delta health policies for the cluster upgrade.", "directives": Object {}, - "jsonPath": "$.properties.upgradeDescription.deltaHealthPolicy.applicationDeltaHealthPolicies", + "jsonPath": "$['properties']['upgradeDescription']['deltaHealthPolicy']['applicationDeltaHealthPolicies']", "message": "Additional properties not allowed: applicationDeltaHealthPolicies", "params": Array [ "applicationDeltaHealthPolicies", ], - "path": "properties/upgradeDescription/deltaHealthPolicy/applicationDeltaHealthPolicies", + "path": "$/properties/upgradeDescription/deltaHealthPolicy/applicationDeltaHealthPolicies", "position": Object { "column": 40, "line": 2589, @@ -108483,12 +109075,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the policy used when upgrading the cluster.", "directives": Object {}, - "jsonPath": "$.properties.upgradeDescription.overrideUserUpgradePolicy", + "jsonPath": "$['properties']['upgradeDescription']['overrideUserUpgradePolicy']", "message": "Additional properties not allowed: overrideUserUpgradePolicy", "params": Array [ "overrideUserUpgradePolicy", ], - "path": "properties/upgradeDescription/overrideUserUpgradePolicy", + "path": "$/properties/upgradeDescription/overrideUserUpgradePolicy", "position": Object { "column": 29, "line": 2617, @@ -108508,12 +109100,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the cluster resource properties.", "directives": Object {}, - "jsonPath": "$.properties.addonFeatures", + "jsonPath": "$['properties']['addonFeatures']", "message": "Additional properties not allowed: addonFeatures", "params": Array [ "addonFeatures", ], - "path": "properties/addonFeatures", + "path": "$/properties/addonFeatures", "position": Object { "column": 26, "line": 2383, @@ -108533,13 +109125,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myCluster\\"\`, cannot be sent in the request.", "params": Array [ "name", "myCluster", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 2887, @@ -108559,13 +109151,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource ID.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 2882, @@ -108585,13 +109177,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.ServiceFabric/clusters\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.ServiceFabric/clusters", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 2892, @@ -108660,7 +109252,7 @@ Array [ "description": "The cluster resource ", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 15, "line": 11, @@ -108670,7 +109262,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 16, "line": 2302, @@ -108690,13 +109282,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a health policy used to evaluate the health of the cluster or of a cluster node.", "directives": Object {}, - "jsonPath": "$.properties.upgradeDescription.healthPolicy.applicationHealthPolicies", + "jsonPath": "$['properties']['upgradeDescription']['healthPolicy']['applicationHealthPolicies']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ClusterGetOperation_example.json", "message": "Additional properties not allowed: applicationHealthPolicies", "params": Array [ "applicationHealthPolicies", ], - "path": "properties/upgradeDescription/healthPolicy/applicationHealthPolicies", + "path": "$/properties/upgradeDescription/healthPolicy/applicationHealthPolicies", "position": Object { "column": 28, "line": 2981, @@ -108716,13 +109308,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the delta health policies for the cluster upgrade.", "directives": Object {}, - "jsonPath": "$.properties.upgradeDescription.deltaHealthPolicy.applicationDeltaHealthPolicies", + "jsonPath": "$['properties']['upgradeDescription']['deltaHealthPolicy']['applicationDeltaHealthPolicies']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ClusterGetOperation_example.json", "message": "Additional properties not allowed: applicationDeltaHealthPolicies", "params": Array [ "applicationDeltaHealthPolicies", ], - "path": "properties/upgradeDescription/deltaHealthPolicy/applicationDeltaHealthPolicies", + "path": "$/properties/upgradeDescription/deltaHealthPolicy/applicationDeltaHealthPolicies", "position": Object { "column": 40, "line": 2589, @@ -108742,13 +109334,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the policy used when upgrading the cluster.", "directives": Object {}, - "jsonPath": "$.properties.upgradeDescription.overrideUserUpgradePolicy", + "jsonPath": "$['properties']['upgradeDescription']['overrideUserUpgradePolicy']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ClusterGetOperation_example.json", "message": "Additional properties not allowed: overrideUserUpgradePolicy", "params": Array [ "overrideUserUpgradePolicy", ], - "path": "properties/upgradeDescription/overrideUserUpgradePolicy", + "path": "$/properties/upgradeDescription/overrideUserUpgradePolicy", "position": Object { "column": 29, "line": 2617, @@ -108768,7 +109360,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the cluster resource properties.", "directives": Object {}, - "jsonPath": "$.properties.addonFeatures", + "jsonPath": "$['properties']['addonFeatures']", "jsonPosition": Object { "column": 23, "line": 18, @@ -108778,7 +109370,7 @@ Array [ "params": Array [ "addonFeatures", ], - "path": "properties/addonFeatures", + "path": "$/properties/addonFeatures", "position": Object { "column": 26, "line": 2383, @@ -108798,12 +109390,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Cluster update request", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "Additional properties not allowed: type", "params": Array [ "type", ], - "path": "type", + "path": "$/type", "position": Object { "column": 32, "line": 2573, @@ -108823,12 +109415,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Cluster update request", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "message": "Additional properties not allowed: location", "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 32, "line": 2573, @@ -108848,12 +109440,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Cluster update request", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "Additional properties not allowed: id", "params": Array [ "id", ], - "path": "id", + "path": "$/id", "position": Object { "column": 32, "line": 2573, @@ -108873,12 +109465,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Cluster update request", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "name", + "path": "$/name", "position": Object { "column": 32, "line": 2573, @@ -108898,12 +109490,12 @@ Array [ "code": "ENUM_MISMATCH", "description": "The upgrade mode of the cluster. This indicates if the cluster should be automatically upgraded when new Service Fabric runtime version is available.", "directives": Object {}, - "jsonPath": "$.properties.upgradeMode", + "jsonPath": "$['properties']['upgradeMode']", "message": "No enum match for: Default", "params": Array [ "Default", ], - "path": "properties/upgradeMode", + "path": "$/properties/upgradeMode", "position": Object { "column": 24, "line": 2511, @@ -108923,12 +109515,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the cluster resource properties that can be updated during PATCH operation.", "directives": Object {}, - "jsonPath": "$.properties.addonFeatures", + "jsonPath": "$['properties']['addonFeatures']", "message": "Additional properties not allowed: addonFeatures", "params": Array [ "addonFeatures", ], - "path": "properties/addonFeatures", + "path": "$/properties/addonFeatures", "position": Object { "column": 42, "line": 2500, @@ -108948,12 +109540,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the cluster resource properties that can be updated during PATCH operation.", "directives": Object {}, - "jsonPath": "$.properties.clusterState", + "jsonPath": "$['properties']['clusterState']", "message": "Additional properties not allowed: clusterState", "params": Array [ "clusterState", ], - "path": "properties/clusterState", + "path": "$/properties/clusterState", "position": Object { "column": 42, "line": 2500, @@ -109005,13 +109597,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a health policy used to evaluate the health of the cluster or of a cluster node.", "directives": Object {}, - "jsonPath": "$.value[0].properties.upgradeDescription.healthPolicy.applicationHealthPolicies", + "jsonPath": "$['value'][0]['properties']['upgradeDescription']['healthPolicy']['applicationHealthPolicies']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ClusterListByResourceGroupOperation_example.json", "message": "Additional properties not allowed: applicationHealthPolicies", "params": Array [ "applicationHealthPolicies", ], - "path": "value/0/properties/upgradeDescription/healthPolicy/applicationHealthPolicies", + "path": "$/value/0/properties/upgradeDescription/healthPolicy/applicationHealthPolicies", "position": Object { "column": 28, "line": 2981, @@ -109031,13 +109623,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the delta health policies for the cluster upgrade.", "directives": Object {}, - "jsonPath": "$.value[0].properties.upgradeDescription.deltaHealthPolicy.applicationDeltaHealthPolicies", + "jsonPath": "$['value'][0]['properties']['upgradeDescription']['deltaHealthPolicy']['applicationDeltaHealthPolicies']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ClusterListByResourceGroupOperation_example.json", "message": "Additional properties not allowed: applicationDeltaHealthPolicies", "params": Array [ "applicationDeltaHealthPolicies", ], - "path": "value/0/properties/upgradeDescription/deltaHealthPolicy/applicationDeltaHealthPolicies", + "path": "$/value/0/properties/upgradeDescription/deltaHealthPolicy/applicationDeltaHealthPolicies", "position": Object { "column": 40, "line": 2589, @@ -109057,22 +109649,22 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the policy used when upgrading the cluster.", "directives": Object {}, - "jsonPath": "$.value[0].properties.upgradeDescription.overrideUserUpgradePolicy", + "jsonPath": "$['value'][0]['properties']['upgradeDescription']['overrideUserUpgradePolicy']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ClusterListByResourceGroupOperation_example.json", "message": "Additional properties not allowed: overrideUserUpgradePolicy", "params": Array [ "overrideUserUpgradePolicy", ], - "path": "value/0/properties/upgradeDescription/overrideUserUpgradePolicy", + "path": "$/value/0/properties/upgradeDescription/overrideUserUpgradePolicy", "position": Object { "column": 29, "line": 2617, }, "similarJsonPaths": Array [ - "$.value[1].properties.upgradeDescription.overrideUserUpgradePolicy", + "$['value'][1]['properties']['upgradeDescription']['overrideUserUpgradePolicy']", ], "similarPaths": Array [ - "value/1/properties/upgradeDescription/overrideUserUpgradePolicy", + "$/value/1/properties/upgradeDescription/overrideUserUpgradePolicy", ], "title": "#/definitions/ClusterUpgradePolicy", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/servicefabric.json", @@ -109089,22 +109681,22 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the cluster resource properties.", "directives": Object {}, - "jsonPath": "$.value[0].properties.addonFeatures", + "jsonPath": "$['value'][0]['properties']['addonFeatures']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ClusterListByResourceGroupOperation_example.json", "message": "Additional properties not allowed: addonFeatures", "params": Array [ "addonFeatures", ], - "path": "value/0/properties/addonFeatures", + "path": "$/value/0/properties/addonFeatures", "position": Object { "column": 26, "line": 2383, }, "similarJsonPaths": Array [ - "$.value[1].properties.addonFeatures", + "$['value'][1]['properties']['addonFeatures']", ], "similarPaths": Array [ - "value/1/properties/addonFeatures", + "$/value/1/properties/addonFeatures", ], "title": "#/definitions/ClusterProperties", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/servicefabric.json", @@ -109122,22 +109714,22 @@ Array [ "description": "The cluster resource ", "directives": Object {}, - "jsonPath": "$.value[0].etag", + "jsonPath": "$['value'][0]['etag']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ClusterListByResourceGroupOperation_example.json", "message": "Additional properties not allowed: etag", "params": Array [ "etag", ], - "path": "value/0/etag", + "path": "$/value/0/etag", "position": Object { "column": 16, "line": 2302, }, "similarJsonPaths": Array [ - "$.value[1].etag", + "$['value'][1]['etag']", ], "similarPaths": Array [ - "value/1/etag", + "$/value/1/etag", ], "title": "#/definitions/Cluster", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/servicefabric.json", @@ -109154,13 +109746,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a health policy used to evaluate the health of the cluster or of a cluster node.", "directives": Object {}, - "jsonPath": "$.value[0].properties.upgradeDescription.healthPolicy.applicationHealthPolicies", + "jsonPath": "$['value'][0]['properties']['upgradeDescription']['healthPolicy']['applicationHealthPolicies']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ClusterListOperation_example.json", "message": "Additional properties not allowed: applicationHealthPolicies", "params": Array [ "applicationHealthPolicies", ], - "path": "value/0/properties/upgradeDescription/healthPolicy/applicationHealthPolicies", + "path": "$/value/0/properties/upgradeDescription/healthPolicy/applicationHealthPolicies", "position": Object { "column": 28, "line": 2981, @@ -109180,13 +109772,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the delta health policies for the cluster upgrade.", "directives": Object {}, - "jsonPath": "$.value[0].properties.upgradeDescription.deltaHealthPolicy.applicationDeltaHealthPolicies", + "jsonPath": "$['value'][0]['properties']['upgradeDescription']['deltaHealthPolicy']['applicationDeltaHealthPolicies']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ClusterListOperation_example.json", "message": "Additional properties not allowed: applicationDeltaHealthPolicies", "params": Array [ "applicationDeltaHealthPolicies", ], - "path": "value/0/properties/upgradeDescription/deltaHealthPolicy/applicationDeltaHealthPolicies", + "path": "$/value/0/properties/upgradeDescription/deltaHealthPolicy/applicationDeltaHealthPolicies", "position": Object { "column": 40, "line": 2589, @@ -109206,22 +109798,22 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the policy used when upgrading the cluster.", "directives": Object {}, - "jsonPath": "$.value[0].properties.upgradeDescription.overrideUserUpgradePolicy", + "jsonPath": "$['value'][0]['properties']['upgradeDescription']['overrideUserUpgradePolicy']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ClusterListOperation_example.json", "message": "Additional properties not allowed: overrideUserUpgradePolicy", "params": Array [ "overrideUserUpgradePolicy", ], - "path": "value/0/properties/upgradeDescription/overrideUserUpgradePolicy", + "path": "$/value/0/properties/upgradeDescription/overrideUserUpgradePolicy", "position": Object { "column": 29, "line": 2617, }, "similarJsonPaths": Array [ - "$.value[1].properties.upgradeDescription.overrideUserUpgradePolicy", + "$['value'][1]['properties']['upgradeDescription']['overrideUserUpgradePolicy']", ], "similarPaths": Array [ - "value/1/properties/upgradeDescription/overrideUserUpgradePolicy", + "$/value/1/properties/upgradeDescription/overrideUserUpgradePolicy", ], "title": "#/definitions/ClusterUpgradePolicy", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/servicefabric.json", @@ -109238,22 +109830,22 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes the cluster resource properties.", "directives": Object {}, - "jsonPath": "$.value[0].properties.addonFeatures", + "jsonPath": "$['value'][0]['properties']['addonFeatures']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ClusterListOperation_example.json", "message": "Additional properties not allowed: addonFeatures", "params": Array [ "addonFeatures", ], - "path": "value/0/properties/addonFeatures", + "path": "$/value/0/properties/addonFeatures", "position": Object { "column": 26, "line": 2383, }, "similarJsonPaths": Array [ - "$.value[1].properties.addonFeatures", + "$['value'][1]['properties']['addonFeatures']", ], "similarPaths": Array [ - "value/1/properties/addonFeatures", + "$/value/1/properties/addonFeatures", ], "title": "#/definitions/ClusterProperties", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/servicefabric.json", @@ -109271,22 +109863,22 @@ Array [ "description": "The cluster resource ", "directives": Object {}, - "jsonPath": "$.value[0].etag", + "jsonPath": "$['value'][0]['etag']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ClusterListOperation_example.json", "message": "Additional properties not allowed: etag", "params": Array [ "etag", ], - "path": "value/0/etag", + "path": "$/value/0/etag", "position": Object { "column": 16, "line": 2302, }, "similarJsonPaths": Array [ - "$.value[1].etag", + "$['value'][1]['etag']", ], "similarPaths": Array [ - "value/1/etag", + "$/value/1/etag", ], "title": "#/definitions/Cluster", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/servicefabric.json", @@ -109303,7 +109895,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application type name resource", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "jsonPosition": Object { "column": 15, "line": 12, @@ -109313,7 +109905,7 @@ Array [ "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 32, "line": 1792, @@ -109333,7 +109925,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application type name resource", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 15, "line": 12, @@ -109343,7 +109935,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 32, "line": 1792, @@ -109363,12 +109955,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application type name resource", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "message": "Additional properties not allowed: tags", "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 32, "line": 1792, @@ -109388,13 +109980,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myCluster\\"\`, cannot be sent in the request.", "params": Array [ "name", "myCluster", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 2859, @@ -109414,13 +110006,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource ID.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applicationTypes/myAppType\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applicationTypes/myAppType", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 2854, @@ -109440,13 +110032,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"applicationTypes\\"\`, cannot be sent in the request.", "params": Array [ "type", "applicationTypes", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 2864, @@ -109466,7 +110058,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application type name resource", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "jsonPosition": Object { "column": 15, "line": 19, @@ -109476,7 +110068,7 @@ Array [ "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 32, "line": 1792, @@ -109496,7 +110088,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application type name resource", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 15, "line": 19, @@ -109506,7 +110098,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 32, "line": 1792, @@ -109542,7 +110134,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The list of application type names.", "directives": Object {}, - "jsonPath": "$.nextLink", + "jsonPath": "$['nextLink']", "jsonPosition": Object { "column": 15, "line": 12, @@ -109552,7 +110144,7 @@ Array [ "params": Array [ "nextLink", ], - "path": "nextLink", + "path": "$/nextLink", "position": Object { "column": 36, "line": 1806, @@ -109572,13 +110164,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application type name properties", "directives": Object {}, - "jsonPath": "$.value[0].properties.defaultParameterList", + "jsonPath": "$['value'][0]['properties']['defaultParameterList']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationTypeVersionListOperation_example.json", "message": "Additional properties not allowed: defaultParameterList", "params": Array [ "defaultParameterList", ], - "path": "value/0/properties/defaultParameterList", + "path": "$/value/0/properties/defaultParameterList", "position": Object { "column": 34, "line": 1817, @@ -109598,13 +110190,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application type name properties", "directives": Object {}, - "jsonPath": "$.value[0].properties.appPackageUrl", + "jsonPath": "$['value'][0]['properties']['appPackageUrl']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationTypeVersionListOperation_example.json", "message": "Additional properties not allowed: appPackageUrl", "params": Array [ "appPackageUrl", ], - "path": "value/0/properties/appPackageUrl", + "path": "$/value/0/properties/appPackageUrl", "position": Object { "column": 34, "line": 1817, @@ -109624,13 +110216,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application type name resource", "directives": Object {}, - "jsonPath": "$.value[0].etag", + "jsonPath": "$['value'][0]['etag']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationTypeVersionListOperation_example.json", "message": "Additional properties not allowed: etag", "params": Array [ "etag", ], - "path": "value/0/etag", + "path": "$/value/0/etag", "position": Object { "column": 32, "line": 1792, @@ -109650,13 +110242,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application type name resource", "directives": Object {}, - "jsonPath": "$.value[0].tags", + "jsonPath": "$['value'][0]['tags']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationTypeVersionListOperation_example.json", "message": "Additional properties not allowed: tags", "params": Array [ "tags", ], - "path": "value/0/tags", + "path": "$/value/0/tags", "position": Object { "column": 32, "line": 1792, @@ -109676,7 +110268,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A version resource for the specified application type name.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "jsonPosition": Object { "column": 15, "line": 13, @@ -109686,7 +110278,7 @@ Array [ "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 24, "line": 1827, @@ -109706,7 +110298,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A version resource for the specified application type name.", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 15, "line": 13, @@ -109716,7 +110308,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 24, "line": 1827, @@ -109736,14 +110328,14 @@ Array [ "code": "INVALID_TYPE", "description": "List of application type parameters that can be overridden when creating or updating the application.", "directives": Object {}, - "jsonPath": "$.properties.defaultParameterList", + "jsonPath": "$['properties']['defaultParameterList']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationTypeVersionGetOperation_example.json", "message": "Expected type array but found type object", "params": Array [ "array", "object", ], - "path": "properties/defaultParameterList", + "path": "$/properties/defaultParameterList", "position": Object { "column": 37, "line": 1460, @@ -109763,12 +110355,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A version resource for the specified application type name.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "message": "Additional properties not allowed: tags", "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 24, "line": 1827, @@ -109788,13 +110380,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myCluster\\"\`, cannot be sent in the request.", "params": Array [ "name", "myCluster", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 2859, @@ -109814,13 +110406,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource ID.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applicationTypes/myAppType/versions/1.0\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applicationTypes/myAppType/versions/1.0", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 2854, @@ -109840,13 +110432,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"versions\\"\`, cannot be sent in the request.", "params": Array [ "type", "versions", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 2864, @@ -109866,7 +110458,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A version resource for the specified application type name.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "jsonPosition": Object { "column": 15, "line": 26, @@ -109876,7 +110468,7 @@ Array [ "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 24, "line": 1827, @@ -109896,7 +110488,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A version resource for the specified application type name.", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 15, "line": 26, @@ -109906,7 +110498,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 24, "line": 1827, @@ -109926,14 +110518,14 @@ Array [ "code": "INVALID_TYPE", "description": "List of application type parameters that can be overridden when creating or updating the application.", "directives": Object {}, - "jsonPath": "$.properties.defaultParameterList", + "jsonPath": "$['properties']['defaultParameterList']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationTypeVersionPutOperation_example.json", "message": "Expected type array but found type object", "params": Array [ "array", "object", ], - "path": "properties/defaultParameterList", + "path": "$/properties/defaultParameterList", "position": Object { "column": 37, "line": 1460, @@ -109969,7 +110561,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The list of version resources for the specified application type name.", "directives": Object {}, - "jsonPath": "$.nextLink", + "jsonPath": "$['nextLink']", "jsonPosition": Object { "column": 15, "line": 12, @@ -109979,7 +110571,7 @@ Array [ "params": Array [ "nextLink", ], - "path": "nextLink", + "path": "$/nextLink", "position": Object { "column": 28, "line": 1841, @@ -109999,14 +110591,14 @@ Array [ "code": "INVALID_TYPE", "description": "List of application type parameters that can be overridden when creating or updating the application.", "directives": Object {}, - "jsonPath": "$.value[0].properties.defaultParameterList", + "jsonPath": "$['value'][0]['properties']['defaultParameterList']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationTypeVersionListOperation_example.json", "message": "Expected type array but found type object", "params": Array [ "array", "object", ], - "path": "value/0/properties/defaultParameterList", + "path": "$/value/0/properties/defaultParameterList", "position": Object { "column": 37, "line": 1460, @@ -110026,13 +110618,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A version resource for the specified application type name.", "directives": Object {}, - "jsonPath": "$.value[0].etag", + "jsonPath": "$['value'][0]['etag']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationTypeVersionListOperation_example.json", "message": "Additional properties not allowed: etag", "params": Array [ "etag", ], - "path": "value/0/etag", + "path": "$/value/0/etag", "position": Object { "column": 24, "line": 1827, @@ -110052,13 +110644,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A version resource for the specified application type name.", "directives": Object {}, - "jsonPath": "$.value[0].tags", + "jsonPath": "$['value'][0]['tags']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationTypeVersionListOperation_example.json", "message": "Additional properties not allowed: tags", "params": Array [ "tags", ], - "path": "value/0/tags", + "path": "$/value/0/tags", "position": Object { "column": 24, "line": 1827, @@ -110078,7 +110670,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "jsonPosition": Object { "column": 15, "line": 12, @@ -110088,7 +110680,7 @@ Array [ "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 28, "line": 1873, @@ -110108,7 +110700,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource.", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 15, "line": 12, @@ -110118,7 +110710,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 28, "line": 1873, @@ -110138,14 +110730,14 @@ Array [ "code": "INVALID_TYPE", "description": "List of application parameters with overridden values from their default values specified in the application manifest.", "directives": Object {}, - "jsonPath": "$.properties.parameters", + "jsonPath": "$['properties']['parameters']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationGetOperation_example.json", "message": "Expected type array but found type object", "params": Array [ "array", "object", ], - "path": "properties/parameters", + "path": "$/properties/parameters", "position": Object { "column": 33, "line": 1449, @@ -110166,13 +110758,13 @@ Array [ "description": "Defines a health policy used to evaluate the health of an application or one of its children entities. ", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.applicationHealthPolicy.defaultServiceTypeHealthPolicy", + "jsonPath": "$['properties']['upgradePolicy']['applicationHealthPolicy']['defaultServiceTypeHealthPolicy']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationGetOperation_example.json", "message": "Additional properties not allowed: defaultServiceTypeHealthPolicy", "params": Array [ "defaultServiceTypeHealthPolicy", ], - "path": "properties/upgradePolicy/applicationHealthPolicy/defaultServiceTypeHealthPolicy", + "path": "$/properties/upgradePolicy/applicationHealthPolicy/defaultServiceTypeHealthPolicy", "position": Object { "column": 32, "line": 1377, @@ -110193,13 +110785,13 @@ Array [ "description": "Defines a health policy used to evaluate the health of an application or one of its children entities. ", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.applicationHealthPolicy.maxPercentUnhealthyDeployedApplications", + "jsonPath": "$['properties']['upgradePolicy']['applicationHealthPolicy']['maxPercentUnhealthyDeployedApplications']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationGetOperation_example.json", "message": "Additional properties not allowed: maxPercentUnhealthyDeployedApplications", "params": Array [ "maxPercentUnhealthyDeployedApplications", ], - "path": "properties/upgradePolicy/applicationHealthPolicy/maxPercentUnhealthyDeployedApplications", + "path": "$/properties/upgradePolicy/applicationHealthPolicy/maxPercentUnhealthyDeployedApplications", "position": Object { "column": 32, "line": 1377, @@ -110220,13 +110812,13 @@ Array [ "description": "Defines a health policy used to evaluate the health of an application or one of its children entities. ", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.applicationHealthPolicy.considerWarningAsError", + "jsonPath": "$['properties']['upgradePolicy']['applicationHealthPolicy']['considerWarningAsError']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationGetOperation_example.json", "message": "Additional properties not allowed: considerWarningAsError", "params": Array [ "considerWarningAsError", ], - "path": "properties/upgradePolicy/applicationHealthPolicy/considerWarningAsError", + "path": "$/properties/upgradePolicy/applicationHealthPolicy/considerWarningAsError", "position": Object { "column": 32, "line": 1377, @@ -110246,13 +110838,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The policy used for monitoring the application upgrade", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.rollingUpgradeMonitoringPolicy.failureAction", + "jsonPath": "$['properties']['upgradePolicy']['rollingUpgradeMonitoringPolicy']['failureAction']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationGetOperation_example.json", "message": "Additional properties not allowed: failureAction", "params": Array [ "failureAction", ], - "path": "properties/upgradePolicy/rollingUpgradeMonitoringPolicy/failureAction", + "path": "$/properties/upgradePolicy/rollingUpgradeMonitoringPolicy/failureAction", "position": Object { "column": 39, "line": 2912, @@ -110272,14 +110864,14 @@ Array [ "code": "INVALID_FORMAT", "description": "The maximum amount of time to block processing of an upgrade domain and prevent loss of availability when there are unexpected issues. When this timeout expires, processing of the upgrade domain will proceed regardless of availability loss issues. The timeout is reset at the start of each upgrade domain. Valid values are between 0 and 42949672925 inclusive. (unsigned 32-bit integer).", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.upgradeReplicaSetCheckTimeout", + "jsonPath": "$['properties']['upgradePolicy']['upgradeReplicaSetCheckTimeout']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationGetOperation_example.json", "message": "Object didn't pass validation for format int64: 01:00:00", "params": Array [ "int64", "01:00:00", ], - "path": "properties/upgradePolicy/upgradeReplicaSetCheckTimeout", + "path": "$/properties/upgradePolicy/upgradeReplicaSetCheckTimeout", "position": Object { "column": 38, "line": 1546, @@ -110299,14 +110891,14 @@ Array [ "code": "INVALID_TYPE", "description": "The maximum amount of time to block processing of an upgrade domain and prevent loss of availability when there are unexpected issues. When this timeout expires, processing of the upgrade domain will proceed regardless of availability loss issues. The timeout is reset at the start of each upgrade domain. Valid values are between 0 and 42949672925 inclusive. (unsigned 32-bit integer).", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.upgradeReplicaSetCheckTimeout", + "jsonPath": "$['properties']['upgradePolicy']['upgradeReplicaSetCheckTimeout']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationGetOperation_example.json", "message": "Expected type integer but found type string", "params": Array [ "integer", "string", ], - "path": "properties/upgradePolicy/upgradeReplicaSetCheckTimeout", + "path": "$/properties/upgradePolicy/upgradeReplicaSetCheckTimeout", "position": Object { "column": 38, "line": 1546, @@ -110327,13 +110919,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].totalApplicationCapacity", + "jsonPath": "$['properties']['metrics'][0]['totalApplicationCapacity']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationGetOperation_example.json", "message": "Additional properties not allowed: totalApplicationCapacity", "params": Array [ "totalApplicationCapacity", ], - "path": "properties/metrics/0/totalApplicationCapacity", + "path": "$/properties/metrics/0/totalApplicationCapacity", "position": Object { "column": 37, "line": 1399, @@ -110354,13 +110946,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].maximumCapacity", + "jsonPath": "$['properties']['metrics'][0]['maximumCapacity']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationGetOperation_example.json", "message": "Additional properties not allowed: maximumCapacity", "params": Array [ "maximumCapacity", ], - "path": "properties/metrics/0/maximumCapacity", + "path": "$/properties/metrics/0/maximumCapacity", "position": Object { "column": 37, "line": 1399, @@ -110381,13 +110973,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].reservationCapacity", + "jsonPath": "$['properties']['metrics'][0]['reservationCapacity']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationGetOperation_example.json", "message": "Additional properties not allowed: reservationCapacity", "params": Array [ "reservationCapacity", ], - "path": "properties/metrics/0/reservationCapacity", + "path": "$/properties/metrics/0/reservationCapacity", "position": Object { "column": 37, "line": 1399, @@ -110408,13 +111000,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].name", + "jsonPath": "$['properties']['metrics'][0]['name']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationGetOperation_example.json", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "properties/metrics/0/name", + "path": "$/properties/metrics/0/name", "position": Object { "column": 37, "line": 1399, @@ -110434,12 +111026,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "message": "Additional properties not allowed: tags", "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 28, "line": 1873, @@ -110459,13 +111051,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myCluster\\"\`, cannot be sent in the request.", "params": Array [ "name", "myCluster", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 2859, @@ -110485,13 +111077,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource ID.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 2854, @@ -110511,13 +111103,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"applications\\"\`, cannot be sent in the request.", "params": Array [ "type", "applications", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 2864, @@ -110537,7 +111129,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "jsonPosition": Object { "column": 15, "line": 27, @@ -110547,7 +111139,7 @@ Array [ "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 28, "line": 1873, @@ -110567,7 +111159,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource.", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 15, "line": 27, @@ -110577,7 +111169,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 28, "line": 1873, @@ -110597,12 +111189,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "message": "Additional properties not allowed: tags", "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 28, "line": 1873, @@ -110622,13 +111214,13 @@ Array [ "code": "INVALID_TYPE", "description": "List of application parameters with overridden values from their default values specified in the application manifest.", "directives": Object {}, - "jsonPath": "$.properties.parameters", + "jsonPath": "$['properties']['parameters']", "message": "Expected type array but found type object", "params": Array [ "array", "object", ], - "path": "properties/parameters", + "path": "$/properties/parameters", "position": Object { "column": 33, "line": 1449, @@ -110649,12 +111241,12 @@ Array [ "description": "Defines a health policy used to evaluate the health of an application or one of its children entities. ", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.applicationHealthPolicy.defaultServiceTypeHealthPolicy", + "jsonPath": "$['properties']['upgradePolicy']['applicationHealthPolicy']['defaultServiceTypeHealthPolicy']", "message": "Additional properties not allowed: defaultServiceTypeHealthPolicy", "params": Array [ "defaultServiceTypeHealthPolicy", ], - "path": "properties/upgradePolicy/applicationHealthPolicy/defaultServiceTypeHealthPolicy", + "path": "$/properties/upgradePolicy/applicationHealthPolicy/defaultServiceTypeHealthPolicy", "position": Object { "column": 32, "line": 1377, @@ -110675,12 +111267,12 @@ Array [ "description": "Defines a health policy used to evaluate the health of an application or one of its children entities. ", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.applicationHealthPolicy.maxPercentUnhealthyDeployedApplications", + "jsonPath": "$['properties']['upgradePolicy']['applicationHealthPolicy']['maxPercentUnhealthyDeployedApplications']", "message": "Additional properties not allowed: maxPercentUnhealthyDeployedApplications", "params": Array [ "maxPercentUnhealthyDeployedApplications", ], - "path": "properties/upgradePolicy/applicationHealthPolicy/maxPercentUnhealthyDeployedApplications", + "path": "$/properties/upgradePolicy/applicationHealthPolicy/maxPercentUnhealthyDeployedApplications", "position": Object { "column": 32, "line": 1377, @@ -110701,12 +111293,12 @@ Array [ "description": "Defines a health policy used to evaluate the health of an application or one of its children entities. ", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.applicationHealthPolicy.considerWarningAsError", + "jsonPath": "$['properties']['upgradePolicy']['applicationHealthPolicy']['considerWarningAsError']", "message": "Additional properties not allowed: considerWarningAsError", "params": Array [ "considerWarningAsError", ], - "path": "properties/upgradePolicy/applicationHealthPolicy/considerWarningAsError", + "path": "$/properties/upgradePolicy/applicationHealthPolicy/considerWarningAsError", "position": Object { "column": 32, "line": 1377, @@ -110726,12 +111318,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The policy used for monitoring the application upgrade", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.rollingUpgradeMonitoringPolicy.failureAction", + "jsonPath": "$['properties']['upgradePolicy']['rollingUpgradeMonitoringPolicy']['failureAction']", "message": "Additional properties not allowed: failureAction", "params": Array [ "failureAction", ], - "path": "properties/upgradePolicy/rollingUpgradeMonitoringPolicy/failureAction", + "path": "$/properties/upgradePolicy/rollingUpgradeMonitoringPolicy/failureAction", "position": Object { "column": 39, "line": 2912, @@ -110751,13 +111343,13 @@ Array [ "code": "INVALID_FORMAT", "description": "The maximum amount of time to block processing of an upgrade domain and prevent loss of availability when there are unexpected issues. When this timeout expires, processing of the upgrade domain will proceed regardless of availability loss issues. The timeout is reset at the start of each upgrade domain. Valid values are between 0 and 42949672925 inclusive. (unsigned 32-bit integer).", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.upgradeReplicaSetCheckTimeout", + "jsonPath": "$['properties']['upgradePolicy']['upgradeReplicaSetCheckTimeout']", "message": "Object didn't pass validation for format int64: 01:00:00", "params": Array [ "int64", "01:00:00", ], - "path": "properties/upgradePolicy/upgradeReplicaSetCheckTimeout", + "path": "$/properties/upgradePolicy/upgradeReplicaSetCheckTimeout", "position": Object { "column": 38, "line": 1546, @@ -110777,13 +111369,13 @@ Array [ "code": "INVALID_TYPE", "description": "The maximum amount of time to block processing of an upgrade domain and prevent loss of availability when there are unexpected issues. When this timeout expires, processing of the upgrade domain will proceed regardless of availability loss issues. The timeout is reset at the start of each upgrade domain. Valid values are between 0 and 42949672925 inclusive. (unsigned 32-bit integer).", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.upgradeReplicaSetCheckTimeout", + "jsonPath": "$['properties']['upgradePolicy']['upgradeReplicaSetCheckTimeout']", "message": "Expected type integer but found type string", "params": Array [ "integer", "string", ], - "path": "properties/upgradePolicy/upgradeReplicaSetCheckTimeout", + "path": "$/properties/upgradePolicy/upgradeReplicaSetCheckTimeout", "position": Object { "column": 38, "line": 1546, @@ -110804,12 +111396,12 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].totalApplicationCapacity", + "jsonPath": "$['properties']['metrics'][0]['totalApplicationCapacity']", "message": "Additional properties not allowed: totalApplicationCapacity", "params": Array [ "totalApplicationCapacity", ], - "path": "properties/metrics/0/totalApplicationCapacity", + "path": "$/properties/metrics/0/totalApplicationCapacity", "position": Object { "column": 37, "line": 1399, @@ -110830,12 +111422,12 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].maximumCapacity", + "jsonPath": "$['properties']['metrics'][0]['maximumCapacity']", "message": "Additional properties not allowed: maximumCapacity", "params": Array [ "maximumCapacity", ], - "path": "properties/metrics/0/maximumCapacity", + "path": "$/properties/metrics/0/maximumCapacity", "position": Object { "column": 37, "line": 1399, @@ -110856,12 +111448,12 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].reservationCapacity", + "jsonPath": "$['properties']['metrics'][0]['reservationCapacity']", "message": "Additional properties not allowed: reservationCapacity", "params": Array [ "reservationCapacity", ], - "path": "properties/metrics/0/reservationCapacity", + "path": "$/properties/metrics/0/reservationCapacity", "position": Object { "column": 37, "line": 1399, @@ -110882,12 +111474,12 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].name", + "jsonPath": "$['properties']['metrics'][0]['name']", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "properties/metrics/0/name", + "path": "$/properties/metrics/0/name", "position": Object { "column": 37, "line": 1399, @@ -110907,13 +111499,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myCluster\\"\`, cannot be sent in the request.", "params": Array [ "name", "myCluster", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 2859, @@ -110933,13 +111525,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource ID.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 2854, @@ -110959,13 +111551,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"applications\\"\`, cannot be sent in the request.", "params": Array [ "type", "applications", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 2864, @@ -110985,7 +111577,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "jsonPosition": Object { "column": 15, "line": 61, @@ -110995,7 +111587,7 @@ Array [ "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 28, "line": 1873, @@ -111015,7 +111607,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource.", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 15, "line": 61, @@ -111025,7 +111617,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 28, "line": 1873, @@ -111045,14 +111637,14 @@ Array [ "code": "INVALID_TYPE", "description": "List of application parameters with overridden values from their default values specified in the application manifest.", "directives": Object {}, - "jsonPath": "$.properties.parameters", + "jsonPath": "$['properties']['parameters']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationPutOperation_example_max.json", "message": "Expected type array but found type object", "params": Array [ "array", "object", ], - "path": "properties/parameters", + "path": "$/properties/parameters", "position": Object { "column": 33, "line": 1449, @@ -111073,13 +111665,13 @@ Array [ "description": "Defines a health policy used to evaluate the health of an application or one of its children entities. ", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.applicationHealthPolicy.defaultServiceTypeHealthPolicy", + "jsonPath": "$['properties']['upgradePolicy']['applicationHealthPolicy']['defaultServiceTypeHealthPolicy']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationPutOperation_example_max.json", "message": "Additional properties not allowed: defaultServiceTypeHealthPolicy", "params": Array [ "defaultServiceTypeHealthPolicy", ], - "path": "properties/upgradePolicy/applicationHealthPolicy/defaultServiceTypeHealthPolicy", + "path": "$/properties/upgradePolicy/applicationHealthPolicy/defaultServiceTypeHealthPolicy", "position": Object { "column": 32, "line": 1377, @@ -111100,13 +111692,13 @@ Array [ "description": "Defines a health policy used to evaluate the health of an application or one of its children entities. ", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.applicationHealthPolicy.maxPercentUnhealthyDeployedApplications", + "jsonPath": "$['properties']['upgradePolicy']['applicationHealthPolicy']['maxPercentUnhealthyDeployedApplications']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationPutOperation_example_max.json", "message": "Additional properties not allowed: maxPercentUnhealthyDeployedApplications", "params": Array [ "maxPercentUnhealthyDeployedApplications", ], - "path": "properties/upgradePolicy/applicationHealthPolicy/maxPercentUnhealthyDeployedApplications", + "path": "$/properties/upgradePolicy/applicationHealthPolicy/maxPercentUnhealthyDeployedApplications", "position": Object { "column": 32, "line": 1377, @@ -111127,13 +111719,13 @@ Array [ "description": "Defines a health policy used to evaluate the health of an application or one of its children entities. ", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.applicationHealthPolicy.considerWarningAsError", + "jsonPath": "$['properties']['upgradePolicy']['applicationHealthPolicy']['considerWarningAsError']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationPutOperation_example_max.json", "message": "Additional properties not allowed: considerWarningAsError", "params": Array [ "considerWarningAsError", ], - "path": "properties/upgradePolicy/applicationHealthPolicy/considerWarningAsError", + "path": "$/properties/upgradePolicy/applicationHealthPolicy/considerWarningAsError", "position": Object { "column": 32, "line": 1377, @@ -111153,13 +111745,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The policy used for monitoring the application upgrade", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.rollingUpgradeMonitoringPolicy.failureAction", + "jsonPath": "$['properties']['upgradePolicy']['rollingUpgradeMonitoringPolicy']['failureAction']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationPutOperation_example_max.json", "message": "Additional properties not allowed: failureAction", "params": Array [ "failureAction", ], - "path": "properties/upgradePolicy/rollingUpgradeMonitoringPolicy/failureAction", + "path": "$/properties/upgradePolicy/rollingUpgradeMonitoringPolicy/failureAction", "position": Object { "column": 39, "line": 2912, @@ -111179,14 +111771,14 @@ Array [ "code": "INVALID_FORMAT", "description": "The maximum amount of time to block processing of an upgrade domain and prevent loss of availability when there are unexpected issues. When this timeout expires, processing of the upgrade domain will proceed regardless of availability loss issues. The timeout is reset at the start of each upgrade domain. Valid values are between 0 and 42949672925 inclusive. (unsigned 32-bit integer).", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.upgradeReplicaSetCheckTimeout", + "jsonPath": "$['properties']['upgradePolicy']['upgradeReplicaSetCheckTimeout']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationPutOperation_example_max.json", "message": "Object didn't pass validation for format int64: 01:00:00", "params": Array [ "int64", "01:00:00", ], - "path": "properties/upgradePolicy/upgradeReplicaSetCheckTimeout", + "path": "$/properties/upgradePolicy/upgradeReplicaSetCheckTimeout", "position": Object { "column": 38, "line": 1546, @@ -111206,14 +111798,14 @@ Array [ "code": "INVALID_TYPE", "description": "The maximum amount of time to block processing of an upgrade domain and prevent loss of availability when there are unexpected issues. When this timeout expires, processing of the upgrade domain will proceed regardless of availability loss issues. The timeout is reset at the start of each upgrade domain. Valid values are between 0 and 42949672925 inclusive. (unsigned 32-bit integer).", "directives": Object {}, - "jsonPath": "$.properties.upgradePolicy.upgradeReplicaSetCheckTimeout", + "jsonPath": "$['properties']['upgradePolicy']['upgradeReplicaSetCheckTimeout']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationPutOperation_example_max.json", "message": "Expected type integer but found type string", "params": Array [ "integer", "string", ], - "path": "properties/upgradePolicy/upgradeReplicaSetCheckTimeout", + "path": "$/properties/upgradePolicy/upgradeReplicaSetCheckTimeout", "position": Object { "column": 38, "line": 1546, @@ -111234,13 +111826,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].totalApplicationCapacity", + "jsonPath": "$['properties']['metrics'][0]['totalApplicationCapacity']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationPutOperation_example_max.json", "message": "Additional properties not allowed: totalApplicationCapacity", "params": Array [ "totalApplicationCapacity", ], - "path": "properties/metrics/0/totalApplicationCapacity", + "path": "$/properties/metrics/0/totalApplicationCapacity", "position": Object { "column": 37, "line": 1399, @@ -111261,13 +111853,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].maximumCapacity", + "jsonPath": "$['properties']['metrics'][0]['maximumCapacity']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationPutOperation_example_max.json", "message": "Additional properties not allowed: maximumCapacity", "params": Array [ "maximumCapacity", ], - "path": "properties/metrics/0/maximumCapacity", + "path": "$/properties/metrics/0/maximumCapacity", "position": Object { "column": 37, "line": 1399, @@ -111288,13 +111880,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].reservationCapacity", + "jsonPath": "$['properties']['metrics'][0]['reservationCapacity']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationPutOperation_example_max.json", "message": "Additional properties not allowed: reservationCapacity", "params": Array [ "reservationCapacity", ], - "path": "properties/metrics/0/reservationCapacity", + "path": "$/properties/metrics/0/reservationCapacity", "position": Object { "column": 37, "line": 1399, @@ -111315,13 +111907,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].name", + "jsonPath": "$['properties']['metrics'][0]['name']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationPutOperation_example_max.json", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "properties/metrics/0/name", + "path": "$/properties/metrics/0/name", "position": Object { "column": 37, "line": 1399, @@ -111341,12 +111933,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource for patch operations.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "message": "Additional properties not allowed: tags", "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 34, "line": 1916, @@ -111367,12 +111959,12 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].totalApplicationCapacity", + "jsonPath": "$['properties']['metrics'][0]['totalApplicationCapacity']", "message": "Additional properties not allowed: totalApplicationCapacity", "params": Array [ "totalApplicationCapacity", ], - "path": "properties/metrics/0/totalApplicationCapacity", + "path": "$/properties/metrics/0/totalApplicationCapacity", "position": Object { "column": 37, "line": 1399, @@ -111393,12 +111985,12 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].maximumCapacity", + "jsonPath": "$['properties']['metrics'][0]['maximumCapacity']", "message": "Additional properties not allowed: maximumCapacity", "params": Array [ "maximumCapacity", ], - "path": "properties/metrics/0/maximumCapacity", + "path": "$/properties/metrics/0/maximumCapacity", "position": Object { "column": 37, "line": 1399, @@ -111419,12 +112011,12 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].reservationCapacity", + "jsonPath": "$['properties']['metrics'][0]['reservationCapacity']", "message": "Additional properties not allowed: reservationCapacity", "params": Array [ "reservationCapacity", ], - "path": "properties/metrics/0/reservationCapacity", + "path": "$/properties/metrics/0/reservationCapacity", "position": Object { "column": 37, "line": 1399, @@ -111445,12 +112037,12 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].name", + "jsonPath": "$['properties']['metrics'][0]['name']", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "properties/metrics/0/name", + "path": "$/properties/metrics/0/name", "position": Object { "column": 37, "line": 1399, @@ -111470,12 +112062,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource properties for patch operations.", "directives": Object {}, - "jsonPath": "$.properties.typeName", + "jsonPath": "$['properties']['typeName']", "message": "Additional properties not allowed: typeName", "params": Array [ "typeName", ], - "path": "properties/typeName", + "path": "$/properties/typeName", "position": Object { "column": 36, "line": 1930, @@ -111495,13 +112087,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myCluster\\"\`, cannot be sent in the request.", "params": Array [ "name", "myCluster", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 2859, @@ -111521,13 +112113,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource ID.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 2854, @@ -111547,13 +112139,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"applications\\"\`, cannot be sent in the request.", "params": Array [ "type", "applications", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 2864, @@ -111573,7 +112165,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource for patch operations.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "jsonPosition": Object { "column": 15, "line": 35, @@ -111583,7 +112175,7 @@ Array [ "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 34, "line": 1916, @@ -111603,7 +112195,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource for patch operations.", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 15, "line": 35, @@ -111613,7 +112205,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 34, "line": 1916, @@ -111634,13 +112226,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].totalApplicationCapacity", + "jsonPath": "$['properties']['metrics'][0]['totalApplicationCapacity']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationPatchOperation_example.json", "message": "Additional properties not allowed: totalApplicationCapacity", "params": Array [ "totalApplicationCapacity", ], - "path": "properties/metrics/0/totalApplicationCapacity", + "path": "$/properties/metrics/0/totalApplicationCapacity", "position": Object { "column": 37, "line": 1399, @@ -111661,13 +112253,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].maximumCapacity", + "jsonPath": "$['properties']['metrics'][0]['maximumCapacity']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationPatchOperation_example.json", "message": "Additional properties not allowed: maximumCapacity", "params": Array [ "maximumCapacity", ], - "path": "properties/metrics/0/maximumCapacity", + "path": "$/properties/metrics/0/maximumCapacity", "position": Object { "column": 37, "line": 1399, @@ -111688,13 +112280,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].reservationCapacity", + "jsonPath": "$['properties']['metrics'][0]['reservationCapacity']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationPatchOperation_example.json", "message": "Additional properties not allowed: reservationCapacity", "params": Array [ "reservationCapacity", ], - "path": "properties/metrics/0/reservationCapacity", + "path": "$/properties/metrics/0/reservationCapacity", "position": Object { "column": 37, "line": 1399, @@ -111715,13 +112307,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.properties.metrics[0].name", + "jsonPath": "$['properties']['metrics'][0]['name']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationPatchOperation_example.json", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "properties/metrics/0/name", + "path": "$/properties/metrics/0/name", "position": Object { "column": 37, "line": 1399, @@ -111741,7 +112333,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource properties for patch operations.", "directives": Object {}, - "jsonPath": "$.properties.typeName", + "jsonPath": "$['properties']['typeName']", "jsonPosition": Object { "column": 23, "line": 42, @@ -111751,7 +112343,7 @@ Array [ "params": Array [ "typeName", ], - "path": "properties/typeName", + "path": "$/properties/typeName", "position": Object { "column": 36, "line": 1930, @@ -111771,7 +112363,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource properties for patch operations.", "directives": Object {}, - "jsonPath": "$.properties.provisioningState", + "jsonPath": "$['properties']['provisioningState']", "jsonPosition": Object { "column": 23, "line": 42, @@ -111781,7 +112373,7 @@ Array [ "params": Array [ "provisioningState", ], - "path": "properties/provisioningState", + "path": "$/properties/provisioningState", "position": Object { "column": 36, "line": 1930, @@ -111817,7 +112409,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The list of application resources.", "directives": Object {}, - "jsonPath": "$.nextLink", + "jsonPath": "$['nextLink']", "jsonPosition": Object { "column": 15, "line": 11, @@ -111827,7 +112419,7 @@ Array [ "params": Array [ "nextLink", ], - "path": "nextLink", + "path": "$/nextLink", "position": Object { "column": 32, "line": 1887, @@ -111848,13 +112440,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.value[0].properties.metrics.metrics[0].totalApplicationCapacity", + "jsonPath": "$['value'][0]['properties']['metrics']['metrics'][0]['totalApplicationCapacity']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationListOperation_example.json", "message": "Additional properties not allowed: totalApplicationCapacity", "params": Array [ "totalApplicationCapacity", ], - "path": "value/0/properties/metrics/metrics/0/totalApplicationCapacity", + "path": "$/value/0/properties/metrics/metrics/0/totalApplicationCapacity", "position": Object { "column": 37, "line": 1399, @@ -111875,13 +112467,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.value[0].properties.metrics.metrics[0].maximumCapacity", + "jsonPath": "$['value'][0]['properties']['metrics']['metrics'][0]['maximumCapacity']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationListOperation_example.json", "message": "Additional properties not allowed: maximumCapacity", "params": Array [ "maximumCapacity", ], - "path": "value/0/properties/metrics/metrics/0/maximumCapacity", + "path": "$/value/0/properties/metrics/metrics/0/maximumCapacity", "position": Object { "column": 37, "line": 1399, @@ -111902,13 +112494,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.value[0].properties.metrics.metrics[0].reservationCapacity", + "jsonPath": "$['value'][0]['properties']['metrics']['metrics'][0]['reservationCapacity']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationListOperation_example.json", "message": "Additional properties not allowed: reservationCapacity", "params": Array [ "reservationCapacity", ], - "path": "value/0/properties/metrics/metrics/0/reservationCapacity", + "path": "$/value/0/properties/metrics/metrics/0/reservationCapacity", "position": Object { "column": 37, "line": 1399, @@ -111929,13 +112521,13 @@ Array [ "description": "Describes capacity information for a custom resource balancing metric. This can be used to limit the total consumption of this metric by the services of this application. ", "directives": Object {}, - "jsonPath": "$.value[0].properties.metrics.metrics[0].name", + "jsonPath": "$['value'][0]['properties']['metrics']['metrics'][0]['name']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationListOperation_example.json", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "value/0/properties/metrics/metrics/0/name", + "path": "$/value/0/properties/metrics/metrics/0/name", "position": Object { "column": 37, "line": 1399, @@ -111955,13 +112547,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource.", "directives": Object {}, - "jsonPath": "$.value[0].etag", + "jsonPath": "$['value'][0]['etag']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationListOperation_example.json", "message": "Additional properties not allowed: etag", "params": Array [ "etag", ], - "path": "value/0/etag", + "path": "$/value/0/etag", "position": Object { "column": 28, "line": 1873, @@ -111981,13 +112573,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The application resource.", "directives": Object {}, - "jsonPath": "$.value[0].tags", + "jsonPath": "$['value'][0]['tags']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ApplicationListOperation_example.json", "message": "Additional properties not allowed: tags", "params": Array [ "tags", ], - "path": "value/0/tags", + "path": "$/value/0/tags", "position": Object { "column": 28, "line": 1873, @@ -112007,7 +112599,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The service resource.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "jsonPosition": Object { "column": 15, "line": 13, @@ -112017,7 +112609,7 @@ Array [ "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 24, "line": 1981, @@ -112037,7 +112629,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The service resource.", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 15, "line": 13, @@ -112047,7 +112639,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 24, "line": 1981, @@ -112067,13 +112659,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.properties.serviceLoadMetrics[0].weight", + "jsonPath": "$['properties']['serviceLoadMetrics'][0]['weight']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ServiceGetOperation_example.json", "message": "Additional properties not allowed: weight", "params": Array [ "weight", ], - "path": "properties/serviceLoadMetrics/0/weight", + "path": "$/properties/serviceLoadMetrics/0/weight", "position": Object { "column": 37, "line": 1605, @@ -112093,13 +112685,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.properties.serviceLoadMetrics[0].name", + "jsonPath": "$['properties']['serviceLoadMetrics'][0]['name']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ServiceGetOperation_example.json", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "properties/serviceLoadMetrics/0/name", + "path": "$/properties/serviceLoadMetrics/0/name", "position": Object { "column": 37, "line": 1605, @@ -112119,13 +112711,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.properties.serviceLoadMetrics[0].Name", + "jsonPath": "$['properties']['serviceLoadMetrics'][0]['Name']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ServiceGetOperation_example.json", "message": "Missing required property: Name", "params": Array [ "Name", ], - "path": "properties/serviceLoadMetrics/0/Name", + "path": "$/properties/serviceLoadMetrics/0/Name", "position": Object { "column": 37, "line": 1605, @@ -112145,7 +112737,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes how the service is partitioned.", "directives": Object {}, - "jsonPath": "$.properties.partitionDescription.partitionScheme", + "jsonPath": "$['properties']['partitionDescription']['partitionScheme']", "jsonPosition": Object { "column": 35, "line": 25, @@ -112155,7 +112747,7 @@ Array [ "params": Array [ "partitionScheme", ], - "path": "properties/partitionDescription/partitionScheme", + "path": "$/properties/partitionDescription/partitionScheme", "position": Object { "column": 35, "line": 1685, @@ -112175,12 +112767,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The service resource.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "message": "Additional properties not allowed: tags", "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 24, "line": 1981, @@ -112200,12 +112792,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes how the service is partitioned.", "directives": Object {}, - "jsonPath": "$.properties.partitionDescription.partitionScheme", + "jsonPath": "$['properties']['partitionDescription']['partitionScheme']", "message": "Additional properties not allowed: partitionScheme", "params": Array [ "partitionScheme", ], - "path": "properties/partitionDescription/partitionScheme", + "path": "$/properties/partitionDescription/partitionScheme", "position": Object { "column": 35, "line": 1685, @@ -112225,13 +112817,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myCluster\\"\`, cannot be sent in the request.", "params": Array [ "name", "myCluster", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 2859, @@ -112251,13 +112843,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource ID.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp/services/myService\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp/services/myService", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 2854, @@ -112277,13 +112869,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"services\\"\`, cannot be sent in the request.", "params": Array [ "type", "services", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 2864, @@ -112303,7 +112895,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The service resource.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "jsonPosition": Object { "column": 15, "line": 31, @@ -112313,7 +112905,7 @@ Array [ "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 24, "line": 1981, @@ -112333,7 +112925,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The service resource.", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 15, "line": 31, @@ -112343,7 +112935,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 24, "line": 1981, @@ -112363,7 +112955,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes how the service is partitioned.", "directives": Object {}, - "jsonPath": "$.properties.partitionDescription.partitionScheme", + "jsonPath": "$['properties']['partitionDescription']['partitionScheme']", "jsonPosition": Object { "column": 35, "line": 42, @@ -112373,7 +112965,7 @@ Array [ "params": Array [ "partitionScheme", ], - "path": "properties/partitionDescription/partitionScheme", + "path": "$/properties/partitionDescription/partitionScheme", "position": Object { "column": 35, "line": 1685, @@ -112393,12 +112985,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The service resource.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "message": "Additional properties not allowed: tags", "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 24, "line": 1981, @@ -112418,12 +113010,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Creates a particular correlation between services.", "directives": Object {}, - "jsonPath": "$.properties.correlationScheme[0].scheme", + "jsonPath": "$['properties']['correlationScheme'][0]['scheme']", "message": "Additional properties not allowed: scheme", "params": Array [ "scheme", ], - "path": "properties/correlationScheme/0/scheme", + "path": "$/properties/correlationScheme/0/scheme", "position": Object { "column": 38, "line": 1572, @@ -112443,12 +113035,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Creates a particular correlation between services.", "directives": Object {}, - "jsonPath": "$.properties.correlationScheme[0].serviceName", + "jsonPath": "$['properties']['correlationScheme'][0]['serviceName']", "message": "Additional properties not allowed: serviceName", "params": Array [ "serviceName", ], - "path": "properties/correlationScheme/0/serviceName", + "path": "$/properties/correlationScheme/0/serviceName", "position": Object { "column": 38, "line": 1572, @@ -112468,12 +113060,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Creates a particular correlation between services.", "directives": Object {}, - "jsonPath": "$.properties.correlationScheme[0].Scheme", + "jsonPath": "$['properties']['correlationScheme'][0]['Scheme']", "message": "Missing required property: Scheme", "params": Array [ "Scheme", ], - "path": "properties/correlationScheme/0/Scheme", + "path": "$/properties/correlationScheme/0/Scheme", "position": Object { "column": 38, "line": 1572, @@ -112493,12 +113085,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Creates a particular correlation between services.", "directives": Object {}, - "jsonPath": "$.properties.correlationScheme[0].ServiceName", + "jsonPath": "$['properties']['correlationScheme'][0]['ServiceName']", "message": "Missing required property: ServiceName", "params": Array [ "ServiceName", ], - "path": "properties/correlationScheme/0/ServiceName", + "path": "$/properties/correlationScheme/0/ServiceName", "position": Object { "column": 38, "line": 1572, @@ -112518,12 +113110,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.properties.serviceLoadMetrics[0].weight", + "jsonPath": "$['properties']['serviceLoadMetrics'][0]['weight']", "message": "Additional properties not allowed: weight", "params": Array [ "weight", ], - "path": "properties/serviceLoadMetrics/0/weight", + "path": "$/properties/serviceLoadMetrics/0/weight", "position": Object { "column": 37, "line": 1605, @@ -112543,12 +113135,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.properties.serviceLoadMetrics[0].name", + "jsonPath": "$['properties']['serviceLoadMetrics'][0]['name']", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "properties/serviceLoadMetrics/0/name", + "path": "$/properties/serviceLoadMetrics/0/name", "position": Object { "column": 37, "line": 1605, @@ -112568,12 +113160,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.properties.serviceLoadMetrics[0].Name", + "jsonPath": "$['properties']['serviceLoadMetrics'][0]['Name']", "message": "Missing required property: Name", "params": Array [ "Name", ], - "path": "properties/serviceLoadMetrics/0/Name", + "path": "$/properties/serviceLoadMetrics/0/Name", "position": Object { "column": 37, "line": 1605, @@ -112593,12 +113185,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes how the service is partitioned.", "directives": Object {}, - "jsonPath": "$.properties.partitionDescription.partitionScheme", + "jsonPath": "$['properties']['partitionDescription']['partitionScheme']", "message": "Additional properties not allowed: partitionScheme", "params": Array [ "partitionScheme", ], - "path": "properties/partitionDescription/partitionScheme", + "path": "$/properties/partitionDescription/partitionScheme", "position": Object { "column": 35, "line": 1685, @@ -112618,13 +113210,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myCluster\\"\`, cannot be sent in the request.", "params": Array [ "name", "myCluster", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 2859, @@ -112644,13 +113236,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource ID.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp/services/myService\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp/services/myService", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 2854, @@ -112670,13 +113262,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"services\\"\`, cannot be sent in the request.", "params": Array [ "type", "services", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 2864, @@ -112696,7 +113288,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The service resource.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "jsonPosition": Object { "column": 15, "line": 46, @@ -112706,7 +113298,7 @@ Array [ "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 24, "line": 1981, @@ -112726,7 +113318,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The service resource.", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 15, "line": 46, @@ -112736,7 +113328,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 24, "line": 1981, @@ -112756,13 +113348,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.properties.serviceLoadMetrics[0].weight", + "jsonPath": "$['properties']['serviceLoadMetrics'][0]['weight']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ServicePutOperation_example_max.json", "message": "Additional properties not allowed: weight", "params": Array [ "weight", ], - "path": "properties/serviceLoadMetrics/0/weight", + "path": "$/properties/serviceLoadMetrics/0/weight", "position": Object { "column": 37, "line": 1605, @@ -112782,13 +113374,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.properties.serviceLoadMetrics[0].name", + "jsonPath": "$['properties']['serviceLoadMetrics'][0]['name']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ServicePutOperation_example_max.json", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "properties/serviceLoadMetrics/0/name", + "path": "$/properties/serviceLoadMetrics/0/name", "position": Object { "column": 37, "line": 1605, @@ -112808,13 +113400,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.properties.serviceLoadMetrics[0].Name", + "jsonPath": "$['properties']['serviceLoadMetrics'][0]['Name']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ServicePutOperation_example_max.json", "message": "Missing required property: Name", "params": Array [ "Name", ], - "path": "properties/serviceLoadMetrics/0/Name", + "path": "$/properties/serviceLoadMetrics/0/Name", "position": Object { "column": 37, "line": 1605, @@ -112834,7 +113426,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes how the service is partitioned.", "directives": Object {}, - "jsonPath": "$.properties.partitionDescription.partitionScheme", + "jsonPath": "$['properties']['partitionDescription']['partitionScheme']", "jsonPosition": Object { "column": 35, "line": 58, @@ -112844,7 +113436,7 @@ Array [ "params": Array [ "partitionScheme", ], - "path": "properties/partitionDescription/partitionScheme", + "path": "$/properties/partitionDescription/partitionScheme", "position": Object { "column": 35, "line": 1685, @@ -112864,12 +113456,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The service resource for patch operations.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "message": "Additional properties not allowed: tags", "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 30, "line": 2056, @@ -112889,12 +113481,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of a stateless service resource for patch operations.", "directives": Object {}, - "jsonPath": "$.properties.serviceTypeName", + "jsonPath": "$['properties']['serviceTypeName']", "message": "Additional properties not allowed: serviceTypeName", "params": Array [ "serviceTypeName", ], - "path": "properties/serviceTypeName", + "path": "$/properties/serviceTypeName", "position": Object { "column": 41, "line": 2103, @@ -112914,12 +113506,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.properties.serviceLoadMetrics[0].weight", + "jsonPath": "$['properties']['serviceLoadMetrics'][0]['weight']", "message": "Additional properties not allowed: weight", "params": Array [ "weight", ], - "path": "properties/serviceLoadMetrics/0/weight", + "path": "$/properties/serviceLoadMetrics/0/weight", "position": Object { "column": 37, "line": 1605, @@ -112939,12 +113531,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.properties.serviceLoadMetrics[0].name", + "jsonPath": "$['properties']['serviceLoadMetrics'][0]['name']", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "properties/serviceLoadMetrics/0/name", + "path": "$/properties/serviceLoadMetrics/0/name", "position": Object { "column": 37, "line": 1605, @@ -112964,12 +113556,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.properties.serviceLoadMetrics[0].Name", + "jsonPath": "$['properties']['serviceLoadMetrics'][0]['Name']", "message": "Missing required property: Name", "params": Array [ "Name", ], - "path": "properties/serviceLoadMetrics/0/Name", + "path": "$/properties/serviceLoadMetrics/0/Name", "position": Object { "column": 37, "line": 1605, @@ -112989,13 +113581,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"myCluster\\"\`, cannot be sent in the request.", "params": Array [ "name", "myCluster", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 2859, @@ -113015,13 +113607,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource ID.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp/services/myService\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp/services/myService", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 2854, @@ -113041,13 +113633,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Azure resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"services\\"\`, cannot be sent in the request.", "params": Array [ "type", "services", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 2864, @@ -113067,7 +113659,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The service resource for patch operations.", "directives": Object {}, - "jsonPath": "$.tags", + "jsonPath": "$['tags']", "jsonPosition": Object { "column": 15, "line": 33, @@ -113077,7 +113669,7 @@ Array [ "params": Array [ "tags", ], - "path": "tags", + "path": "$/tags", "position": Object { "column": 30, "line": 2056, @@ -113097,7 +113689,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The service resource for patch operations.", "directives": Object {}, - "jsonPath": "$.etag", + "jsonPath": "$['etag']", "jsonPosition": Object { "column": 15, "line": 33, @@ -113107,7 +113699,7 @@ Array [ "params": Array [ "etag", ], - "path": "etag", + "path": "$/etag", "position": Object { "column": 30, "line": 2056, @@ -113127,7 +113719,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of a stateless service resource for patch operations.", "directives": Object {}, - "jsonPath": "$.properties.provisioningState", + "jsonPath": "$['properties']['provisioningState']", "jsonPosition": Object { "column": 23, "line": 40, @@ -113137,7 +113729,7 @@ Array [ "params": Array [ "provisioningState", ], - "path": "properties/provisioningState", + "path": "$/properties/provisioningState", "position": Object { "column": 41, "line": 2103, @@ -113157,7 +113749,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of a stateless service resource for patch operations.", "directives": Object {}, - "jsonPath": "$.properties.serviceTypeName", + "jsonPath": "$['properties']['serviceTypeName']", "jsonPosition": Object { "column": 23, "line": 40, @@ -113167,7 +113759,7 @@ Array [ "params": Array [ "serviceTypeName", ], - "path": "properties/serviceTypeName", + "path": "$/properties/serviceTypeName", "position": Object { "column": 41, "line": 2103, @@ -113187,7 +113779,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of a stateless service resource for patch operations.", "directives": Object {}, - "jsonPath": "$.properties.partitionDescription", + "jsonPath": "$['properties']['partitionDescription']", "jsonPosition": Object { "column": 23, "line": 40, @@ -113197,7 +113789,7 @@ Array [ "params": Array [ "partitionDescription", ], - "path": "properties/partitionDescription", + "path": "$/properties/partitionDescription", "position": Object { "column": 41, "line": 2103, @@ -113217,13 +113809,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.properties.serviceLoadMetrics[0].weight", + "jsonPath": "$['properties']['serviceLoadMetrics'][0]['weight']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ServicePatchOperation_example.json", "message": "Additional properties not allowed: weight", "params": Array [ "weight", ], - "path": "properties/serviceLoadMetrics/0/weight", + "path": "$/properties/serviceLoadMetrics/0/weight", "position": Object { "column": 37, "line": 1605, @@ -113243,13 +113835,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.properties.serviceLoadMetrics[0].name", + "jsonPath": "$['properties']['serviceLoadMetrics'][0]['name']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ServicePatchOperation_example.json", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "properties/serviceLoadMetrics/0/name", + "path": "$/properties/serviceLoadMetrics/0/name", "position": Object { "column": 37, "line": 1605, @@ -113269,13 +113861,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.properties.serviceLoadMetrics[0].Name", + "jsonPath": "$['properties']['serviceLoadMetrics'][0]['Name']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ServicePatchOperation_example.json", "message": "Missing required property: Name", "params": Array [ "Name", ], - "path": "properties/serviceLoadMetrics/0/Name", + "path": "$/properties/serviceLoadMetrics/0/Name", "position": Object { "column": 37, "line": 1605, @@ -113311,7 +113903,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The list of service resources.", "directives": Object {}, - "jsonPath": "$.nextLink", + "jsonPath": "$['nextLink']", "jsonPosition": Object { "column": 15, "line": 12, @@ -113321,7 +113913,7 @@ Array [ "params": Array [ "nextLink", ], - "path": "nextLink", + "path": "$/nextLink", "position": Object { "column": 28, "line": 1995, @@ -113341,13 +113933,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Describes how the service is partitioned.", "directives": Object {}, - "jsonPath": "$.value[0].properties.partitionDescription.partitionScheme", + "jsonPath": "$['value'][0]['properties']['partitionDescription']['partitionScheme']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ServiceListOperation_example.json", "message": "Additional properties not allowed: partitionScheme", "params": Array [ "partitionScheme", ], - "path": "value/0/properties/partitionDescription/partitionScheme", + "path": "$/value/0/properties/partitionDescription/partitionScheme", "position": Object { "column": 35, "line": 1685, @@ -113367,13 +113959,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.value[0].properties.serviceLoadMetrics.properties.serviceLoadMetrics[0].weight", + "jsonPath": "$['value'][0]['properties']['serviceLoadMetrics']['properties']['serviceLoadMetrics'][0]['weight']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ServiceListOperation_example.json", "message": "Additional properties not allowed: weight", "params": Array [ "weight", ], - "path": "value/0/properties/serviceLoadMetrics/properties/serviceLoadMetrics/0/weight", + "path": "$/value/0/properties/serviceLoadMetrics/properties/serviceLoadMetrics/0/weight", "position": Object { "column": 37, "line": 1605, @@ -113393,13 +113985,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.value[0].properties.serviceLoadMetrics.properties.serviceLoadMetrics[0].name", + "jsonPath": "$['value'][0]['properties']['serviceLoadMetrics']['properties']['serviceLoadMetrics'][0]['name']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ServiceListOperation_example.json", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "value/0/properties/serviceLoadMetrics/properties/serviceLoadMetrics/0/name", + "path": "$/value/0/properties/serviceLoadMetrics/properties/serviceLoadMetrics/0/name", "position": Object { "column": 37, "line": 1605, @@ -113419,13 +114011,13 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Specifies a metric to load balance a service during runtime.", "directives": Object {}, - "jsonPath": "$.value[0].properties.serviceLoadMetrics.properties.serviceLoadMetrics[0].Name", + "jsonPath": "$['value'][0]['properties']['serviceLoadMetrics']['properties']['serviceLoadMetrics'][0]['Name']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ServiceListOperation_example.json", "message": "Missing required property: Name", "params": Array [ "Name", ], - "path": "value/0/properties/serviceLoadMetrics/properties/serviceLoadMetrics/0/Name", + "path": "$/value/0/properties/serviceLoadMetrics/properties/serviceLoadMetrics/0/Name", "position": Object { "column": 37, "line": 1605, @@ -113445,13 +114037,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The service resource.", "directives": Object {}, - "jsonPath": "$.value[0].etag", + "jsonPath": "$['value'][0]['etag']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ServiceListOperation_example.json", "message": "Additional properties not allowed: etag", "params": Array [ "etag", ], - "path": "value/0/etag", + "path": "$/value/0/etag", "position": Object { "column": 24, "line": 1981, @@ -113471,13 +114063,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The service resource.", "directives": Object {}, - "jsonPath": "$.value[0].tags", + "jsonPath": "$['value'][0]['tags']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/servicefabric/resource-manager/Microsoft.ServiceFabric/preview/2017-07-01-preview/examples/ServiceListOperation_example.json", "message": "Additional properties not allowed: tags", "params": Array [ "tags", ], - "path": "value/0/tags", + "path": "$/value/0/tags", "position": Object { "column": 24, "line": 1981, @@ -113504,13 +114096,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The provisioning state of the cluster resource", "directives": Object {}, - "jsonPath": "$.properties.provisioningState", + "jsonPath": "$['properties']['provisioningState']", "message": "ReadOnly property \`\\"provisioningState\\": \\"Succeeded\\"\`, cannot be sent in the request.", "params": Array [ "provisioningState", "Succeeded", ], - "path": "properties/provisioningState", + "path": "$/properties/provisioningState", "position": Object { "column": 30, "line": 1088, @@ -113530,13 +114122,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The provisioning state of the cluster resource", "directives": Object {}, - "jsonPath": "$.properties.provisioningState", + "jsonPath": "$['properties']['provisioningState']", "message": "ReadOnly property \`\\"provisioningState\\": \\"Succeeded\\"\`, cannot be sent in the request.", "params": Array [ "provisioningState", "Succeeded", ], - "path": "properties/provisioningState", + "path": "$/properties/provisioningState", "position": Object { "column": 30, "line": 1088, @@ -113564,12 +114156,12 @@ Array [ "description": "The Operating system type required by the code in service. ", "directives": Object {}, - "jsonPath": "$.properties.services[0][0].properties.osType", + "jsonPath": "$['properties']['services'][0][0]['properties']['osType']", "message": "Enum does not match case for: linux", "params": Array [ "linux", ], - "path": "properties/services/0/0/properties/osType", + "path": "$/properties/services/0/0/properties/osType", "position": Object { "column": 19, "line": 1832, @@ -113589,13 +114181,13 @@ Array [ "code": "INVALID_TYPE", "description": "Specifies the public port at which the service endpoint below needs to be exposed.", "directives": Object {}, - "jsonPath": "$.properties.ingressConfig.layer4[0].publicPort", + "jsonPath": "$['properties']['ingressConfig']['layer4'][0]['publicPort']", "message": "Expected type integer but found type string", "params": Array [ "integer", "string", ], - "path": "properties/ingressConfig/layer4/0/publicPort", + "path": "$/properties/ingressConfig/layer4/0/publicPort", "position": Object { "column": 23, "line": 1905, @@ -113622,12 +114214,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "This type describes a value of a secret resource. The name of this resource is the version identifier corresponding to this secret value.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "message": "Missing required property: location", "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 39, "line": 2144, @@ -113647,13 +114239,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the resource", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"v1\\"\`, cannot be sent in the request.", "params": Array [ "name", "v1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1953, @@ -113688,14 +114280,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Specifies the identifier key of the auditing storage account. If state is Enabled and storageEndpoint is specified, storageAccountAccessKey is required.", "directives": Object {}, - "jsonPath": "$.properties.storageAccountAccessKey", + "jsonPath": "$['properties']['storageAccountAccessKey']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseBlobAuditingCreateMin.json", - "message": "Write-only property \`\\"storageAccountAccessKey\\": \\"\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageAccountAccessKey\\"\`, is not allowed in the response.", "params": Array [ "storageAccountAccessKey", "", ], - "path": "properties/storageAccountAccessKey", + "path": "$/properties/storageAccountAccessKey", "position": Object { "column": 36, "line": 153, @@ -113715,14 +114307,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Specifies the identifier key of the auditing storage account. If state is Enabled and storageEndpoint is specified, storageAccountAccessKey is required.", "directives": Object {}, - "jsonPath": "$.properties.storageAccountAccessKey", + "jsonPath": "$['properties']['storageAccountAccessKey']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseBlobAuditingCreateMin.json", - "message": "Write-only property \`\\"storageAccountAccessKey\\": \\"\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageAccountAccessKey\\"\`, is not allowed in the response.", "params": Array [ "storageAccountAccessKey", "", ], - "path": "properties/storageAccountAccessKey", + "path": "$/properties/storageAccountAccessKey", "position": Object { "column": 36, "line": 153, @@ -113742,14 +114334,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Specifies the identifier key of the auditing storage account. If state is Enabled and storageEndpoint is specified, storageAccountAccessKey is required.", "directives": Object {}, - "jsonPath": "$.properties.storageAccountAccessKey", + "jsonPath": "$['properties']['storageAccountAccessKey']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseBlobAuditingCreateMax.json", - "message": "Write-only property \`\\"storageAccountAccessKey\\": \\"\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageAccountAccessKey\\"\`, is not allowed in the response.", "params": Array [ "storageAccountAccessKey", "", ], - "path": "properties/storageAccountAccessKey", + "path": "$/properties/storageAccountAccessKey", "position": Object { "column": 36, "line": 153, @@ -113769,14 +114361,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Specifies the identifier key of the auditing storage account. If state is Enabled and storageEndpoint is specified, storageAccountAccessKey is required.", "directives": Object {}, - "jsonPath": "$.properties.storageAccountAccessKey", + "jsonPath": "$['properties']['storageAccountAccessKey']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseBlobAuditingCreateMax.json", - "message": "Write-only property \`\\"storageAccountAccessKey\\": \\"\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageAccountAccessKey\\"\`, is not allowed in the response.", "params": Array [ "storageAccountAccessKey", "", ], - "path": "properties/storageAccountAccessKey", + "path": "$/properties/storageAccountAccessKey", "position": Object { "column": 36, "line": 153, @@ -113796,12 +114388,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of a database blob auditing policy.", "directives": Object {}, - "jsonPath": "$.properties.IsAzureMonitorTargetEnabled", + "jsonPath": "$['properties']['IsAzureMonitorTargetEnabled']", "message": "Additional properties not allowed: IsAzureMonitorTargetEnabled", "params": Array [ "IsAzureMonitorTargetEnabled", ], - "path": "properties/IsAzureMonitorTargetEnabled", + "path": "$/properties/IsAzureMonitorTargetEnabled", "position": Object { "column": 45, "line": 130, @@ -113821,14 +114413,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Specifies the identifier key of the auditing storage account. If state is Enabled and storageEndpoint is specified, storageAccountAccessKey is required.", "directives": Object {}, - "jsonPath": "$.properties.storageAccountAccessKey", + "jsonPath": "$['properties']['storageAccountAccessKey']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseAzureMonitorAuditingCreateMin.json", - "message": "Write-only property \`\\"storageAccountAccessKey\\": \\"\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageAccountAccessKey\\"\`, is not allowed in the response.", "params": Array [ "storageAccountAccessKey", "", ], - "path": "properties/storageAccountAccessKey", + "path": "$/properties/storageAccountAccessKey", "position": Object { "column": 36, "line": 153, @@ -113848,14 +114440,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Specifies the identifier key of the auditing storage account. If state is Enabled and storageEndpoint is specified, storageAccountAccessKey is required.", "directives": Object {}, - "jsonPath": "$.properties.storageAccountAccessKey", + "jsonPath": "$['properties']['storageAccountAccessKey']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseAzureMonitorAuditingCreateMin.json", - "message": "Write-only property \`\\"storageAccountAccessKey\\": \\"\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageAccountAccessKey\\"\`, is not allowed in the response.", "params": Array [ "storageAccountAccessKey", "", ], - "path": "properties/storageAccountAccessKey", + "path": "$/properties/storageAccountAccessKey", "position": Object { "column": 36, "line": 153, @@ -113882,12 +114474,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of a database blob auditing policy.", "directives": Object {}, - "jsonPath": "$.properties.isAzureMonitorTargetEnabled", + "jsonPath": "$['properties']['isAzureMonitorTargetEnabled']", "message": "Additional properties not allowed: isAzureMonitorTargetEnabled", "params": Array [ "isAzureMonitorTargetEnabled", ], - "path": "properties/isAzureMonitorTargetEnabled", + "path": "$/properties/isAzureMonitorTargetEnabled", "position": Object { "column": 45, "line": 157, @@ -113907,14 +114499,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Specifies the identifier key of the auditing storage account. If state is Enabled, storageAccountAccessKey is required.", "directives": Object {}, - "jsonPath": "$.properties.storageAccountAccessKey", + "jsonPath": "$['properties']['storageAccountAccessKey']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseBlobAuditingCreateMax.json", - "message": "Write-only property \`\\"storageAccountAccessKey\\": \\"\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageAccountAccessKey\\"\`, is not allowed in the response.", "params": Array [ "storageAccountAccessKey", "", ], - "path": "properties/storageAccountAccessKey", + "path": "$/properties/storageAccountAccessKey", "position": Object { "column": 36, "line": 180, @@ -113934,7 +114526,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of a database blob auditing policy.", "directives": Object {}, - "jsonPath": "$.properties.isAzureMonitorTargetEnabled", + "jsonPath": "$['properties']['isAzureMonitorTargetEnabled']", "jsonPosition": Object { "column": 25, "line": 29, @@ -113944,7 +114536,7 @@ Array [ "params": Array [ "isAzureMonitorTargetEnabled", ], - "path": "properties/isAzureMonitorTargetEnabled", + "path": "$/properties/isAzureMonitorTargetEnabled", "position": Object { "column": 45, "line": 157, @@ -113964,14 +114556,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Specifies the identifier key of the auditing storage account. If state is Enabled, storageAccountAccessKey is required.", "directives": Object {}, - "jsonPath": "$.properties.storageAccountAccessKey", + "jsonPath": "$['properties']['storageAccountAccessKey']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseBlobAuditingCreateMax.json", - "message": "Write-only property \`\\"storageAccountAccessKey\\": \\"\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageAccountAccessKey\\"\`, is not allowed in the response.", "params": Array [ "storageAccountAccessKey", "", ], - "path": "properties/storageAccountAccessKey", + "path": "$/properties/storageAccountAccessKey", "position": Object { "column": 36, "line": 180, @@ -113991,7 +114583,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of a database blob auditing policy.", "directives": Object {}, - "jsonPath": "$.properties.isAzureMonitorTargetEnabled", + "jsonPath": "$['properties']['isAzureMonitorTargetEnabled']", "jsonPosition": Object { "column": 25, "line": 47, @@ -114001,7 +114593,7 @@ Array [ "params": Array [ "isAzureMonitorTargetEnabled", ], - "path": "properties/isAzureMonitorTargetEnabled", + "path": "$/properties/isAzureMonitorTargetEnabled", "position": Object { "column": 45, "line": 157, @@ -114021,14 +114613,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Specifies the identifier key of the auditing storage account. If state is Enabled, storageAccountAccessKey is required.", "directives": Object {}, - "jsonPath": "$.properties.storageAccountAccessKey", + "jsonPath": "$['properties']['storageAccountAccessKey']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseBlobAuditingCreateMin.json", - "message": "Write-only property \`\\"storageAccountAccessKey\\": \\"\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageAccountAccessKey\\"\`, is not allowed in the response.", "params": Array [ "storageAccountAccessKey", "", ], - "path": "properties/storageAccountAccessKey", + "path": "$/properties/storageAccountAccessKey", "position": Object { "column": 36, "line": 180, @@ -114048,14 +114640,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Specifies the identifier key of the auditing storage account. If state is Enabled, storageAccountAccessKey is required.", "directives": Object {}, - "jsonPath": "$.properties.storageAccountAccessKey", + "jsonPath": "$['properties']['storageAccountAccessKey']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2015-05-01-preview/examples/DatabaseBlobAuditingCreateMin.json", - "message": "Write-only property \`\\"storageAccountAccessKey\\": \\"\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageAccountAccessKey\\"\`, is not allowed in the response.", "params": Array [ "storageAccountAccessKey", "", ], - "path": "properties/storageAccountAccessKey", + "path": "$/properties/storageAccountAccessKey", "position": Object { "column": 36, "line": 180, @@ -114266,13 +114858,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The fully qualified domain name of the server.", "directives": Object {}, - "jsonPath": "$.properties.fullyQualifiedDomainName", + "jsonPath": "$['properties']['fullyQualifiedDomainName']", "message": "ReadOnly property \`\\"fullyQualifiedDomainName\\": \\"sqlcrudtest-4645.database.windows.net\\"\`, cannot be sent in the request.", "params": Array [ "fullyQualifiedDomainName", "sqlcrudtest-4645.database.windows.net", ], - "path": "properties/fullyQualifiedDomainName", + "path": "$/properties/fullyQualifiedDomainName", "position": Object { "column": 37, "line": 336, @@ -114292,13 +114884,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The state of the server.", "directives": Object {}, - "jsonPath": "$.properties.state", + "jsonPath": "$['properties']['state']", "message": "ReadOnly property \`\\"state\\": \\"Ready\\"\`, cannot be sent in the request.", "params": Array [ "state", "Ready", ], - "path": "properties/state", + "path": "$/properties/state", "position": Object { "column": 18, "line": 331, @@ -114350,12 +114942,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "An update request for an Azure SQL Database server.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "message": "Additional properties not allowed: location", "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 21, "line": 375, @@ -114375,13 +114967,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The fully qualified domain name of the server.", "directives": Object {}, - "jsonPath": "$.properties.fullyQualifiedDomainName", + "jsonPath": "$['properties']['fullyQualifiedDomainName']", "message": "ReadOnly property \`\\"fullyQualifiedDomainName\\": \\"sqlcrudtest-4645.database.windows.net\\"\`, cannot be sent in the request.", "params": Array [ "fullyQualifiedDomainName", "sqlcrudtest-4645.database.windows.net", ], - "path": "properties/fullyQualifiedDomainName", + "path": "$/properties/fullyQualifiedDomainName", "position": Object { "column": 37, "line": 336, @@ -114401,13 +114993,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The state of the server.", "directives": Object {}, - "jsonPath": "$.properties.state", + "jsonPath": "$['properties']['state']", "message": "ReadOnly property \`\\"state\\": \\"Ready\\"\`, cannot be sent in the request.", "params": Array [ "state", "Ready", ], - "path": "properties/state", + "path": "$/properties/state", "position": Object { "column": 18, "line": 331, @@ -114427,12 +115019,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "An update request for an Azure SQL Database server.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "message": "Additional properties not allowed: location", "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 21, "line": 375, @@ -114546,13 +115138,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Last sync time of the sync group.", "directives": Object {}, - "jsonPath": "$.properties.lastSyncTime", + "jsonPath": "$['properties']['lastSyncTime']", "message": "ReadOnly property \`\\"lastSyncTime\\": \\"0001-01-01T08:00:00Z\\"\`, cannot be sent in the request.", "params": Array [ "lastSyncTime", "0001-01-01T08:00:00Z", ], - "path": "properties/lastSyncTime", + "path": "$/properties/lastSyncTime", "position": Object { "column": 25, "line": 878, @@ -114588,13 +115180,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Last sync time of the sync group.", "directives": Object {}, - "jsonPath": "$.properties.lastSyncTime", + "jsonPath": "$['properties']['lastSyncTime']", "message": "ReadOnly property \`\\"lastSyncTime\\": \\"0001-01-01T08:00:00Z\\"\`, cannot be sent in the request.", "params": Array [ "lastSyncTime", "0001-01-01T08:00:00Z", ], - "path": "properties/lastSyncTime", + "path": "$/properties/lastSyncTime", "position": Object { "column": 25, "line": 878, @@ -114678,13 +115270,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Last sync time of the sync group.", "directives": Object {}, - "jsonPath": "$.properties.lastSyncTime", + "jsonPath": "$['properties']['lastSyncTime']", "message": "ReadOnly property \`\\"lastSyncTime\\": \\"0001-01-01T08:00:00Z\\"\`, cannot be sent in the request.", "params": Array [ "lastSyncTime", "0001-01-01T08:00:00Z", ], - "path": "properties/lastSyncTime", + "path": "$/properties/lastSyncTime", "position": Object { "column": 25, "line": 878, @@ -114727,13 +115319,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Sync state of the sync member.", "directives": Object {}, - "jsonPath": "$.properties.syncState", + "jsonPath": "$['properties']['syncState']", "message": "ReadOnly property \`\\"syncState\\": \\"UnProvisioned\\"\`, cannot be sent in the request.", "params": Array [ "syncState", "UnProvisioned", ], - "path": "properties/syncState", + "path": "$/properties/syncState", "position": Object { "column": 22, "line": 532, @@ -114753,13 +115345,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Sync state of the sync member.", "directives": Object {}, - "jsonPath": "$.properties.syncState", + "jsonPath": "$['properties']['syncState']", "message": "ReadOnly property \`\\"syncState\\": \\"UnProvisioned\\"\`, cannot be sent in the request.", "params": Array [ "syncState", "UnProvisioned", ], - "path": "properties/syncState", + "path": "$/properties/syncState", "position": Object { "column": 22, "line": 532, @@ -114827,13 +115419,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Sync state of the sync member.", "directives": Object {}, - "jsonPath": "$.properties.syncState", + "jsonPath": "$['properties']['syncState']", "message": "ReadOnly property \`\\"syncState\\": \\"UnProvisioned\\"\`, cannot be sent in the request.", "params": Array [ "syncState", "UnProvisioned", ], - "path": "properties/syncState", + "path": "$/properties/syncState", "position": Object { "column": 22, "line": 532, @@ -114958,12 +115550,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A short term retention policy.", "directives": Object {}, - "jsonPath": "$.retentionDays", + "jsonPath": "$['retentionDays']", "message": "Additional properties not allowed: retentionDays", "params": Array [ "retentionDays", ], - "path": "retentionDays", + "path": "$/retentionDays", "position": Object { "column": 46, "line": 299, @@ -114983,12 +115575,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A short term retention policy.", "directives": Object {}, - "jsonPath": "$.retentionDays", + "jsonPath": "$['retentionDays']", "message": "Additional properties not allowed: retentionDays", "params": Array [ "retentionDays", ], - "path": "retentionDays", + "path": "$/retentionDays", "position": Object { "column": 46, "line": 299, @@ -115036,7 +115628,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A managed database security alert policy.", "directives": Object {}, - "jsonPath": "$.kind", + "jsonPath": "$['kind']", "jsonPosition": Object { "column": 15, "line": 18, @@ -115046,7 +115638,7 @@ Array [ "params": Array [ "kind", ], - "path": "kind", + "path": "$/kind", "position": Object { "column": 43, "line": 277, @@ -115066,14 +115658,14 @@ Array [ "code": "INVALID_TYPE", "description": "Specifies that the alert is sent to the account administrators.", "directives": Object {}, - "jsonPath": "$.properties.emailAccountAdmins", + "jsonPath": "$['properties']['emailAccountAdmins']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseSecurityAlertCreateMin.json", "message": "Expected type boolean but found type string", "params": Array [ "boolean", "string", ], - "path": "properties/emailAccountAdmins", + "path": "$/properties/emailAccountAdmins", "position": Object { "column": 31, "line": 252, @@ -115093,7 +115685,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A managed database security alert policy.", "directives": Object {}, - "jsonPath": "$.kind", + "jsonPath": "$['kind']", "jsonPosition": Object { "column": 15, "line": 36, @@ -115103,7 +115695,7 @@ Array [ "params": Array [ "kind", ], - "path": "kind", + "path": "$/kind", "position": Object { "column": 43, "line": 277, @@ -115123,14 +115715,14 @@ Array [ "code": "INVALID_TYPE", "description": "Specifies that the alert is sent to the account administrators.", "directives": Object {}, - "jsonPath": "$.properties.emailAccountAdmins", + "jsonPath": "$['properties']['emailAccountAdmins']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseSecurityAlertCreateMin.json", "message": "Expected type boolean but found type string", "params": Array [ "boolean", "string", ], - "path": "properties/emailAccountAdmins", + "path": "$/properties/emailAccountAdmins", "position": Object { "column": 31, "line": 252, @@ -115171,7 +115763,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A managed database security alert policy.", "directives": Object {}, - "jsonPath": "$.kind", + "jsonPath": "$['kind']", "jsonPosition": Object { "column": 15, "line": 24, @@ -115181,7 +115773,7 @@ Array [ "params": Array [ "kind", ], - "path": "kind", + "path": "$/kind", "position": Object { "column": 43, "line": 277, @@ -115201,14 +115793,14 @@ Array [ "code": "INVALID_TYPE", "description": "Specifies that the alert is sent to the account administrators.", "directives": Object {}, - "jsonPath": "$.properties.emailAccountAdmins", + "jsonPath": "$['properties']['emailAccountAdmins']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseSecurityAlertCreateMax.json", "message": "Expected type boolean but found type string", "params": Array [ "boolean", "string", ], - "path": "properties/emailAccountAdmins", + "path": "$/properties/emailAccountAdmins", "position": Object { "column": 31, "line": 252, @@ -115228,7 +115820,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A managed database security alert policy.", "directives": Object {}, - "jsonPath": "$.kind", + "jsonPath": "$['kind']", "jsonPosition": Object { "column": 15, "line": 42, @@ -115238,7 +115830,7 @@ Array [ "params": Array [ "kind", ], - "path": "kind", + "path": "$/kind", "position": Object { "column": 43, "line": 277, @@ -115258,14 +115850,14 @@ Array [ "code": "INVALID_TYPE", "description": "Specifies that the alert is sent to the account administrators.", "directives": Object {}, - "jsonPath": "$.properties.emailAccountAdmins", + "jsonPath": "$['properties']['emailAccountAdmins']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseSecurityAlertCreateMax.json", "message": "Expected type boolean but found type string", "params": Array [ "boolean", "string", ], - "path": "properties/emailAccountAdmins", + "path": "$/properties/emailAccountAdmins", "position": Object { "column": 31, "line": 252, @@ -115285,7 +115877,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of a security alert policy.", "directives": Object {}, - "jsonPath": "$.properties.useServerDefault", + "jsonPath": "$['properties']['useServerDefault']", "jsonPosition": Object { "column": 23, "line": 47, @@ -115295,7 +115887,7 @@ Array [ "params": Array [ "useServerDefault", ], - "path": "properties/useServerDefault", + "path": "$/properties/useServerDefault", "position": Object { "column": 38, "line": 218, @@ -115315,14 +115907,14 @@ Array [ "code": "INVALID_TYPE", "description": "Specifies that the alert is sent to the account administrators.", "directives": Object {}, - "jsonPath": "$.value[0].properties.emailAccountAdmins", + "jsonPath": "$['value'][0]['properties']['emailAccountAdmins']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseSecurityAlertListByDatabase.json", "message": "Expected type boolean but found type string", "params": Array [ "boolean", "string", ], - "path": "value/0/properties/emailAccountAdmins", + "path": "$/value/0/properties/emailAccountAdmins", "position": Object { "column": 31, "line": 252, @@ -115342,13 +115934,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A managed database security alert policy.", "directives": Object {}, - "jsonPath": "$.value[0].kind", + "jsonPath": "$['value'][0]['kind']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseSecurityAlertListByDatabase.json", "message": "Additional properties not allowed: kind", "params": Array [ "kind", ], - "path": "value/0/kind", + "path": "$/value/0/kind", "position": Object { "column": 43, "line": 277, @@ -115368,13 +115960,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A managed database security alert policy.", "directives": Object {}, - "jsonPath": "$.value[0].location", + "jsonPath": "$['value'][0]['location']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedDatabaseSecurityAlertListByDatabase.json", "message": "Additional properties not allowed: location", "params": Array [ "location", ], - "path": "value/0/location", + "path": "$/value/0/location", "position": Object { "column": 43, "line": 277, @@ -115401,12 +115993,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A short term retention policy.", "directives": Object {}, - "jsonPath": "$.retentionDays", + "jsonPath": "$['retentionDays']", "message": "Additional properties not allowed: retentionDays", "params": Array [ "retentionDays", ], - "path": "retentionDays", + "path": "$/retentionDays", "position": Object { "column": 46, "line": 311, @@ -115426,12 +116018,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A short term retention policy.", "directives": Object {}, - "jsonPath": "$.retentionDays", + "jsonPath": "$['retentionDays']", "message": "Additional properties not allowed: retentionDays", "params": Array [ "retentionDays", ], - "path": "retentionDays", + "path": "$/retentionDays", "position": Object { "column": 46, "line": 311, @@ -115466,14 +116058,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Specifies the identifier key of the auditing storage account. If state is Enabled and storageEndpoint is specified, storageAccountAccessKey is required.", "directives": Object {}, - "jsonPath": "$.properties.storageAccountAccessKey", + "jsonPath": "$['properties']['storageAccountAccessKey']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseBlobAuditingCreateMin.json", - "message": "Write-only property \`\\"storageAccountAccessKey\\": \\"\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageAccountAccessKey\\"\`, is not allowed in the response.", "params": Array [ "storageAccountAccessKey", "", ], - "path": "properties/storageAccountAccessKey", + "path": "$/properties/storageAccountAccessKey", "position": Object { "column": 36, "line": 688, @@ -115493,14 +116085,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Specifies the identifier key of the auditing storage account. If state is Enabled and storageEndpoint is specified, storageAccountAccessKey is required.", "directives": Object {}, - "jsonPath": "$.properties.storageAccountAccessKey", + "jsonPath": "$['properties']['storageAccountAccessKey']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseBlobAuditingCreateMin.json", - "message": "Write-only property \`\\"storageAccountAccessKey\\": \\"\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageAccountAccessKey\\"\`, is not allowed in the response.", "params": Array [ "storageAccountAccessKey", "", ], - "path": "properties/storageAccountAccessKey", + "path": "$/properties/storageAccountAccessKey", "position": Object { "column": 36, "line": 688, @@ -115520,14 +116112,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Specifies the identifier key of the auditing storage account. If state is Enabled and storageEndpoint is specified, storageAccountAccessKey is required.", "directives": Object {}, - "jsonPath": "$.properties.storageAccountAccessKey", + "jsonPath": "$['properties']['storageAccountAccessKey']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseBlobAuditingCreateMax.json", - "message": "Write-only property \`\\"storageAccountAccessKey\\": \\"\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageAccountAccessKey\\"\`, is not allowed in the response.", "params": Array [ "storageAccountAccessKey", "", ], - "path": "properties/storageAccountAccessKey", + "path": "$/properties/storageAccountAccessKey", "position": Object { "column": 36, "line": 688, @@ -115547,14 +116139,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Specifies the identifier key of the auditing storage account. If state is Enabled and storageEndpoint is specified, storageAccountAccessKey is required.", "directives": Object {}, - "jsonPath": "$.properties.storageAccountAccessKey", + "jsonPath": "$['properties']['storageAccountAccessKey']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseBlobAuditingCreateMax.json", - "message": "Write-only property \`\\"storageAccountAccessKey\\": \\"\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageAccountAccessKey\\"\`, is not allowed in the response.", "params": Array [ "storageAccountAccessKey", "", ], - "path": "properties/storageAccountAccessKey", + "path": "$/properties/storageAccountAccessKey", "position": Object { "column": 36, "line": 688, @@ -115574,12 +116166,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of a database blob auditing policy.", "directives": Object {}, - "jsonPath": "$.properties.IsAzureMonitorTargetEnabled", + "jsonPath": "$['properties']['IsAzureMonitorTargetEnabled']", "message": "Additional properties not allowed: IsAzureMonitorTargetEnabled", "params": Array [ "IsAzureMonitorTargetEnabled", ], - "path": "properties/IsAzureMonitorTargetEnabled", + "path": "$/properties/IsAzureMonitorTargetEnabled", "position": Object { "column": 45, "line": 665, @@ -115599,14 +116191,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Specifies the identifier key of the auditing storage account. If state is Enabled and storageEndpoint is specified, storageAccountAccessKey is required.", "directives": Object {}, - "jsonPath": "$.properties.storageAccountAccessKey", + "jsonPath": "$['properties']['storageAccountAccessKey']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseAzureMonitorAuditingCreateMin.json", - "message": "Write-only property \`\\"storageAccountAccessKey\\": \\"\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageAccountAccessKey\\"\`, is not allowed in the response.", "params": Array [ "storageAccountAccessKey", "", ], - "path": "properties/storageAccountAccessKey", + "path": "$/properties/storageAccountAccessKey", "position": Object { "column": 36, "line": 688, @@ -115626,14 +116218,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Specifies the identifier key of the auditing storage account. If state is Enabled and storageEndpoint is specified, storageAccountAccessKey is required.", "directives": Object {}, - "jsonPath": "$.properties.storageAccountAccessKey", + "jsonPath": "$['properties']['storageAccountAccessKey']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseAzureMonitorAuditingCreateMin.json", - "message": "Write-only property \`\\"storageAccountAccessKey\\": \\"\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageAccountAccessKey\\"\`, is not allowed in the response.", "params": Array [ "storageAccountAccessKey", "", ], - "path": "properties/storageAccountAccessKey", + "path": "$/properties/storageAccountAccessKey", "position": Object { "column": 36, "line": 688, @@ -115691,14 +116283,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/). It is required if server level vulnerability assessment policy doesn't set", "directives": Object {}, - "jsonPath": "$.properties.storageContainerPath", + "jsonPath": "$['properties']['storageContainerPath']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentGet.json", - "message": "Write-only property \`\\"storageContainerPath\\": \\"https://myStorage.blob.core.windows.net/vulnerability-assessment/\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageContainerPath\\"\`, is not allowed in the response.", "params": Array [ "storageContainerPath", - "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "", ], - "path": "properties/storageContainerPath", + "path": "$/properties/storageContainerPath", "position": Object { "column": 33, "line": 268, @@ -115718,14 +116310,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/). It is required if server level vulnerability assessment policy doesn't set", "directives": Object {}, - "jsonPath": "$.properties.storageContainerPath", + "jsonPath": "$['properties']['storageContainerPath']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentCreateContainerSasKeyMin.json", - "message": "Write-only property \`\\"storageContainerPath\\": \\"https://myStorage.blob.core.windows.net/vulnerability-assessment/\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageContainerPath\\"\`, is not allowed in the response.", "params": Array [ "storageContainerPath", - "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "", ], - "path": "properties/storageContainerPath", + "path": "$/properties/storageContainerPath", "position": Object { "column": 33, "line": 268, @@ -115745,14 +116337,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/). It is required if server level vulnerability assessment policy doesn't set", "directives": Object {}, - "jsonPath": "$.properties.storageContainerPath", + "jsonPath": "$['properties']['storageContainerPath']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentCreateContainerSasKeyMin.json", - "message": "Write-only property \`\\"storageContainerPath\\": \\"https://myStorage.blob.core.windows.net/vulnerability-assessment/\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageContainerPath\\"\`, is not allowed in the response.", "params": Array [ "storageContainerPath", - "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "", ], - "path": "properties/storageContainerPath", + "path": "$/properties/storageContainerPath", "position": Object { "column": 33, "line": 268, @@ -115772,14 +116364,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/). It is required if server level vulnerability assessment policy doesn't set", "directives": Object {}, - "jsonPath": "$.properties.storageContainerPath", + "jsonPath": "$['properties']['storageContainerPath']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentCreateStorageAccessKeyMin.json", - "message": "Write-only property \`\\"storageContainerPath\\": \\"https://myStorage.blob.core.windows.net/vulnerability-assessment/\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageContainerPath\\"\`, is not allowed in the response.", "params": Array [ "storageContainerPath", - "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "", ], - "path": "properties/storageContainerPath", + "path": "$/properties/storageContainerPath", "position": Object { "column": 33, "line": 268, @@ -115799,14 +116391,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/). It is required if server level vulnerability assessment policy doesn't set", "directives": Object {}, - "jsonPath": "$.properties.storageContainerPath", + "jsonPath": "$['properties']['storageContainerPath']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentCreateStorageAccessKeyMin.json", - "message": "Write-only property \`\\"storageContainerPath\\": \\"https://myStorage.blob.core.windows.net/vulnerability-assessment/\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageContainerPath\\"\`, is not allowed in the response.", "params": Array [ "storageContainerPath", - "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "", ], - "path": "properties/storageContainerPath", + "path": "$/properties/storageContainerPath", "position": Object { "column": 33, "line": 268, @@ -115826,14 +116418,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/). It is required if server level vulnerability assessment policy doesn't set", "directives": Object {}, - "jsonPath": "$.properties.storageContainerPath", + "jsonPath": "$['properties']['storageContainerPath']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentCreateMax.json", - "message": "Write-only property \`\\"storageContainerPath\\": \\"https://myStorage.blob.core.windows.net/vulnerability-assessment/\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageContainerPath\\"\`, is not allowed in the response.", "params": Array [ "storageContainerPath", - "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "", ], - "path": "properties/storageContainerPath", + "path": "$/properties/storageContainerPath", "position": Object { "column": 33, "line": 268, @@ -115853,14 +116445,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/). It is required if server level vulnerability assessment policy doesn't set", "directives": Object {}, - "jsonPath": "$.properties.storageContainerPath", + "jsonPath": "$['properties']['storageContainerPath']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentCreateMax.json", - "message": "Write-only property \`\\"storageContainerPath\\": \\"https://myStorage.blob.core.windows.net/vulnerability-assessment/\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageContainerPath\\"\`, is not allowed in the response.", "params": Array [ "storageContainerPath", - "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "", ], - "path": "properties/storageContainerPath", + "path": "$/properties/storageContainerPath", "position": Object { "column": 33, "line": 268, @@ -115880,14 +116472,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/). It is required if server level vulnerability assessment policy doesn't set", "directives": Object {}, - "jsonPath": "$.value[0].properties.storageContainerPath", + "jsonPath": "$['value'][0]['properties']['storageContainerPath']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/DatabaseVulnerabilityAssessmentListByDatabase.json", - "message": "Write-only property \`\\"storageContainerPath\\": \\"https://myStorage.blob.core.windows.net/vulnerability-assessment/\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageContainerPath\\"\`, is not allowed in the response.", "params": Array [ "storageContainerPath", - "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "", ], - "path": "value/0/properties/storageContainerPath", + "path": "$/value/0/properties/storageContainerPath", "position": Object { "column": 33, "line": 268, @@ -115914,7 +116506,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "The resource model definition representing SKU", "directives": Object {}, - "jsonPath": "$.sku.name", + "jsonPath": "$['sku']['name']", "jsonPosition": Object { "column": 16, "line": 12, @@ -115924,7 +116516,7 @@ Array [ "params": Array [ "name", ], - "path": "sku/name", + "path": "$/sku/name", "position": Object { "column": 14, "line": 74, @@ -115944,7 +116536,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "The resource model definition representing SKU", "directives": Object {}, - "jsonPath": "$.sku.name", + "jsonPath": "$['sku']['name']", "jsonPosition": Object { "column": 16, "line": 12, @@ -115954,7 +116546,7 @@ Array [ "params": Array [ "name", ], - "path": "sku/name", + "path": "$/sku/name", "position": Object { "column": 14, "line": 74, @@ -116047,13 +116639,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "An Azure SQL managed instance administrator.", "directives": Object {}, - "jsonPath": "$.value[0].location", + "jsonPath": "$['value'][0]['location']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-03-01-preview/examples/ManagedInstanceAdministratorListByInstance.json", "message": "Additional properties not allowed: location", "params": Array [ "location", ], - "path": "value/0/location", + "path": "$/value/0/location", "position": Object { "column": 37, "line": 307, @@ -116073,7 +116665,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "An Azure SQL managed instance administrator.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "jsonPosition": Object { "column": 21, "line": 11, @@ -116083,7 +116675,7 @@ Array [ "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 37, "line": 307, @@ -116103,7 +116695,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "An Azure SQL managed instance administrator.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "jsonPosition": Object { "column": 21, "line": 19, @@ -116113,7 +116705,7 @@ Array [ "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 37, "line": 307, @@ -116133,7 +116725,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "An Azure SQL managed instance administrator.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "jsonPosition": Object { "column": 21, "line": 33, @@ -116143,7 +116735,7 @@ Array [ "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 37, "line": 307, @@ -116163,7 +116755,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "An Azure SQL managed instance administrator.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "jsonPosition": Object { "column": 21, "line": 19, @@ -116173,7 +116765,7 @@ Array [ "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 37, "line": 307, @@ -116193,7 +116785,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "An Azure SQL managed instance administrator.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "jsonPosition": Object { "column": 21, "line": 33, @@ -116203,7 +116795,7 @@ Array [ "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 37, "line": 307, @@ -116376,23 +116968,25 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "The key type like 'ServiceManaged', 'AzureKeyVault'.", "directives": Object {}, - "jsonPath": "$.value[0].properties.serverKeyType", + "jsonPath": "$['value'][0]['properties']['serverKeyType']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceKeyList.json", - "message": "Write-only property \`\\"serverKeyType\\": \\"AzureKeyVault\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"serverKeyType\\"\`, is not allowed in the response.", "params": Array [ "serverKeyType", - "AzureKeyVault", + "", ], - "path": "value/0/properties/serverKeyType", + "path": "$/value/0/properties/serverKeyType", "position": Object { "column": 26, "line": 253, }, "similarJsonPaths": Array [ - "$.value[1].properties.serverKeyType", + "$['value'][1]['properties']['serverKeyType']", + "$['value'][2]['properties']['serverKeyType']", ], "similarPaths": Array [ - "value/1/properties/serverKeyType", + "$/value/1/properties/serverKeyType", + "$/value/2/properties/serverKeyType", ], "title": "#/definitions/ManagedInstanceKeyProperties/properties/serverKeyType", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceKeys.json", @@ -116409,73 +117003,25 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "The URI of the key. If the ServerKeyType is AzureKeyVault, then the URI is required.", "directives": Object {}, - "jsonPath": "$.value[0].properties.uri", + "jsonPath": "$['value'][0]['properties']['uri']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceKeyList.json", - "message": "Write-only property \`\\"uri\\": \\"https://someVault.vault.azure.net/keys/someKey/01234567890123456789012345678901\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"uri\\"\`, is not allowed in the response.", "params": Array [ "uri", - "https://someVault.vault.azure.net/keys/someKey/01234567890123456789012345678901", + "", ], - "path": "value/0/properties/uri", + "path": "$/value/0/properties/uri", "position": Object { "column": 16, "line": 268, }, - "title": "#/definitions/ManagedInstanceKeyProperties/properties/uri", - "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceKeys.json", - }, - "operationId": "ManagedInstanceKeys_ListByInstance", - "responseCode": "200", - "scenario": "List the keys for a managed instance.", - "severity": 0, - "source": "response", - }, - Object { - "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", - "details": Object { - "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", - "description": "The URI of the key. If the ServerKeyType is AzureKeyVault, then the URI is required.", - "directives": Object {}, - "jsonPath": "$.value[1].properties.uri", - "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceKeyList.json", - "message": "Write-only property \`\\"uri\\": \\"https://myVault.vault.azure.net/keys/myKey/11111111111111111111111111111111\\"\`, is not allowed in the response.", - "params": Array [ - "uri", - "https://myVault.vault.azure.net/keys/myKey/11111111111111111111111111111111", + "similarJsonPaths": Array [ + "$['value'][1]['properties']['uri']", ], - "path": "value/1/properties/uri", - "position": Object { - "column": 16, - "line": 268, - }, - "title": "#/definitions/ManagedInstanceKeyProperties/properties/uri", - "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceKeys.json", - }, - "operationId": "ManagedInstanceKeys_ListByInstance", - "responseCode": "200", - "scenario": "List the keys for a managed instance.", - "severity": 0, - "source": "response", - }, - Object { - "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", - "details": Object { - "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", - "description": "The key type like 'ServiceManaged', 'AzureKeyVault'.", - "directives": Object {}, - "jsonPath": "$.value[2].properties.serverKeyType", - "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceKeyList.json", - "message": "Write-only property \`\\"serverKeyType\\": \\"ServiceManaged\\"\`, is not allowed in the response.", - "params": Array [ - "serverKeyType", - "ServiceManaged", + "similarPaths": Array [ + "$/value/1/properties/uri", ], - "path": "value/2/properties/serverKeyType", - "position": Object { - "column": 26, - "line": 253, - }, - "title": "#/definitions/ManagedInstanceKeyProperties/properties/serverKeyType", + "title": "#/definitions/ManagedInstanceKeyProperties/properties/uri", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/ManagedInstanceKeys.json", }, "operationId": "ManagedInstanceKeys_ListByInstance", @@ -116490,18 +117036,18 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "The key type like 'ServiceManaged', 'AzureKeyVault'.", "directives": Object {}, - "jsonPath": "$.properties.serverKeyType", + "jsonPath": "$['properties']['serverKeyType']", "jsonPosition": Object { "column": 28, "line": 17, }, "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceKeyGet.json", - "message": "Write-only property \`\\"serverKeyType\\": \\"AzureKeyVault\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"serverKeyType\\"\`, is not allowed in the response.", "params": Array [ "serverKeyType", - "AzureKeyVault", + "", ], - "path": "properties/serverKeyType", + "path": "$/properties/serverKeyType", "position": Object { "column": 26, "line": 253, @@ -116521,14 +117067,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "The URI of the key. If the ServerKeyType is AzureKeyVault, then the URI is required.", "directives": Object {}, - "jsonPath": "$.properties.uri", + "jsonPath": "$['properties']['uri']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceKeyGet.json", - "message": "Write-only property \`\\"uri\\": \\"https://someVault.vault.azure.net/keys/someKey/01234567890123456789012345678901\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"uri\\"\`, is not allowed in the response.", "params": Array [ "uri", - "https://someVault.vault.azure.net/keys/someKey/01234567890123456789012345678901", + "", ], - "path": "properties/uri", + "path": "$/properties/uri", "position": Object { "column": 16, "line": 268, @@ -116548,18 +117094,18 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "The key type like 'ServiceManaged', 'AzureKeyVault'.", "directives": Object {}, - "jsonPath": "$.properties.serverKeyType", + "jsonPath": "$['properties']['serverKeyType']", "jsonPosition": Object { "column": 38, "line": 23, }, "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceKeyCreateOrUpdate.json", - "message": "Write-only property \`\\"serverKeyType\\": \\"AzureKeyVault\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"serverKeyType\\"\`, is not allowed in the response.", "params": Array [ "serverKeyType", - "AzureKeyVault", + "", ], - "path": "properties/serverKeyType", + "path": "$/properties/serverKeyType", "position": Object { "column": 26, "line": 253, @@ -116579,14 +117125,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "The URI of the key. If the ServerKeyType is AzureKeyVault, then the URI is required.", "directives": Object {}, - "jsonPath": "$.properties.uri", + "jsonPath": "$['properties']['uri']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceKeyCreateOrUpdate.json", - "message": "Write-only property \`\\"uri\\": \\"https://someVault.vault.azure.net/keys/someKey/01234567890123456789012345678901\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"uri\\"\`, is not allowed in the response.", "params": Array [ "uri", - "https://someVault.vault.azure.net/keys/someKey/01234567890123456789012345678901", + "", ], - "path": "properties/uri", + "path": "$/properties/uri", "position": Object { "column": 16, "line": 268, @@ -116606,18 +117152,18 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "The key type like 'ServiceManaged', 'AzureKeyVault'.", "directives": Object {}, - "jsonPath": "$.properties.serverKeyType", + "jsonPath": "$['properties']['serverKeyType']", "jsonPosition": Object { "column": 36, "line": 37, }, "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceKeyCreateOrUpdate.json", - "message": "Write-only property \`\\"serverKeyType\\": \\"AzureKeyVault\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"serverKeyType\\"\`, is not allowed in the response.", "params": Array [ "serverKeyType", - "AzureKeyVault", + "", ], - "path": "properties/serverKeyType", + "path": "$/properties/serverKeyType", "position": Object { "column": 26, "line": 253, @@ -116637,14 +117183,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "The URI of the key. If the ServerKeyType is AzureKeyVault, then the URI is required.", "directives": Object {}, - "jsonPath": "$.properties.uri", + "jsonPath": "$['properties']['uri']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedInstanceKeyCreateOrUpdate.json", - "message": "Write-only property \`\\"uri\\": \\"https://someVault.vault.azure.net/keys/someKey/01234567890123456789012345678901\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"uri\\"\`, is not allowed in the response.", "params": Array [ "uri", - "https://someVault.vault.azure.net/keys/someKey/01234567890123456789012345678901", + "", ], - "path": "properties/uri", + "path": "$/properties/uri", "position": Object { "column": 16, "line": 268, @@ -116703,12 +117249,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of a TDE certificate.", "directives": Object {}, - "jsonPath": "$.properties.password", + "jsonPath": "$['properties']['password']", "message": "Additional properties not allowed: password", "params": Array [ "password", ], - "path": "properties/password", + "path": "$/properties/password", "position": Object { "column": 33, "line": 70, @@ -116735,12 +117281,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of a TDE certificate.", "directives": Object {}, - "jsonPath": "$.properties.password", + "jsonPath": "$['properties']['password']", "message": "Additional properties not allowed: password", "params": Array [ "password", ], - "path": "properties/password", + "path": "$/properties/password", "position": Object { "column": 33, "line": 70, @@ -116927,14 +117473,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/). It is required if server level vulnerability assessment policy doesn't set", "directives": Object {}, - "jsonPath": "$.properties.storageContainerPath", + "jsonPath": "$['properties']['storageContainerPath']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentGet.json", - "message": "Write-only property \`\\"storageContainerPath\\": \\"https://myStorage.blob.core.windows.net/vulnerability-assessment/\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageContainerPath\\"\`, is not allowed in the response.", "params": Array [ "storageContainerPath", - "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "", ], - "path": "properties/storageContainerPath", + "path": "$/properties/storageContainerPath", "position": Object { "column": 33, "line": 281, @@ -116954,14 +117500,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/). It is required if server level vulnerability assessment policy doesn't set", "directives": Object {}, - "jsonPath": "$.properties.storageContainerPath", + "jsonPath": "$['properties']['storageContainerPath']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentCreateMax.json", - "message": "Write-only property \`\\"storageContainerPath\\": \\"https://myStorage.blob.core.windows.net/vulnerability-assessment/\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageContainerPath\\"\`, is not allowed in the response.", "params": Array [ "storageContainerPath", - "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "", ], - "path": "properties/storageContainerPath", + "path": "$/properties/storageContainerPath", "position": Object { "column": 33, "line": 281, @@ -116981,14 +117527,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/). It is required if server level vulnerability assessment policy doesn't set", "directives": Object {}, - "jsonPath": "$.properties.storageContainerPath", + "jsonPath": "$['properties']['storageContainerPath']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentCreateMax.json", - "message": "Write-only property \`\\"storageContainerPath\\": \\"https://myStorage.blob.core.windows.net/vulnerability-assessment/\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageContainerPath\\"\`, is not allowed in the response.", "params": Array [ "storageContainerPath", - "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "", ], - "path": "properties/storageContainerPath", + "path": "$/properties/storageContainerPath", "position": Object { "column": 33, "line": 281, @@ -117008,14 +117554,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/). It is required if server level vulnerability assessment policy doesn't set", "directives": Object {}, - "jsonPath": "$.properties.storageContainerPath", + "jsonPath": "$['properties']['storageContainerPath']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentCreateMin.json", - "message": "Write-only property \`\\"storageContainerPath\\": \\"https://myStorage.blob.core.windows.net/vulnerability-assessment/\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageContainerPath\\"\`, is not allowed in the response.", "params": Array [ "storageContainerPath", - "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "", ], - "path": "properties/storageContainerPath", + "path": "$/properties/storageContainerPath", "position": Object { "column": 33, "line": 281, @@ -117035,14 +117581,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/). It is required if server level vulnerability assessment policy doesn't set", "directives": Object {}, - "jsonPath": "$.properties.storageContainerPath", + "jsonPath": "$['properties']['storageContainerPath']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentCreateMin.json", - "message": "Write-only property \`\\"storageContainerPath\\": \\"https://myStorage.blob.core.windows.net/vulnerability-assessment/\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageContainerPath\\"\`, is not allowed in the response.", "params": Array [ "storageContainerPath", - "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "", ], - "path": "properties/storageContainerPath", + "path": "$/properties/storageContainerPath", "position": Object { "column": 33, "line": 281, @@ -117062,14 +117608,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/). It is required if server level vulnerability assessment policy doesn't set", "directives": Object {}, - "jsonPath": "$.value[0].properties.storageContainerPath", + "jsonPath": "$['value'][0]['properties']['storageContainerPath']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2017-10-01-preview/examples/ManagedDatabaseVulnerabilityAssessmentListByDatabase.json", - "message": "Write-only property \`\\"storageContainerPath\\": \\"https://myStorage.blob.core.windows.net/vulnerability-assessment/\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageContainerPath\\"\`, is not allowed in the response.", "params": Array [ "storageContainerPath", - "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "", ], - "path": "value/0/properties/storageContainerPath", + "path": "$/value/0/properties/storageContainerPath", "position": Object { "column": 33, "line": 281, @@ -117108,7 +117654,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A database security alert policy.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "jsonPosition": Object { "column": 17, "line": 12, @@ -117118,7 +117664,7 @@ Array [ "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 36, "line": 277, @@ -117138,7 +117684,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A database security alert policy.", "directives": Object {}, - "jsonPath": "$.kind", + "jsonPath": "$['kind']", "jsonPosition": Object { "column": 17, "line": 12, @@ -117148,7 +117694,7 @@ Array [ "params": Array [ "kind", ], - "path": "kind", + "path": "$/kind", "position": Object { "column": 36, "line": 277, @@ -117168,14 +117714,14 @@ Array [ "code": "INVALID_TYPE", "description": "Specifies that the alert is sent to the account administrators.", "directives": Object {}, - "jsonPath": "$.properties.emailAccountAdmins", + "jsonPath": "$['properties']['emailAccountAdmins']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseSecurityAlertGet.json", "message": "Expected type boolean but found type string", "params": Array [ "boolean", "string", ], - "path": "properties/emailAccountAdmins", + "path": "$/properties/emailAccountAdmins", "position": Object { "column": 31, "line": 252, @@ -117195,14 +117741,14 @@ Array [ "code": "INVALID_FORMAT", "description": "Specifies the UTC creation time of the policy.", "directives": Object {}, - "jsonPath": "$.properties.creationTime", + "jsonPath": "$['properties']['creationTime']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseSecurityAlertGet.json", "message": "Object didn't pass validation for format date-time: 10/8/2018 12:00:00 AM", "params": Array [ "date-time", "10/8/2018 12:00:00 AM", ], - "path": "properties/creationTime", + "path": "$/properties/creationTime", "position": Object { "column": 25, "line": 269, @@ -117243,7 +117789,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A database security alert policy.", "directives": Object {}, - "jsonPath": "$.kind", + "jsonPath": "$['kind']", "jsonPosition": Object { "column": 15, "line": 17, @@ -117253,7 +117799,7 @@ Array [ "params": Array [ "kind", ], - "path": "kind", + "path": "$/kind", "position": Object { "column": 36, "line": 277, @@ -117273,14 +117819,14 @@ Array [ "code": "INVALID_TYPE", "description": "Specifies that the alert is sent to the account administrators.", "directives": Object {}, - "jsonPath": "$.properties.emailAccountAdmins", + "jsonPath": "$['properties']['emailAccountAdmins']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseSecurityAlertCreateMin.json", "message": "Expected type boolean but found type string", "params": Array [ "boolean", "string", ], - "path": "properties/emailAccountAdmins", + "path": "$/properties/emailAccountAdmins", "position": Object { "column": 31, "line": 252, @@ -117300,7 +117846,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A database security alert policy.", "directives": Object {}, - "jsonPath": "$.kind", + "jsonPath": "$['kind']", "jsonPosition": Object { "column": 15, "line": 34, @@ -117310,7 +117856,7 @@ Array [ "params": Array [ "kind", ], - "path": "kind", + "path": "$/kind", "position": Object { "column": 36, "line": 277, @@ -117330,14 +117876,14 @@ Array [ "code": "INVALID_TYPE", "description": "Specifies that the alert is sent to the account administrators.", "directives": Object {}, - "jsonPath": "$.properties.emailAccountAdmins", + "jsonPath": "$['properties']['emailAccountAdmins']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseSecurityAlertCreateMin.json", "message": "Expected type boolean but found type string", "params": Array [ "boolean", "string", ], - "path": "properties/emailAccountAdmins", + "path": "$/properties/emailAccountAdmins", "position": Object { "column": 31, "line": 252, @@ -117378,7 +117924,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A database security alert policy.", "directives": Object {}, - "jsonPath": "$.kind", + "jsonPath": "$['kind']", "jsonPosition": Object { "column": 15, "line": 23, @@ -117388,7 +117934,7 @@ Array [ "params": Array [ "kind", ], - "path": "kind", + "path": "$/kind", "position": Object { "column": 36, "line": 277, @@ -117408,14 +117954,14 @@ Array [ "code": "INVALID_TYPE", "description": "Specifies that the alert is sent to the account administrators.", "directives": Object {}, - "jsonPath": "$.properties.emailAccountAdmins", + "jsonPath": "$['properties']['emailAccountAdmins']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseSecurityAlertCreateMax.json", "message": "Expected type boolean but found type string", "params": Array [ "boolean", "string", ], - "path": "properties/emailAccountAdmins", + "path": "$/properties/emailAccountAdmins", "position": Object { "column": 31, "line": 252, @@ -117435,7 +117981,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A database security alert policy.", "directives": Object {}, - "jsonPath": "$.kind", + "jsonPath": "$['kind']", "jsonPosition": Object { "column": 15, "line": 40, @@ -117445,7 +117991,7 @@ Array [ "params": Array [ "kind", ], - "path": "kind", + "path": "$/kind", "position": Object { "column": 36, "line": 277, @@ -117465,14 +118011,14 @@ Array [ "code": "INVALID_TYPE", "description": "Specifies that the alert is sent to the account administrators.", "directives": Object {}, - "jsonPath": "$.properties.emailAccountAdmins", + "jsonPath": "$['properties']['emailAccountAdmins']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseSecurityAlertCreateMax.json", "message": "Expected type boolean but found type string", "params": Array [ "boolean", "string", ], - "path": "properties/emailAccountAdmins", + "path": "$/properties/emailAccountAdmins", "position": Object { "column": 31, "line": 252, @@ -117492,7 +118038,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Properties of a security alert policy.", "directives": Object {}, - "jsonPath": "$.properties.useServerDefault", + "jsonPath": "$['properties']['useServerDefault']", "jsonPosition": Object { "column": 23, "line": 45, @@ -117502,7 +118048,7 @@ Array [ "params": Array [ "useServerDefault", ], - "path": "properties/useServerDefault", + "path": "$/properties/useServerDefault", "position": Object { "column": 38, "line": 218, @@ -117522,14 +118068,14 @@ Array [ "code": "INVALID_TYPE", "description": "Specifies that the alert is sent to the account administrators.", "directives": Object {}, - "jsonPath": "$.value[0].properties.emailAccountAdmins", + "jsonPath": "$['value'][0]['properties']['emailAccountAdmins']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseSecurityAlertListByDatabase.json", "message": "Expected type boolean but found type string", "params": Array [ "boolean", "string", ], - "path": "value/0/properties/emailAccountAdmins", + "path": "$/value/0/properties/emailAccountAdmins", "position": Object { "column": 31, "line": 252, @@ -117549,14 +118095,14 @@ Array [ "code": "INVALID_FORMAT", "description": "Specifies the UTC creation time of the policy.", "directives": Object {}, - "jsonPath": "$.value[0].properties.creationTime", + "jsonPath": "$['value'][0]['properties']['creationTime']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseSecurityAlertListByDatabase.json", "message": "Object didn't pass validation for format date-time: 10/8/2018 12:00:00 AM", "params": Array [ "date-time", "10/8/2018 12:00:00 AM", ], - "path": "value/0/properties/creationTime", + "path": "$/value/0/properties/creationTime", "position": Object { "column": 25, "line": 269, @@ -117576,13 +118122,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A database security alert policy.", "directives": Object {}, - "jsonPath": "$.value[0].kind", + "jsonPath": "$['value'][0]['kind']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseSecurityAlertListByDatabase.json", "message": "Additional properties not allowed: kind", "params": Array [ "kind", ], - "path": "value/0/kind", + "path": "$/value/0/kind", "position": Object { "column": 36, "line": 277, @@ -117602,13 +118148,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A database security alert policy.", "directives": Object {}, - "jsonPath": "$.value[0].location", + "jsonPath": "$['value'][0]['location']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/DatabaseSecurityAlertListByDatabase.json", "message": "Additional properties not allowed: location", "params": Array [ "location", ], - "path": "value/0/location", + "path": "$/value/0/location", "position": Object { "column": 36, "line": 277, @@ -117639,18 +118185,18 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/).", "directives": Object {}, - "jsonPath": "$.properties.storageContainerPath", + "jsonPath": "$['properties']['storageContainerPath']", "jsonPosition": Object { "column": 45, "line": 16, }, "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentGet.json", - "message": "Write-only property \`\\"storageContainerPath\\": \\"https://myStorage.blob.core.windows.net/vulnerability-assessment/\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageContainerPath\\"\`, is not allowed in the response.", "params": Array [ "storageContainerPath", - "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "", ], - "path": "properties/storageContainerPath", + "path": "$/properties/storageContainerPath", "position": Object { "column": 33, "line": 259, @@ -117670,18 +118216,18 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/).", "directives": Object {}, - "jsonPath": "$.properties.storageContainerPath", + "jsonPath": "$['properties']['storageContainerPath']", "jsonPosition": Object { "column": 35, "line": 22, }, "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentCreateStorageAccessKeyMin.json", - "message": "Write-only property \`\\"storageContainerPath\\": \\"https://myStorage.blob.core.windows.net/vulnerability-assessment/\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageContainerPath\\"\`, is not allowed in the response.", "params": Array [ "storageContainerPath", - "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "", ], - "path": "properties/storageContainerPath", + "path": "$/properties/storageContainerPath", "position": Object { "column": 33, "line": 259, @@ -117701,18 +118247,18 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/).", "directives": Object {}, - "jsonPath": "$.properties.storageContainerPath", + "jsonPath": "$['properties']['storageContainerPath']", "jsonPosition": Object { "column": 35, "line": 37, }, "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentCreateStorageAccessKeyMin.json", - "message": "Write-only property \`\\"storageContainerPath\\": \\"https://myStorage.blob.core.windows.net/vulnerability-assessment/\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageContainerPath\\"\`, is not allowed in the response.", "params": Array [ "storageContainerPath", - "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "", ], - "path": "properties/storageContainerPath", + "path": "$/properties/storageContainerPath", "position": Object { "column": 33, "line": 259, @@ -117732,18 +118278,18 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/).", "directives": Object {}, - "jsonPath": "$.properties.storageContainerPath", + "jsonPath": "$['properties']['storageContainerPath']", "jsonPosition": Object { "column": 35, "line": 22, }, "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentCreateContainerSasKeyMin.json", - "message": "Write-only property \`\\"storageContainerPath\\": \\"https://myStorage.blob.core.windows.net/vulnerability-assessment/\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageContainerPath\\"\`, is not allowed in the response.", "params": Array [ "storageContainerPath", - "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "", ], - "path": "properties/storageContainerPath", + "path": "$/properties/storageContainerPath", "position": Object { "column": 33, "line": 259, @@ -117763,18 +118309,18 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/).", "directives": Object {}, - "jsonPath": "$.properties.storageContainerPath", + "jsonPath": "$['properties']['storageContainerPath']", "jsonPosition": Object { "column": 35, "line": 37, }, "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentCreateContainerSasKeyMin.json", - "message": "Write-only property \`\\"storageContainerPath\\": \\"https://myStorage.blob.core.windows.net/vulnerability-assessment/\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageContainerPath\\"\`, is not allowed in the response.", "params": Array [ "storageContainerPath", - "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "", ], - "path": "properties/storageContainerPath", + "path": "$/properties/storageContainerPath", "position": Object { "column": 33, "line": 259, @@ -117794,18 +118340,18 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/).", "directives": Object {}, - "jsonPath": "$.properties.storageContainerPath", + "jsonPath": "$['properties']['storageContainerPath']", "jsonPosition": Object { "column": 35, "line": 28, }, "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentCreateMax.json", - "message": "Write-only property \`\\"storageContainerPath\\": \\"https://myStorage.blob.core.windows.net/vulnerability-assessment/\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageContainerPath\\"\`, is not allowed in the response.", "params": Array [ "storageContainerPath", - "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "", ], - "path": "properties/storageContainerPath", + "path": "$/properties/storageContainerPath", "position": Object { "column": 33, "line": 259, @@ -117825,18 +118371,18 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/).", "directives": Object {}, - "jsonPath": "$.properties.storageContainerPath", + "jsonPath": "$['properties']['storageContainerPath']", "jsonPosition": Object { "column": 35, "line": 43, }, "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentCreateMax.json", - "message": "Write-only property \`\\"storageContainerPath\\": \\"https://myStorage.blob.core.windows.net/vulnerability-assessment/\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageContainerPath\\"\`, is not allowed in the response.", "params": Array [ "storageContainerPath", - "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "", ], - "path": "properties/storageContainerPath", + "path": "$/properties/storageContainerPath", "position": Object { "column": 33, "line": 259, @@ -117856,14 +118402,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/).", "directives": Object {}, - "jsonPath": "$.value[0].properties.storageContainerPath", + "jsonPath": "$['value'][0]['properties']['storageContainerPath']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ManagedInstanceVulnerabilityAssessmentListByInstance.json", - "message": "Write-only property \`\\"storageContainerPath\\": \\"https://myStorage.blob.core.windows.net/vulnerability-assessment/\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageContainerPath\\"\`, is not allowed in the response.", "params": Array [ "storageContainerPath", - "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "", ], - "path": "value/0/properties/storageContainerPath", + "path": "$/value/0/properties/storageContainerPath", "position": Object { "column": 33, "line": 259, @@ -117890,18 +118436,18 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/).", "directives": Object {}, - "jsonPath": "$.properties.storageContainerPath", + "jsonPath": "$['properties']['storageContainerPath']", "jsonPosition": Object { "column": 45, "line": 16, }, "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentGet.json", - "message": "Write-only property \`\\"storageContainerPath\\": \\"https://myStorage.blob.core.windows.net/vulnerability-assessment/\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageContainerPath\\"\`, is not allowed in the response.", "params": Array [ "storageContainerPath", - "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "", ], - "path": "properties/storageContainerPath", + "path": "$/properties/storageContainerPath", "position": Object { "column": 33, "line": 255, @@ -117921,18 +118467,18 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/).", "directives": Object {}, - "jsonPath": "$.properties.storageContainerPath", + "jsonPath": "$['properties']['storageContainerPath']", "jsonPosition": Object { "column": 35, "line": 22, }, "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentCreateContainerSasKeyMin.json", - "message": "Write-only property \`\\"storageContainerPath\\": \\"https://myStorage.blob.core.windows.net/vulnerability-assessment/\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageContainerPath\\"\`, is not allowed in the response.", "params": Array [ "storageContainerPath", - "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "", ], - "path": "properties/storageContainerPath", + "path": "$/properties/storageContainerPath", "position": Object { "column": 33, "line": 255, @@ -117952,18 +118498,18 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/).", "directives": Object {}, - "jsonPath": "$.properties.storageContainerPath", + "jsonPath": "$['properties']['storageContainerPath']", "jsonPosition": Object { "column": 35, "line": 37, }, "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentCreateContainerSasKeyMin.json", - "message": "Write-only property \`\\"storageContainerPath\\": \\"https://myStorage.blob.core.windows.net/vulnerability-assessment/\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageContainerPath\\"\`, is not allowed in the response.", "params": Array [ "storageContainerPath", - "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "", ], - "path": "properties/storageContainerPath", + "path": "$/properties/storageContainerPath", "position": Object { "column": 33, "line": 255, @@ -117983,18 +118529,18 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/).", "directives": Object {}, - "jsonPath": "$.properties.storageContainerPath", + "jsonPath": "$['properties']['storageContainerPath']", "jsonPosition": Object { "column": 35, "line": 22, }, "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentCreateStorageAccessKeyMin.json", - "message": "Write-only property \`\\"storageContainerPath\\": \\"https://myStorage.blob.core.windows.net/vulnerability-assessment/\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageContainerPath\\"\`, is not allowed in the response.", "params": Array [ "storageContainerPath", - "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "", ], - "path": "properties/storageContainerPath", + "path": "$/properties/storageContainerPath", "position": Object { "column": 33, "line": 255, @@ -118014,18 +118560,18 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/).", "directives": Object {}, - "jsonPath": "$.properties.storageContainerPath", + "jsonPath": "$['properties']['storageContainerPath']", "jsonPosition": Object { "column": 35, "line": 37, }, "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentCreateStorageAccessKeyMin.json", - "message": "Write-only property \`\\"storageContainerPath\\": \\"https://myStorage.blob.core.windows.net/vulnerability-assessment/\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageContainerPath\\"\`, is not allowed in the response.", "params": Array [ "storageContainerPath", - "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "", ], - "path": "properties/storageContainerPath", + "path": "$/properties/storageContainerPath", "position": Object { "column": 33, "line": 255, @@ -118045,18 +118591,18 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/).", "directives": Object {}, - "jsonPath": "$.properties.storageContainerPath", + "jsonPath": "$['properties']['storageContainerPath']", "jsonPosition": Object { "column": 35, "line": 28, }, "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentCreateMax.json", - "message": "Write-only property \`\\"storageContainerPath\\": \\"https://myStorage.blob.core.windows.net/vulnerability-assessment/\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageContainerPath\\"\`, is not allowed in the response.", "params": Array [ "storageContainerPath", - "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "", ], - "path": "properties/storageContainerPath", + "path": "$/properties/storageContainerPath", "position": Object { "column": 33, "line": 255, @@ -118076,18 +118622,18 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/).", "directives": Object {}, - "jsonPath": "$.properties.storageContainerPath", + "jsonPath": "$['properties']['storageContainerPath']", "jsonPosition": Object { "column": 35, "line": 43, }, "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentCreateMax.json", - "message": "Write-only property \`\\"storageContainerPath\\": \\"https://myStorage.blob.core.windows.net/vulnerability-assessment/\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageContainerPath\\"\`, is not allowed in the response.", "params": Array [ "storageContainerPath", - "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "", ], - "path": "properties/storageContainerPath", + "path": "$/properties/storageContainerPath", "position": Object { "column": 33, "line": 255, @@ -118107,14 +118653,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/).", "directives": Object {}, - "jsonPath": "$.value[0].properties.storageContainerPath", + "jsonPath": "$['value'][0]['properties']['storageContainerPath']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/preview/2018-06-01-preview/examples/ServerVulnerabilityAssessmentListByServer.json", - "message": "Write-only property \`\\"storageContainerPath\\": \\"https://myStorage.blob.core.windows.net/vulnerability-assessment/\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageContainerPath\\"\`, is not allowed in the response.", "params": Array [ "storageContainerPath", - "https://myStorage.blob.core.windows.net/vulnerability-assessment/", + "", ], - "path": "value/0/properties/storageContainerPath", + "path": "$/value/0/properties/storageContainerPath", "position": Object { "column": 33, "line": 255, @@ -118141,12 +118687,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "An Azure SQL instance pool.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "message": "Missing required property: location", "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 21, "line": 345, @@ -118166,12 +118712,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "An Azure SQL instance pool.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "message": "Missing required property: location", "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 21, "line": 345, @@ -118206,13 +118752,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The geo-location where the resource lives", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "message": "ReadOnly property \`\\"location\\": \\"Japan East\\"\`, cannot be sent in the request.", "params": Array [ "location", "Japan East", ], - "path": "location", + "path": "$/location", "position": Object { "column": 29, "line": 221, @@ -118239,13 +118785,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The geo-location where the resource lives", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "message": "ReadOnly property \`\\"location\\": \\"Japan East\\"\`, cannot be sent in the request.", "params": Array [ "location", "Japan East", ], - "path": "location", + "path": "$/location", "position": Object { "column": 29, "line": 189, @@ -118292,14 +118838,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Specifies the identifier key of the Threat Detection audit storage account. If state is Enabled, storageAccountAccessKey is required.", "directives": Object {}, - "jsonPath": "$.properties.storageAccountAccessKey", + "jsonPath": "$['properties']['storageAccountAccessKey']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseSecurityAlertGet.json", - "message": "Write-only property \`\\"storageAccountAccessKey\\": \\"\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageAccountAccessKey\\"\`, is not allowed in the response.", "params": Array [ "storageAccountAccessKey", "", ], - "path": "properties/storageAccountAccessKey", + "path": "$/properties/storageAccountAccessKey", "position": Object { "column": 36, "line": 215, @@ -118319,14 +118865,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Specifies the identifier key of the Threat Detection audit storage account. If state is Enabled, storageAccountAccessKey is required.", "directives": Object {}, - "jsonPath": "$.properties.storageAccountAccessKey", + "jsonPath": "$['properties']['storageAccountAccessKey']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseSecurityAlertCreateMin.json", - "message": "Write-only property \`\\"storageAccountAccessKey\\": \\"sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageAccountAccessKey\\"\`, is not allowed in the response.", "params": Array [ "storageAccountAccessKey", - "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "", ], - "path": "properties/storageAccountAccessKey", + "path": "$/properties/storageAccountAccessKey", "position": Object { "column": 36, "line": 215, @@ -118346,14 +118892,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Specifies the identifier key of the Threat Detection audit storage account. If state is Enabled, storageAccountAccessKey is required.", "directives": Object {}, - "jsonPath": "$.properties.storageAccountAccessKey", + "jsonPath": "$['properties']['storageAccountAccessKey']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseSecurityAlertCreateMin.json", - "message": "Write-only property \`\\"storageAccountAccessKey\\": \\"sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageAccountAccessKey\\"\`, is not allowed in the response.", "params": Array [ "storageAccountAccessKey", - "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "", ], - "path": "properties/storageAccountAccessKey", + "path": "$/properties/storageAccountAccessKey", "position": Object { "column": 36, "line": 215, @@ -118373,14 +118919,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Specifies the identifier key of the Threat Detection audit storage account. If state is Enabled, storageAccountAccessKey is required.", "directives": Object {}, - "jsonPath": "$.properties.storageAccountAccessKey", + "jsonPath": "$['properties']['storageAccountAccessKey']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseSecurityAlertCreateMax.json", - "message": "Write-only property \`\\"storageAccountAccessKey\\": \\"sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageAccountAccessKey\\"\`, is not allowed in the response.", "params": Array [ "storageAccountAccessKey", - "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "", ], - "path": "properties/storageAccountAccessKey", + "path": "$/properties/storageAccountAccessKey", "position": Object { "column": 36, "line": 215, @@ -118400,14 +118946,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Specifies the identifier key of the Threat Detection audit storage account. If state is Enabled, storageAccountAccessKey is required.", "directives": Object {}, - "jsonPath": "$.properties.storageAccountAccessKey", + "jsonPath": "$['properties']['storageAccountAccessKey']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseSecurityAlertCreateMax.json", - "message": "Write-only property \`\\"storageAccountAccessKey\\": \\"sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"storageAccountAccessKey\\"\`, is not allowed in the response.", "params": Array [ "storageAccountAccessKey", - "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + "", ], - "path": "properties/storageAccountAccessKey", + "path": "$/properties/storageAccountAccessKey", "position": Object { "column": 36, "line": 215, @@ -118434,13 +118980,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The ID of the database.", "directives": Object {}, - "jsonPath": "$.properties.databaseId", + "jsonPath": "$['properties']['databaseId']", "message": "ReadOnly property \`\\"databaseId\\": \\"816c5f7e-0e36-4eec-9c51-eee7a276c14c\\"\`, cannot be sent in the request.", "params": Array [ "databaseId", "816c5f7e-0e36-4eec-9c51-eee7a276c14c", ], - "path": "properties/databaseId", + "path": "$/properties/databaseId", "position": Object { "column": 28, "line": 618, @@ -118460,13 +119006,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The status of the database.", "directives": Object {}, - "jsonPath": "$.properties.status", + "jsonPath": "$['properties']['status']", "message": "ReadOnly property \`\\"status\\": \\"Online\\"\`, cannot be sent in the request.", "params": Array [ "status", "Online", ], - "path": "properties/status", + "path": "$/properties/status", "position": Object { "column": 24, "line": 865, @@ -118486,13 +119032,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The current service level objective of the database.", "directives": Object {}, - "jsonPath": "$.properties.serviceLevelObjective", + "jsonPath": "$['properties']['serviceLevelObjective']", "message": "ReadOnly property \`\\"serviceLevelObjective\\": \\"S0\\"\`, cannot be sent in the request.", "params": Array [ "serviceLevelObjective", "S0", ], - "path": "properties/serviceLevelObjective", + "path": "$/properties/serviceLevelObjective", "position": Object { "column": 39, "line": 789, @@ -118512,13 +119058,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The creation date of the database (ISO8601 format).", "directives": Object {}, - "jsonPath": "$.properties.creationDate", + "jsonPath": "$['properties']['creationDate']", "message": "ReadOnly property \`\\"creationDate\\": \\"2017-02-10T01:37:18.847Z\\"\`, cannot be sent in the request.", "params": Array [ "creationDate", "2017-02-10T01:37:18.847Z", ], - "path": "properties/creationDate", + "path": "$/properties/creationDate", "position": Object { "column": 30, "line": 600, @@ -118538,13 +119084,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The current service level objective ID of the database. This is the ID of the service level objective that is currently active.", "directives": Object {}, - "jsonPath": "$.properties.currentServiceObjectiveId", + "jsonPath": "$['properties']['currentServiceObjectiveId']", "message": "ReadOnly property \`\\"currentServiceObjectiveId\\": \\"f1173c43-91bd-4aaa-973c-54e79e15235b\\"\`, cannot be sent in the request.", "params": Array [ "currentServiceObjectiveId", "f1173c43-91bd-4aaa-973c-54e79e15235b", ], - "path": "properties/currentServiceObjectiveId", + "path": "$/properties/currentServiceObjectiveId", "position": Object { "column": 43, "line": 612, @@ -118564,13 +119110,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The default secondary region for this database.", "directives": Object {}, - "jsonPath": "$.properties.defaultSecondaryLocation", + "jsonPath": "$['properties']['defaultSecondaryLocation']", "message": "ReadOnly property \`\\"defaultSecondaryLocation\\": \\"Japan West\\"\`, cannot be sent in the request.", "params": Array [ "defaultSecondaryLocation", "Japan West", ], - "path": "properties/defaultSecondaryLocation", + "path": "$/properties/defaultSecondaryLocation", "position": Object { "column": 42, "line": 874, @@ -118590,13 +119136,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "This records the earliest start date and time that restore is available for this database (ISO8601 format).", "directives": Object {}, - "jsonPath": "$.properties.earliestRestoreDate", + "jsonPath": "$['properties']['earliestRestoreDate']", "message": "ReadOnly property \`\\"earliestRestoreDate\\": \\"2017-02-10T01:48:08.237Z\\"\`, cannot be sent in the request.", "params": Array [ "earliestRestoreDate", "2017-02-10T01:48:08.237Z", ], - "path": "properties/earliestRestoreDate", + "path": "$/properties/earliestRestoreDate", "position": Object { "column": 37, "line": 624, @@ -118616,13 +119162,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The containment state of the database.", "directives": Object {}, - "jsonPath": "$.properties.containmentState", + "jsonPath": "$['properties']['containmentState']", "message": "ReadOnly property \`\\"containmentState\\": 2\`, cannot be sent in the request.", "params": Array [ "containmentState", 2, ], - "path": "properties/containmentState", + "path": "$/properties/containmentState", "position": Object { "column": 34, "line": 606, @@ -118658,14 +119204,14 @@ RestoreLongTermRetentionBackup: Creates a database by restoring from a long term Copy, NonReadableSecondary, OnlineSecondary and RestoreLongTermRetentionBackup are not supported for DataWarehouse edition.", "directives": Object {}, - "jsonPath": "$.properties.createMode", + "jsonPath": "$['properties']['createMode']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateMax.json", - "message": "Write-only property \`\\"createMode\\": \\"Default\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"createMode\\"\`, is not allowed in the response.", "params": Array [ "createMode", - "Default", + "", ], - "path": "properties/createMode", + "path": "$/properties/createMode", "position": Object { "column": 28, "line": 630, @@ -118701,14 +119247,14 @@ RestoreLongTermRetentionBackup: Creates a database by restoring from a long term Copy, NonReadableSecondary, OnlineSecondary and RestoreLongTermRetentionBackup are not supported for DataWarehouse edition.", "directives": Object {}, - "jsonPath": "$.properties.createMode", + "jsonPath": "$['properties']['createMode']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/DatabaseCreateMax.json", - "message": "Write-only property \`\\"createMode\\": \\"Default\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"createMode\\"\`, is not allowed in the response.", "params": Array [ "createMode", - "Default", + "", ], - "path": "properties/createMode", + "path": "$/properties/createMode", "position": Object { "column": 28, "line": 630, @@ -118728,13 +119274,13 @@ Copy, NonReadableSecondary, OnlineSecondary and RestoreLongTermRetentionBackup a "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The status of the database.", "directives": Object {}, - "jsonPath": "$.properties.status", + "jsonPath": "$['properties']['status']", "message": "ReadOnly property \`\\"status\\": \\"Online\\"\`, cannot be sent in the request.", "params": Array [ "status", "Online", ], - "path": "properties/status", + "path": "$/properties/status", "position": Object { "column": 24, "line": 865, @@ -118754,13 +119300,13 @@ Copy, NonReadableSecondary, OnlineSecondary and RestoreLongTermRetentionBackup a "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The current service level objective of the database.", "directives": Object {}, - "jsonPath": "$.properties.serviceLevelObjective", + "jsonPath": "$['properties']['serviceLevelObjective']", "message": "ReadOnly property \`\\"serviceLevelObjective\\": \\"S0\\"\`, cannot be sent in the request.", "params": Array [ "serviceLevelObjective", "S0", ], - "path": "properties/serviceLevelObjective", + "path": "$/properties/serviceLevelObjective", "position": Object { "column": 39, "line": 789, @@ -118780,13 +119326,13 @@ Copy, NonReadableSecondary, OnlineSecondary and RestoreLongTermRetentionBackup a "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The current service level objective ID of the database. This is the ID of the service level objective that is currently active.", "directives": Object {}, - "jsonPath": "$.properties.currentServiceObjectiveId", + "jsonPath": "$['properties']['currentServiceObjectiveId']", "message": "ReadOnly property \`\\"currentServiceObjectiveId\\": \\"f1173c43-91bd-4aaa-973c-54e79e15235b\\"\`, cannot be sent in the request.", "params": Array [ "currentServiceObjectiveId", "f1173c43-91bd-4aaa-973c-54e79e15235b", ], - "path": "properties/currentServiceObjectiveId", + "path": "$/properties/currentServiceObjectiveId", "position": Object { "column": 43, "line": 612, @@ -118806,13 +119352,13 @@ Copy, NonReadableSecondary, OnlineSecondary and RestoreLongTermRetentionBackup a "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The default secondary region for this database.", "directives": Object {}, - "jsonPath": "$.properties.defaultSecondaryLocation", + "jsonPath": "$['properties']['defaultSecondaryLocation']", "message": "ReadOnly property \`\\"defaultSecondaryLocation\\": \\"Japan West\\"\`, cannot be sent in the request.", "params": Array [ "defaultSecondaryLocation", "Japan West", ], - "path": "properties/defaultSecondaryLocation", + "path": "$/properties/defaultSecondaryLocation", "position": Object { "column": 42, "line": 874, @@ -118832,13 +119378,13 @@ Copy, NonReadableSecondary, OnlineSecondary and RestoreLongTermRetentionBackup a "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "This records the earliest start date and time that restore is available for this database (ISO8601 format).", "directives": Object {}, - "jsonPath": "$.properties.earliestRestoreDate", + "jsonPath": "$['properties']['earliestRestoreDate']", "message": "ReadOnly property \`\\"earliestRestoreDate\\": \\"2017-02-10T01:52:52.923Z\\"\`, cannot be sent in the request.", "params": Array [ "earliestRestoreDate", "2017-02-10T01:52:52.923Z", ], - "path": "properties/earliestRestoreDate", + "path": "$/properties/earliestRestoreDate", "position": Object { "column": 37, "line": 624, @@ -118858,13 +119404,13 @@ Copy, NonReadableSecondary, OnlineSecondary and RestoreLongTermRetentionBackup a "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The containment state of the database.", "directives": Object {}, - "jsonPath": "$.properties.containmentState", + "jsonPath": "$['properties']['containmentState']", "message": "ReadOnly property \`\\"containmentState\\": 2\`, cannot be sent in the request.", "params": Array [ "containmentState", 2, ], - "path": "properties/containmentState", + "path": "$/properties/containmentState", "position": Object { "column": 34, "line": 606, @@ -118884,13 +119430,13 @@ Copy, NonReadableSecondary, OnlineSecondary and RestoreLongTermRetentionBackup a "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The status of the database.", "directives": Object {}, - "jsonPath": "$.properties.status", + "jsonPath": "$['properties']['status']", "message": "ReadOnly property \`\\"status\\": \\"Online\\"\`, cannot be sent in the request.", "params": Array [ "status", "Online", ], - "path": "properties/status", + "path": "$/properties/status", "position": Object { "column": 24, "line": 865, @@ -118910,13 +119456,13 @@ Copy, NonReadableSecondary, OnlineSecondary and RestoreLongTermRetentionBackup a "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The current service level objective of the database.", "directives": Object {}, - "jsonPath": "$.properties.serviceLevelObjective", + "jsonPath": "$['properties']['serviceLevelObjective']", "message": "ReadOnly property \`\\"serviceLevelObjective\\": \\"S0\\"\`, cannot be sent in the request.", "params": Array [ "serviceLevelObjective", "S0", ], - "path": "properties/serviceLevelObjective", + "path": "$/properties/serviceLevelObjective", "position": Object { "column": 39, "line": 789, @@ -118936,13 +119482,13 @@ Copy, NonReadableSecondary, OnlineSecondary and RestoreLongTermRetentionBackup a "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The current service level objective ID of the database. This is the ID of the service level objective that is currently active.", "directives": Object {}, - "jsonPath": "$.properties.currentServiceObjectiveId", + "jsonPath": "$['properties']['currentServiceObjectiveId']", "message": "ReadOnly property \`\\"currentServiceObjectiveId\\": \\"f1173c43-91bd-4aaa-973c-54e79e15235b\\"\`, cannot be sent in the request.", "params": Array [ "currentServiceObjectiveId", "f1173c43-91bd-4aaa-973c-54e79e15235b", ], - "path": "properties/currentServiceObjectiveId", + "path": "$/properties/currentServiceObjectiveId", "position": Object { "column": 43, "line": 612, @@ -118962,13 +119508,13 @@ Copy, NonReadableSecondary, OnlineSecondary and RestoreLongTermRetentionBackup a "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The default secondary region for this database.", "directives": Object {}, - "jsonPath": "$.properties.defaultSecondaryLocation", + "jsonPath": "$['properties']['defaultSecondaryLocation']", "message": "ReadOnly property \`\\"defaultSecondaryLocation\\": \\"Japan West\\"\`, cannot be sent in the request.", "params": Array [ "defaultSecondaryLocation", "Japan West", ], - "path": "properties/defaultSecondaryLocation", + "path": "$/properties/defaultSecondaryLocation", "position": Object { "column": 42, "line": 874, @@ -118988,13 +119534,13 @@ Copy, NonReadableSecondary, OnlineSecondary and RestoreLongTermRetentionBackup a "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "This records the earliest start date and time that restore is available for this database (ISO8601 format).", "directives": Object {}, - "jsonPath": "$.properties.earliestRestoreDate", + "jsonPath": "$['properties']['earliestRestoreDate']", "message": "ReadOnly property \`\\"earliestRestoreDate\\": \\"2017-02-10T01:52:52.923Z\\"\`, cannot be sent in the request.", "params": Array [ "earliestRestoreDate", "2017-02-10T01:52:52.923Z", ], - "path": "properties/earliestRestoreDate", + "path": "$/properties/earliestRestoreDate", "position": Object { "column": 37, "line": 624, @@ -119014,13 +119560,13 @@ Copy, NonReadableSecondary, OnlineSecondary and RestoreLongTermRetentionBackup a "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The containment state of the database.", "directives": Object {}, - "jsonPath": "$.properties.containmentState", + "jsonPath": "$['properties']['containmentState']", "message": "ReadOnly property \`\\"containmentState\\": 2\`, cannot be sent in the request.", "params": Array [ "containmentState", 2, ], - "path": "properties/containmentState", + "path": "$/properties/containmentState", "position": Object { "column": 34, "line": 606, @@ -119138,13 +119684,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The creation date of the elastic pool (ISO8601 format).", "directives": Object {}, - "jsonPath": "$.properties.creationDate", + "jsonPath": "$['properties']['creationDate']", "message": "ReadOnly property \`\\"creationDate\\": \\"2017-02-10T01:25:25.033Z\\"\`, cannot be sent in the request.", "params": Array [ "creationDate", "2017-02-10T01:25:25.033Z", ], - "path": "properties/creationDate", + "path": "$/properties/creationDate", "position": Object { "column": 32, "line": 266, @@ -119164,13 +119710,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The state of the elastic pool.", "directives": Object {}, - "jsonPath": "$.properties.state", + "jsonPath": "$['properties']['state']", "message": "ReadOnly property \`\\"state\\": \\"Ready\\"\`, cannot be sent in the request.", "params": Array [ "state", "Ready", ], - "path": "properties/state", + "path": "$/properties/state", "position": Object { "column": 25, "line": 272, @@ -119190,13 +119736,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The creation date of the elastic pool (ISO8601 format).", "directives": Object {}, - "jsonPath": "$.properties.creationDate", + "jsonPath": "$['properties']['creationDate']", "message": "ReadOnly property \`\\"creationDate\\": \\"2017-02-10T01:25:25.033Z\\"\`, cannot be sent in the request.", "params": Array [ "creationDate", "2017-02-10T01:25:25.033Z", ], - "path": "properties/creationDate", + "path": "$/properties/creationDate", "position": Object { "column": 32, "line": 266, @@ -119216,13 +119762,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The state of the elastic pool.", "directives": Object {}, - "jsonPath": "$.properties.state", + "jsonPath": "$['properties']['state']", "message": "ReadOnly property \`\\"state\\": \\"Ready\\"\`, cannot be sent in the request.", "params": Array [ "state", "Ready", ], - "path": "properties/state", + "path": "$/properties/state", "position": Object { "column": 25, "line": 272, @@ -119485,14 +120031,14 @@ Array [ "code": "INVALID_FORMAT", "description": "The start time for the replication link.", "directives": Object {}, - "jsonPath": "$.properties.startTime", + "jsonPath": "$['properties']['startTime']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ReplicationLinkGet.json", "message": "Object didn't pass validation for format date-time: 2017-02-10T01:37:49.153", "params": Array [ "date-time", "2017-02-10T01:37:49.153", ], - "path": "properties/startTime", + "path": "$/properties/startTime", "position": Object { "column": 22, "line": 314, @@ -119512,14 +120058,14 @@ Array [ "code": "INVALID_FORMAT", "description": "The start time for the replication link.", "directives": Object {}, - "jsonPath": "$.value[0].properties.startTime", + "jsonPath": "$['value'][0]['properties']['startTime']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ReplicationLinkList.json", "message": "Object didn't pass validation for format date-time: 2017-02-10T01:44:27.117", "params": Array [ "date-time", "2017-02-10T01:44:27.117", ], - "path": "value/0/properties/startTime", + "path": "$/value/0/properties/startTime", "position": Object { "column": 22, "line": 314, @@ -119546,7 +120092,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A database restore point.", "directives": Object {}, - "jsonPath": "$.value[0].location", + "jsonPath": "$['value'][0]['location']", "jsonPosition": Object { "column": 11, "line": 13, @@ -119556,7 +120102,7 @@ Array [ "params": Array [ "location", ], - "path": "value/0/location", + "path": "$/value/0/location", "position": Object { "column": 25, "line": 95, @@ -119576,7 +120122,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A database restore point.", "directives": Object {}, - "jsonPath": "$.value[3].location", + "jsonPath": "$['value'][3]['location']", "jsonPosition": Object { "column": 11, "line": 46, @@ -119586,7 +120132,7 @@ Array [ "params": Array [ "location", ], - "path": "value/3/location", + "path": "$/value/3/location", "position": Object { "column": 25, "line": 95, @@ -119606,7 +120152,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A database restore point.", "directives": Object {}, - "jsonPath": "$.value[2].location", + "jsonPath": "$['value'][2]['location']", "jsonPosition": Object { "column": 11, "line": 35, @@ -119616,7 +120162,7 @@ Array [ "params": Array [ "location", ], - "path": "value/2/location", + "path": "$/value/2/location", "position": Object { "column": 25, "line": 95, @@ -119636,7 +120182,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A database restore point.", "directives": Object {}, - "jsonPath": "$.value[1].location", + "jsonPath": "$['value'][1]['location']", "jsonPosition": Object { "column": 11, "line": 24, @@ -119646,7 +120192,7 @@ Array [ "params": Array [ "location", ], - "path": "value/1/location", + "path": "$/value/1/location", "position": Object { "column": 25, "line": 95, @@ -119666,7 +120212,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A database restore point.", "directives": Object {}, - "jsonPath": "$.value[0].location", + "jsonPath": "$['value'][0]['location']", "jsonPosition": Object { "column": 11, "line": 13, @@ -119676,7 +120222,7 @@ Array [ "params": Array [ "location", ], - "path": "value/0/location", + "path": "$/value/0/location", "position": Object { "column": 25, "line": 95, @@ -119703,13 +120249,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"activeDirectory\\"\`, cannot be sent in the request.", "params": Array [ "name", "activeDirectory", ], - "path": "name", + "path": "$/name", "position": Object { "column": 21, "line": 20, @@ -119729,13 +120275,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource ID.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440/administrators/activeDirectory\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-4799/providers/Microsoft.Sql/servers/sqlcrudtest-6440/administrators/activeDirectory", ], - "path": "id", + "path": "$/id", "position": Object { "column": 19, "line": 15, @@ -119766,14 +120312,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "The administrator login password (required for server creation).", "directives": Object {}, - "jsonPath": "$.properties.administratorLoginPassword", + "jsonPath": "$['properties']['administratorLoginPassword']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCreateOrUpdateMin.json", - "message": "Write-only property \`\\"administratorLoginPassword\\": \\"Un53cuRE!\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"administratorLoginPassword\\"\`, is not allowed in the response.", "params": Array [ "administratorLoginPassword", - "Un53cuRE!", + "", ], - "path": "properties/administratorLoginPassword", + "path": "$/properties/administratorLoginPassword", "position": Object { "column": 39, "line": 263, @@ -119793,14 +120339,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "The administrator login password (required for server creation).", "directives": Object {}, - "jsonPath": "$.properties.administratorLoginPassword", + "jsonPath": "$['properties']['administratorLoginPassword']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCreateOrUpdateMin.json", - "message": "Write-only property \`\\"administratorLoginPassword\\": \\"Un53cuRE!\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"administratorLoginPassword\\"\`, is not allowed in the response.", "params": Array [ "administratorLoginPassword", - "Un53cuRE!", + "", ], - "path": "properties/administratorLoginPassword", + "path": "$/properties/administratorLoginPassword", "position": Object { "column": 39, "line": 263, @@ -119820,13 +120366,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The fully qualified domain name of the server.", "directives": Object {}, - "jsonPath": "$.properties.fullyQualifiedDomainName", + "jsonPath": "$['properties']['fullyQualifiedDomainName']", "message": "ReadOnly property \`\\"fullyQualifiedDomainName\\": \\"sqlcrudtest-4645.database.windows.net\\"\`, cannot be sent in the request.", "params": Array [ "fullyQualifiedDomainName", "sqlcrudtest-4645.database.windows.net", ], - "path": "properties/fullyQualifiedDomainName", + "path": "$/properties/fullyQualifiedDomainName", "position": Object { "column": 37, "line": 244, @@ -119846,13 +120392,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The state of the server.", "directives": Object {}, - "jsonPath": "$.properties.state", + "jsonPath": "$['properties']['state']", "message": "ReadOnly property \`\\"state\\": \\"Ready\\"\`, cannot be sent in the request.", "params": Array [ "state", "Ready", ], - "path": "properties/state", + "path": "$/properties/state", "position": Object { "column": 18, "line": 279, @@ -119872,14 +120418,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "The administrator login password (required for server creation).", "directives": Object {}, - "jsonPath": "$.properties.administratorLoginPassword", + "jsonPath": "$['properties']['administratorLoginPassword']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCreateOrUpdateMax.json", - "message": "Write-only property \`\\"administratorLoginPassword\\": \\"Un53cuRE!\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"administratorLoginPassword\\"\`, is not allowed in the response.", "params": Array [ "administratorLoginPassword", - "Un53cuRE!", + "", ], - "path": "properties/administratorLoginPassword", + "path": "$/properties/administratorLoginPassword", "position": Object { "column": 39, "line": 263, @@ -119899,14 +120445,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "The administrator login password (required for server creation).", "directives": Object {}, - "jsonPath": "$.properties.administratorLoginPassword", + "jsonPath": "$['properties']['administratorLoginPassword']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerCreateOrUpdateMax.json", - "message": "Write-only property \`\\"administratorLoginPassword\\": \\"Un53cuRE!\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"administratorLoginPassword\\"\`, is not allowed in the response.", "params": Array [ "administratorLoginPassword", - "Un53cuRE!", + "", ], - "path": "properties/administratorLoginPassword", + "path": "$/properties/administratorLoginPassword", "position": Object { "column": 39, "line": 263, @@ -119926,14 +120472,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "The administrator login password (required for server creation).", "directives": Object {}, - "jsonPath": "$.properties.administratorLoginPassword", + "jsonPath": "$['properties']['administratorLoginPassword']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerUpdateMin.json", - "message": "Write-only property \`\\"administratorLoginPassword\\": \\"Un53cuRE!\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"administratorLoginPassword\\"\`, is not allowed in the response.", "params": Array [ "administratorLoginPassword", - "Un53cuRE!", + "", ], - "path": "properties/administratorLoginPassword", + "path": "$/properties/administratorLoginPassword", "position": Object { "column": 39, "line": 263, @@ -119953,13 +120499,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The fully qualified domain name of the server.", "directives": Object {}, - "jsonPath": "$.properties.fullyQualifiedDomainName", + "jsonPath": "$['properties']['fullyQualifiedDomainName']", "message": "ReadOnly property \`\\"fullyQualifiedDomainName\\": \\"sqlcrudtest-4645.database.windows.net\\"\`, cannot be sent in the request.", "params": Array [ "fullyQualifiedDomainName", "sqlcrudtest-4645.database.windows.net", ], - "path": "properties/fullyQualifiedDomainName", + "path": "$/properties/fullyQualifiedDomainName", "position": Object { "column": 37, "line": 244, @@ -119979,13 +120525,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The state of the server.", "directives": Object {}, - "jsonPath": "$.properties.state", + "jsonPath": "$['properties']['state']", "message": "ReadOnly property \`\\"state\\": \\"Ready\\"\`, cannot be sent in the request.", "params": Array [ "state", "Ready", ], - "path": "properties/state", + "path": "$/properties/state", "position": Object { "column": 18, "line": 279, @@ -120005,14 +120551,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "The administrator login password (required for server creation).", "directives": Object {}, - "jsonPath": "$.properties.administratorLoginPassword", + "jsonPath": "$['properties']['administratorLoginPassword']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ServerUpdateMax.json", - "message": "Write-only property \`\\"administratorLoginPassword\\": \\"Un53cuRE!\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"administratorLoginPassword\\"\`, is not allowed in the response.", "params": Array [ "administratorLoginPassword", - "Un53cuRE!", + "", ], - "path": "properties/administratorLoginPassword", + "path": "$/properties/administratorLoginPassword", "position": Object { "column": 39, "line": 263, @@ -120110,14 +120656,14 @@ Array [ "code": "INVALID_FORMAT", "description": "The time the operation started (ISO8601 format).", "directives": Object {}, - "jsonPath": "$.value[1].properties.startTime", + "jsonPath": "$['value'][1]['properties']['startTime']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolDatabaseActivityList.json", "message": "Object didn't pass validation for format date-time: 2016-10-23T03:06:11.19", "params": Array [ "date-time", "2016-10-23T03:06:11.19", ], - "path": "value/1/properties/startTime", + "path": "$/value/1/properties/startTime", "position": Object { "column": 22, "line": 578, @@ -120137,14 +120683,14 @@ Array [ "code": "INVALID_FORMAT", "description": "The time the operation finished (ISO8601 format).", "directives": Object {}, - "jsonPath": "$.value[1].properties.endTime", + "jsonPath": "$['value'][1]['properties']['endTime']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolDatabaseActivityList.json", "message": "Object didn't pass validation for format date-time: 2016-10-23T03:06:49.197", "params": Array [ "date-time", "2016-10-23T03:06:49.197", ], - "path": "value/1/properties/endTime", + "path": "$/value/1/properties/endTime", "position": Object { "column": 20, "line": 512, @@ -120164,14 +120710,14 @@ Array [ "code": "INVALID_FORMAT", "description": "The time the operation started (ISO8601 format).", "directives": Object {}, - "jsonPath": "$.value[0].properties.startTime", + "jsonPath": "$['value'][0]['properties']['startTime']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolDatabaseActivityList.json", "message": "Object didn't pass validation for format date-time: 2016-10-23T03:07:12.577", "params": Array [ "date-time", "2016-10-23T03:07:12.577", ], - "path": "value/0/properties/startTime", + "path": "$/value/0/properties/startTime", "position": Object { "column": 22, "line": 578, @@ -120191,14 +120737,14 @@ Array [ "code": "INVALID_FORMAT", "description": "The time the operation finished (ISO8601 format).", "directives": Object {}, - "jsonPath": "$.value[0].properties.endTime", + "jsonPath": "$['value'][0]['properties']['endTime']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sql/resource-manager/Microsoft.Sql/stable/2014-04-01/examples/ElasticPoolDatabaseActivityList.json", "message": "Object didn't pass validation for format date-time: 2016-10-23T03:08:02.95", "params": Array [ "date-time", "2016-10-23T03:08:02.95", ], - "path": "value/0/properties/endTime", + "path": "$/value/0/properties/endTime", "position": Object { "column": 20, "line": 512, @@ -120294,7 +120840,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Represents the response to a list database table auditing policies request.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "jsonPosition": Object { "column": 14, "line": 12, @@ -120304,7 +120850,7 @@ Array [ "params": Array [ "id", ], - "path": "id", + "path": "$/id", "position": Object { "column": 46, "line": 578, @@ -120324,7 +120870,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Represents the response to a list database table auditing policies request.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "jsonPosition": Object { "column": 14, "line": 12, @@ -120334,7 +120880,7 @@ Array [ "params": Array [ "name", ], - "path": "name", + "path": "$/name", "position": Object { "column": 46, "line": 578, @@ -120354,7 +120900,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Represents the response to a list database table auditing policies request.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "jsonPosition": Object { "column": 14, "line": 12, @@ -120364,7 +120910,7 @@ Array [ "params": Array [ "type", ], - "path": "type", + "path": "$/type", "position": Object { "column": 46, "line": 578, @@ -120384,7 +120930,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Represents the response to a list database table auditing policies request.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "jsonPosition": Object { "column": 14, "line": 12, @@ -120394,7 +120940,7 @@ Array [ "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 46, "line": 578, @@ -120414,7 +120960,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Represents the response to a list database table auditing policies request.", "directives": Object {}, - "jsonPath": "$.kind", + "jsonPath": "$['kind']", "jsonPosition": Object { "column": 14, "line": 12, @@ -120424,7 +120970,7 @@ Array [ "params": Array [ "kind", ], - "path": "kind", + "path": "$/kind", "position": Object { "column": 46, "line": 578, @@ -120444,7 +120990,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Represents the response to a list database table auditing policies request.", "directives": Object {}, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "jsonPosition": Object { "column": 14, "line": 12, @@ -120454,7 +121000,7 @@ Array [ "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 46, "line": 578, @@ -120474,7 +121020,7 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Represents the response to a list database table auditing policies request.", "directives": Object {}, - "jsonPath": "$.value", + "jsonPath": "$['value']", "jsonPosition": Object { "column": 14, "line": 12, @@ -120484,7 +121030,7 @@ Array [ "params": Array [ "value", ], - "path": "value", + "path": "$/value", "position": Object { "column": 46, "line": 578, @@ -120535,12 +121081,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A SQL Server availability group listener.", "directives": Object {}, - "jsonPath": "$.AvailabilityGroupName", + "jsonPath": "$['AvailabilityGroupName']", "message": "Additional properties not allowed: AvailabilityGroupName", "params": Array [ "AvailabilityGroupName", ], - "path": "AvailabilityGroupName", + "path": "$/AvailabilityGroupName", "position": Object { "column": 34, "line": 928, @@ -120560,12 +121106,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A SQL Server availability group listener.", "directives": Object {}, - "jsonPath": "$.LoadBalancerConfigurations", + "jsonPath": "$['LoadBalancerConfigurations']", "message": "Additional properties not allowed: LoadBalancerConfigurations", "params": Array [ "LoadBalancerConfigurations", ], - "path": "LoadBalancerConfigurations", + "path": "$/LoadBalancerConfigurations", "position": Object { "column": 34, "line": 928, @@ -120585,12 +121131,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A SQL Server availability group listener.", "directives": Object {}, - "jsonPath": "$.Port", + "jsonPath": "$['Port']", "message": "Additional properties not allowed: Port", "params": Array [ "Port", ], - "path": "Port", + "path": "$/Port", "position": Object { "column": 34, "line": 928, @@ -120610,14 +121156,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Account name used for operating cluster i.e. will be part of administrators group on all the participating virtual machines in the cluster.", "directives": Object {}, - "jsonPath": "$.properties.wsfcDomainProfile.clusterOperatorAccount", + "jsonPath": "$['properties']['wsfcDomainProfile']['clusterOperatorAccount']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/GetSqlVirtualMachineGroup.json", - "message": "Write-only property \`\\"clusterOperatorAccount\\": \\"testrp@testdomain.com\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"clusterOperatorAccount\\"\`, is not allowed in the response.", "params": Array [ "clusterOperatorAccount", - "testrp@testdomain.com", + "", ], - "path": "properties/wsfcDomainProfile/clusterOperatorAccount", + "path": "$/properties/wsfcDomainProfile/clusterOperatorAccount", "position": Object { "column": 35, "line": 1153, @@ -120637,14 +121183,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Account name under which SQL service will run on all participating SQL virtual machines in the cluster.", "directives": Object {}, - "jsonPath": "$.properties.wsfcDomainProfile.sqlServiceAccount", + "jsonPath": "$['properties']['wsfcDomainProfile']['sqlServiceAccount']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/GetSqlVirtualMachineGroup.json", - "message": "Write-only property \`\\"sqlServiceAccount\\": \\"sqlservice@testdomain.com\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"sqlServiceAccount\\"\`, is not allowed in the response.", "params": Array [ "sqlServiceAccount", - "sqlservice@testdomain.com", + "", ], - "path": "properties/wsfcDomainProfile/sqlServiceAccount", + "path": "$/properties/wsfcDomainProfile/sqlServiceAccount", "position": Object { "column": 30, "line": 1160, @@ -120664,12 +121210,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of a SQL virtual machine group.", "directives": Object {}, - "jsonPath": "$.properties.WsfcDomainProfile", + "jsonPath": "$['properties']['WsfcDomainProfile']", "message": "Additional properties not allowed: WsfcDomainProfile", "params": Array [ "WsfcDomainProfile", ], - "path": "properties/WsfcDomainProfile", + "path": "$/properties/WsfcDomainProfile", "position": Object { "column": 41, "line": 1046, @@ -120689,12 +121235,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of a SQL virtual machine group.", "directives": Object {}, - "jsonPath": "$.properties.SqlImageSku", + "jsonPath": "$['properties']['SqlImageSku']", "message": "Additional properties not allowed: SqlImageSku", "params": Array [ "SqlImageSku", ], - "path": "properties/SqlImageSku", + "path": "$/properties/SqlImageSku", "position": Object { "column": 41, "line": 1046, @@ -120714,12 +121260,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The properties of a SQL virtual machine group.", "directives": Object {}, - "jsonPath": "$.properties.SqlImageOffer", + "jsonPath": "$['properties']['SqlImageOffer']", "message": "Additional properties not allowed: SqlImageOffer", "params": Array [ "SqlImageOffer", ], - "path": "properties/SqlImageOffer", + "path": "$/properties/SqlImageOffer", "position": Object { "column": 41, "line": 1046, @@ -120739,12 +121285,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "An update to a SQL virtual machine group.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "message": "Additional properties not allowed: location", "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 37, "line": 1240, @@ -120764,25 +121310,25 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Account name used for operating cluster i.e. will be part of administrators group on all the participating virtual machines in the cluster.", "directives": Object {}, - "jsonPath": "$.value[0].properties.wsfcDomainProfile.clusterOperatorAccount", + "jsonPath": "$['value'][0]['properties']['wsfcDomainProfile']['clusterOperatorAccount']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/ListByResourceGroupSqlVirtualMachineGroup.json", - "message": "Write-only property \`\\"clusterOperatorAccount\\": \\"testrp@testdomain.com\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"clusterOperatorAccount\\"\`, is not allowed in the response.", "params": Array [ "clusterOperatorAccount", - "testrp@testdomain.com", + "", ], - "path": "value/0/properties/wsfcDomainProfile/clusterOperatorAccount", + "path": "$/value/0/properties/wsfcDomainProfile/clusterOperatorAccount", "position": Object { "column": 35, "line": 1153, }, "similarJsonPaths": Array [ - "$.value[1].properties.wsfcDomainProfile.clusterOperatorAccount", - "$.value[2].properties.wsfcDomainProfile.clusterOperatorAccount", + "$['value'][1]['properties']['wsfcDomainProfile']['clusterOperatorAccount']", + "$['value'][2]['properties']['wsfcDomainProfile']['clusterOperatorAccount']", ], "similarPaths": Array [ - "value/1/properties/wsfcDomainProfile/clusterOperatorAccount", - "value/2/properties/wsfcDomainProfile/clusterOperatorAccount", + "$/value/1/properties/wsfcDomainProfile/clusterOperatorAccount", + "$/value/2/properties/wsfcDomainProfile/clusterOperatorAccount", ], "title": "#/definitions/WsfcDomainProfile/properties/clusterOperatorAccount", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/sqlvm.json", @@ -120799,25 +121345,25 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Account name under which SQL service will run on all participating SQL virtual machines in the cluster.", "directives": Object {}, - "jsonPath": "$.value[0].properties.wsfcDomainProfile.sqlServiceAccount", + "jsonPath": "$['value'][0]['properties']['wsfcDomainProfile']['sqlServiceAccount']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/ListByResourceGroupSqlVirtualMachineGroup.json", - "message": "Write-only property \`\\"sqlServiceAccount\\": \\"sqlservice@testdomain.com\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"sqlServiceAccount\\"\`, is not allowed in the response.", "params": Array [ "sqlServiceAccount", - "sqlservice@testdomain.com", + "", ], - "path": "value/0/properties/wsfcDomainProfile/sqlServiceAccount", + "path": "$/value/0/properties/wsfcDomainProfile/sqlServiceAccount", "position": Object { "column": 30, "line": 1160, }, "similarJsonPaths": Array [ - "$.value[1].properties.wsfcDomainProfile.sqlServiceAccount", - "$.value[2].properties.wsfcDomainProfile.sqlServiceAccount", + "$['value'][1]['properties']['wsfcDomainProfile']['sqlServiceAccount']", + "$['value'][2]['properties']['wsfcDomainProfile']['sqlServiceAccount']", ], "similarPaths": Array [ - "value/1/properties/wsfcDomainProfile/sqlServiceAccount", - "value/2/properties/wsfcDomainProfile/sqlServiceAccount", + "$/value/1/properties/wsfcDomainProfile/sqlServiceAccount", + "$/value/2/properties/wsfcDomainProfile/sqlServiceAccount", ], "title": "#/definitions/WsfcDomainProfile/properties/sqlServiceAccount", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/sqlvm.json", @@ -120834,25 +121380,25 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Account name used for operating cluster i.e. will be part of administrators group on all the participating virtual machines in the cluster.", "directives": Object {}, - "jsonPath": "$.value[0].properties.wsfcDomainProfile.clusterOperatorAccount", + "jsonPath": "$['value'][0]['properties']['wsfcDomainProfile']['clusterOperatorAccount']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/ListSubscriptionSqlVirtualMachineGroup.json", - "message": "Write-only property \`\\"clusterOperatorAccount\\": \\"testrp@testdomain.com\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"clusterOperatorAccount\\"\`, is not allowed in the response.", "params": Array [ "clusterOperatorAccount", - "testrp@testdomain.com", + "", ], - "path": "value/0/properties/wsfcDomainProfile/clusterOperatorAccount", + "path": "$/value/0/properties/wsfcDomainProfile/clusterOperatorAccount", "position": Object { "column": 35, "line": 1153, }, "similarJsonPaths": Array [ - "$.value[1].properties.wsfcDomainProfile.clusterOperatorAccount", - "$.value[2].properties.wsfcDomainProfile.clusterOperatorAccount", + "$['value'][1]['properties']['wsfcDomainProfile']['clusterOperatorAccount']", + "$['value'][2]['properties']['wsfcDomainProfile']['clusterOperatorAccount']", ], "similarPaths": Array [ - "value/1/properties/wsfcDomainProfile/clusterOperatorAccount", - "value/2/properties/wsfcDomainProfile/clusterOperatorAccount", + "$/value/1/properties/wsfcDomainProfile/clusterOperatorAccount", + "$/value/2/properties/wsfcDomainProfile/clusterOperatorAccount", ], "title": "#/definitions/WsfcDomainProfile/properties/clusterOperatorAccount", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/sqlvm.json", @@ -120869,25 +121415,25 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Account name under which SQL service will run on all participating SQL virtual machines in the cluster.", "directives": Object {}, - "jsonPath": "$.value[0].properties.wsfcDomainProfile.sqlServiceAccount", + "jsonPath": "$['value'][0]['properties']['wsfcDomainProfile']['sqlServiceAccount']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/ListSubscriptionSqlVirtualMachineGroup.json", - "message": "Write-only property \`\\"sqlServiceAccount\\": \\"sqlservice@testdomain.com\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"sqlServiceAccount\\"\`, is not allowed in the response.", "params": Array [ "sqlServiceAccount", - "sqlservice@testdomain.com", + "", ], - "path": "value/0/properties/wsfcDomainProfile/sqlServiceAccount", + "path": "$/value/0/properties/wsfcDomainProfile/sqlServiceAccount", "position": Object { "column": 30, "line": 1160, }, "similarJsonPaths": Array [ - "$.value[1].properties.wsfcDomainProfile.sqlServiceAccount", - "$.value[2].properties.wsfcDomainProfile.sqlServiceAccount", + "$['value'][1]['properties']['wsfcDomainProfile']['sqlServiceAccount']", + "$['value'][2]['properties']['wsfcDomainProfile']['sqlServiceAccount']", ], "similarPaths": Array [ - "value/1/properties/wsfcDomainProfile/sqlServiceAccount", - "value/2/properties/wsfcDomainProfile/sqlServiceAccount", + "$/value/1/properties/wsfcDomainProfile/sqlServiceAccount", + "$/value/2/properties/wsfcDomainProfile/sqlServiceAccount", ], "title": "#/definitions/WsfcDomainProfile/properties/sqlServiceAccount", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/sqlvm.json", @@ -120904,12 +121450,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The SQL virtual machine properties.", "directives": Object {}, - "jsonPath": "$.properties.AutoBackupSettings", + "jsonPath": "$['properties']['AutoBackupSettings']", "message": "Additional properties not allowed: AutoBackupSettings", "params": Array [ "AutoBackupSettings", ], - "path": "properties/AutoBackupSettings", + "path": "$/properties/AutoBackupSettings", "position": Object { "column": 36, "line": 1301, @@ -120929,12 +121475,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The SQL virtual machine properties.", "directives": Object {}, - "jsonPath": "$.properties.AutoPatchingSettings", + "jsonPath": "$['properties']['AutoPatchingSettings']", "message": "Additional properties not allowed: AutoPatchingSettings", "params": Array [ "AutoPatchingSettings", ], - "path": "properties/AutoPatchingSettings", + "path": "$/properties/AutoPatchingSettings", "position": Object { "column": 36, "line": 1301, @@ -120954,12 +121500,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The SQL virtual machine properties.", "directives": Object {}, - "jsonPath": "$.properties.KeyVaultCredentialSettings", + "jsonPath": "$['properties']['KeyVaultCredentialSettings']", "message": "Additional properties not allowed: KeyVaultCredentialSettings", "params": Array [ "KeyVaultCredentialSettings", ], - "path": "properties/KeyVaultCredentialSettings", + "path": "$/properties/KeyVaultCredentialSettings", "position": Object { "column": 36, "line": 1301, @@ -120979,12 +121525,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The SQL virtual machine properties.", "directives": Object {}, - "jsonPath": "$.properties.ServerConfigurationsManagementSettings", + "jsonPath": "$['properties']['ServerConfigurationsManagementSettings']", "message": "Additional properties not allowed: ServerConfigurationsManagementSettings", "params": Array [ "ServerConfigurationsManagementSettings", ], - "path": "properties/ServerConfigurationsManagementSettings", + "path": "$/properties/ServerConfigurationsManagementSettings", "position": Object { "column": 36, "line": 1301, @@ -121004,12 +121550,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The SQL virtual machine properties.", "directives": Object {}, - "jsonPath": "$.properties.WsfcDomainCredentials", + "jsonPath": "$['properties']['WsfcDomainCredentials']", "message": "Additional properties not allowed: WsfcDomainCredentials", "params": Array [ "WsfcDomainCredentials", ], - "path": "properties/WsfcDomainCredentials", + "path": "$/properties/WsfcDomainCredentials", "position": Object { "column": 36, "line": 1301, @@ -121029,12 +121575,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The SQL virtual machine properties.", "directives": Object {}, - "jsonPath": "$.properties.SqlVirtualMachineGroupResourceId", + "jsonPath": "$['properties']['SqlVirtualMachineGroupResourceId']", "message": "Additional properties not allowed: SqlVirtualMachineGroupResourceId", "params": Array [ "SqlVirtualMachineGroupResourceId", ], - "path": "properties/SqlVirtualMachineGroupResourceId", + "path": "$/properties/SqlVirtualMachineGroupResourceId", "position": Object { "column": 36, "line": 1301, @@ -121054,14 +121600,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "ARM resource id of the SQL virtual machine group this SQL virtual machine is or will be part of.", "directives": Object {}, - "jsonPath": "$.properties.sqlVirtualMachineGroupResourceId", + "jsonPath": "$['properties']['sqlVirtualMachineGroupResourceId']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/CreateOrUpdateVirtualMachineWithVMGroup.json", - "message": "Write-only property \`\\"sqlVirtualMachineGroupResourceId\\": \\"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/testvmgroup\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"sqlVirtualMachineGroupResourceId\\"\`, is not allowed in the response.", "params": Array [ "sqlVirtualMachineGroupResourceId", - "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/testvmgroup", + "", ], - "path": "properties/sqlVirtualMachineGroupResourceId", + "path": "$/properties/sqlVirtualMachineGroupResourceId", "position": Object { "column": 45, "line": 1351, @@ -121081,14 +121627,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "ARM resource id of the SQL virtual machine group this SQL virtual machine is or will be part of.", "directives": Object {}, - "jsonPath": "$.properties.sqlVirtualMachineGroupResourceId", + "jsonPath": "$['properties']['sqlVirtualMachineGroupResourceId']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/sqlvirtualmachine/resource-manager/Microsoft.SqlVirtualMachine/preview/2017-03-01-preview/examples/CreateOrUpdateVirtualMachineWithVMGroup.json", - "message": "Write-only property \`\\"sqlVirtualMachineGroupResourceId\\": \\"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/testvmgroup\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"sqlVirtualMachineGroupResourceId\\"\`, is not allowed in the response.", "params": Array [ "sqlVirtualMachineGroupResourceId", - "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/testvmgroup", + "", ], - "path": "properties/sqlVirtualMachineGroupResourceId", + "path": "$/properties/sqlVirtualMachineGroupResourceId", "position": Object { "column": 45, "line": 1351, @@ -121108,12 +121654,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "An update to a SQL virtual machine.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "message": "Additional properties not allowed: location", "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 32, "line": 1696, @@ -121140,13 +121686,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The Resource Name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"hManagerForSDKTest\\"\`, cannot be sent in the request.", "params": Array [ "name", "hManagerForSDKTest", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 8297, @@ -121182,12 +121728,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The access control record", "directives": Object {}, - "jsonPath": "$.Client", + "jsonPath": "$['Client']", "message": "Additional properties not allowed: Client", "params": Array [ "Client", ], - "path": "Client", + "path": "$/Client", "position": Object { "column": 28, "line": 5823, @@ -121207,12 +121753,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The access control record", "directives": Object {}, - "jsonPath": "$.ResourceGroupName", + "jsonPath": "$['ResourceGroupName']", "message": "Additional properties not allowed: ResourceGroupName", "params": Array [ "ResourceGroupName", ], - "path": "ResourceGroupName", + "path": "$/ResourceGroupName", "position": Object { "column": 28, "line": 5823, @@ -121232,12 +121778,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The access control record", "directives": Object {}, - "jsonPath": "$.ManagerName", + "jsonPath": "$['ManagerName']", "message": "Additional properties not allowed: ManagerName", "params": Array [ "ManagerName", ], - "path": "ManagerName", + "path": "$/ManagerName", "position": Object { "column": 28, "line": 5823, @@ -121257,13 +121803,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"AcrForSDKTest\\"\`, cannot be sent in the request.", "params": Array [ "name", "AcrForSDKTest", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 6507, @@ -121315,13 +121861,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Gets ContractVersion", "directives": Object {}, - "jsonPath": "$.contractVersion", + "jsonPath": "$['contractVersion']", "message": "ReadOnly property \`\\"contractVersion\\": \\"V2012_12\\"\`, cannot be sent in the request.", "params": Array [ "contractVersion", "V2012_12", ], - "path": "contractVersion", + "path": "$/contractVersion", "position": Object { "column": 28, "line": 8890, @@ -121389,13 +121935,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"default\\"\`, cannot be sent in the request.", "params": Array [ "name", "default", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 6507, @@ -121447,13 +121993,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name.", "directives": Object {}, - "jsonPath": "$.properties.share.name", + "jsonPath": "$['properties']['share']['name']", "message": "ReadOnly property \`\\"name\\": \\"TieredFileShareForSDKTest\\"\`, cannot be sent in the request.", "params": Array [ "name", "TieredFileShareForSDKTest", ], - "path": "properties/share/name", + "path": "$/properties/share/name", "position": Object { "column": 17, "line": 6507, @@ -121473,12 +122019,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The File Share.", "directives": Object {}, - "jsonPath": "$.properties.share.ManagerName", + "jsonPath": "$['properties']['share']['ManagerName']", "message": "Additional properties not allowed: ManagerName", "params": Array [ "ManagerName", ], - "path": "properties/share/ManagerName", + "path": "$/properties/share/ManagerName", "position": Object { "column": 18, "line": 7012, @@ -121498,12 +122044,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The File Share.", "directives": Object {}, - "jsonPath": "$.properties.share.ResourceGroupName", + "jsonPath": "$['properties']['share']['ResourceGroupName']", "message": "Additional properties not allowed: ResourceGroupName", "params": Array [ "ResourceGroupName", ], - "path": "properties/share/ResourceGroupName", + "path": "$/properties/share/ResourceGroupName", "position": Object { "column": 18, "line": 7012, @@ -121523,12 +122069,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The File Share.", "directives": Object {}, - "jsonPath": "$.properties.share.Client", + "jsonPath": "$['properties']['share']['Client']", "message": "Additional properties not allowed: Client", "params": Array [ "Client", ], - "path": "properties/share/Client", + "path": "$/properties/share/Client", "position": Object { "column": 18, "line": 7012, @@ -121580,12 +122126,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The Backup Schedule Group", "directives": Object {}, - "jsonPath": "$.Client", + "jsonPath": "$['Client']", "message": "Additional properties not allowed: Client", "params": Array [ "Client", ], - "path": "Client", + "path": "$/Client", "position": Object { "column": 28, "line": 6450, @@ -121605,12 +122151,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The Backup Schedule Group", "directives": Object {}, - "jsonPath": "$.ResourceGroupName", + "jsonPath": "$['ResourceGroupName']", "message": "Additional properties not allowed: ResourceGroupName", "params": Array [ "ResourceGroupName", ], - "path": "ResourceGroupName", + "path": "$/ResourceGroupName", "position": Object { "column": 28, "line": 6450, @@ -121630,12 +122176,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The Backup Schedule Group", "directives": Object {}, - "jsonPath": "$.ManagerName", + "jsonPath": "$['ManagerName']", "message": "Additional properties not allowed: ManagerName", "params": Array [ "ManagerName", ], - "path": "ManagerName", + "path": "$/ManagerName", "position": Object { "column": 28, "line": 6450, @@ -121655,13 +122201,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"BackupSchGroupForSDKTest\\"\`, cannot be sent in the request.", "params": Array [ "name", "BackupSchGroupForSDKTest", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 6507, @@ -121713,12 +122259,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Challenge-Handshake Authentication Protocol (CHAP) setting", "directives": Object {}, - "jsonPath": "$.Client", + "jsonPath": "$['Client']", "message": "Additional properties not allowed: Client", "params": Array [ "Client", ], - "path": "Client", + "path": "$/Client", "position": Object { "column": 21, "line": 6532, @@ -121738,12 +122284,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Challenge-Handshake Authentication Protocol (CHAP) setting", "directives": Object {}, - "jsonPath": "$.ResourceGroupName", + "jsonPath": "$['ResourceGroupName']", "message": "Additional properties not allowed: ResourceGroupName", "params": Array [ "ResourceGroupName", ], - "path": "ResourceGroupName", + "path": "$/ResourceGroupName", "position": Object { "column": 21, "line": 6532, @@ -121763,12 +122309,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Challenge-Handshake Authentication Protocol (CHAP) setting", "directives": Object {}, - "jsonPath": "$.ManagerName", + "jsonPath": "$['ManagerName']", "message": "Additional properties not allowed: ManagerName", "params": Array [ "ManagerName", ], - "path": "ManagerName", + "path": "$/ManagerName", "position": Object { "column": 21, "line": 6532, @@ -121788,13 +122334,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"ChapSettingForSDK\\"\`, cannot be sent in the request.", "params": Array [ "name", "ChapSettingForSDK", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 6507, @@ -121926,12 +122472,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The file server.", "directives": Object {}, - "jsonPath": "$.Client", + "jsonPath": "$['Client']", "message": "Additional properties not allowed: Client", "params": Array [ "Client", ], - "path": "Client", + "path": "$/Client", "position": Object { "column": 19, "line": 6950, @@ -121951,12 +122497,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The file server.", "directives": Object {}, - "jsonPath": "$.ResourceGroupName", + "jsonPath": "$['ResourceGroupName']", "message": "Additional properties not allowed: ResourceGroupName", "params": Array [ "ResourceGroupName", ], - "path": "ResourceGroupName", + "path": "$/ResourceGroupName", "position": Object { "column": 19, "line": 6950, @@ -121976,12 +122522,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The file server.", "directives": Object {}, - "jsonPath": "$.ManagerName", + "jsonPath": "$['ManagerName']", "message": "Additional properties not allowed: ManagerName", "params": Array [ "ManagerName", ], - "path": "ManagerName", + "path": "$/ManagerName", "position": Object { "column": 19, "line": 6950, @@ -122001,13 +122547,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"HSDK-4XY4FI2IVG\\"\`, cannot be sent in the request.", "params": Array [ "name", "HSDK-4XY4FI2IVG", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 6507, @@ -122075,12 +122621,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The File Share.", "directives": Object {}, - "jsonPath": "$.Client", + "jsonPath": "$['Client']", "message": "Additional properties not allowed: Client", "params": Array [ "Client", ], - "path": "Client", + "path": "$/Client", "position": Object { "column": 18, "line": 7012, @@ -122100,12 +122646,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The File Share.", "directives": Object {}, - "jsonPath": "$.ResourceGroupName", + "jsonPath": "$['ResourceGroupName']", "message": "Additional properties not allowed: ResourceGroupName", "params": Array [ "ResourceGroupName", ], - "path": "ResourceGroupName", + "path": "$/ResourceGroupName", "position": Object { "column": 18, "line": 7012, @@ -122125,12 +122671,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The File Share.", "directives": Object {}, - "jsonPath": "$.ManagerName", + "jsonPath": "$['ManagerName']", "message": "Additional properties not allowed: ManagerName", "params": Array [ "ManagerName", ], - "path": "ManagerName", + "path": "$/ManagerName", "position": Object { "column": 18, "line": 7012, @@ -122150,13 +122696,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"Auto-TestFileShare1\\"\`, cannot be sent in the request.", "params": Array [ "name", "Auto-TestFileShare1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 6507, @@ -122224,12 +122770,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The iSCSI server.", "directives": Object {}, - "jsonPath": "$.Client", + "jsonPath": "$['Client']", "message": "Additional properties not allowed: Client", "params": Array [ "Client", ], - "path": "Client", + "path": "$/Client", "position": Object { "column": 20, "line": 7260, @@ -122249,12 +122795,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The iSCSI server.", "directives": Object {}, - "jsonPath": "$.ResourceGroupName", + "jsonPath": "$['ResourceGroupName']", "message": "Additional properties not allowed: ResourceGroupName", "params": Array [ "ResourceGroupName", ], - "path": "ResourceGroupName", + "path": "$/ResourceGroupName", "position": Object { "column": 20, "line": 7260, @@ -122274,12 +122820,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The iSCSI server.", "directives": Object {}, - "jsonPath": "$.ManagerName", + "jsonPath": "$['ManagerName']", "message": "Additional properties not allowed: ManagerName", "params": Array [ "ManagerName", ], - "path": "ManagerName", + "path": "$/ManagerName", "position": Object { "column": 20, "line": 7260, @@ -122299,13 +122845,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.StorSimple/managers/devices/iscsiServers\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.StorSimple/managers/devices/iscsiServers", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 6512, @@ -122325,13 +122871,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"HSDK-WSJQERQW3F\\"\`, cannot be sent in the request.", "params": Array [ "name", "HSDK-WSJQERQW3F", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 6507, @@ -122351,13 +122897,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The identifier.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/9eb689cd-7243-43b4-b6f6-5c65cb296641/resourceGroups/ResourceGroupForSDKTest/providers/Microsoft.StorSimple/managers/hAzureSDKOperations/devices/HSDK-WSJQERQW3F/iscsiServers/HSDK-WSJQERQW3F\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/9eb689cd-7243-43b4-b6f6-5c65cb296641/resourceGroups/ResourceGroupForSDKTest/providers/Microsoft.StorSimple/managers/hAzureSDKOperations/devices/HSDK-WSJQERQW3F/iscsiServers/HSDK-WSJQERQW3F", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 6502, @@ -122425,12 +122971,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The iSCSI disk.", "directives": Object {}, - "jsonPath": "$.Client", + "jsonPath": "$['Client']", "message": "Additional properties not allowed: Client", "params": Array [ "Client", ], - "path": "Client", + "path": "$/Client", "position": Object { "column": 18, "line": 7146, @@ -122450,12 +122996,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The iSCSI disk.", "directives": Object {}, - "jsonPath": "$.ResourceGroupName", + "jsonPath": "$['ResourceGroupName']", "message": "Additional properties not allowed: ResourceGroupName", "params": Array [ "ResourceGroupName", ], - "path": "ResourceGroupName", + "path": "$/ResourceGroupName", "position": Object { "column": 18, "line": 7146, @@ -122475,12 +123021,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The iSCSI disk.", "directives": Object {}, - "jsonPath": "$.ManagerName", + "jsonPath": "$['ManagerName']", "message": "Additional properties not allowed: ManagerName", "params": Array [ "ManagerName", ], - "path": "ManagerName", + "path": "$/ManagerName", "position": Object { "column": 18, "line": 7146, @@ -122500,13 +123046,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"Auto-TestIscsiDisk1\\"\`, cannot be sent in the request.", "params": Array [ "name", "Auto-TestIscsiDisk1", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 6507, @@ -122638,13 +123184,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.StorSimple/Managers/extendedInformation\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.StorSimple/Managers/extendedInformation", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 6512, @@ -122664,13 +123210,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"vaultExtendedInfo\\"\`, cannot be sent in the request.", "params": Array [ "name", "vaultExtendedInfo", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 6507, @@ -122690,13 +123236,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The identifier.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/9eb689cd-7243-43b4-b6f6-5c65cb296641/resourceGroups/ResourceGroupForSDKTest/providers/Microsoft.StorSimple/Managers/hManagerForSDKTestextendedInformation/vaultExtendedInfo\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/9eb689cd-7243-43b4-b6f6-5c65cb296641/resourceGroups/ResourceGroupForSDKTest/providers/Microsoft.StorSimple/Managers/hManagerForSDKTestextendedInformation/vaultExtendedInfo", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 6502, @@ -122732,13 +123278,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.StorSimple/Managers/extendedInformation\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.StorSimple/Managers/extendedInformation", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 6512, @@ -122758,13 +123304,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"vaultExtendedInfo\\"\`, cannot be sent in the request.", "params": Array [ "name", "vaultExtendedInfo", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 6507, @@ -122784,13 +123330,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The identifier.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/9eb689cd-7243-43b4-b6f6-5c65cb296641/resourceGroups/ResourceGroupForSDKTest/providers/Microsoft.StorSimple/Managers/hManagerForSDKTestextendedInformation/vaultExtendedInfo\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/9eb689cd-7243-43b4-b6f6-5c65cb296641/resourceGroups/ResourceGroupForSDKTest/providers/Microsoft.StorSimple/Managers/hManagerForSDKTestextendedInformation/vaultExtendedInfo", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 6502, @@ -122810,12 +123356,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The storage account credential", "directives": Object {}, - "jsonPath": "$.Client", + "jsonPath": "$['Client']", "message": "Additional properties not allowed: Client", "params": Array [ "Client", ], - "path": "Client", + "path": "$/Client", "position": Object { "column": 33, "line": 8458, @@ -122835,12 +123381,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The storage account credential", "directives": Object {}, - "jsonPath": "$.ResourceGroupName", + "jsonPath": "$['ResourceGroupName']", "message": "Additional properties not allowed: ResourceGroupName", "params": Array [ "ResourceGroupName", ], - "path": "ResourceGroupName", + "path": "$/ResourceGroupName", "position": Object { "column": 33, "line": 8458, @@ -122860,12 +123406,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The storage account credential", "directives": Object {}, - "jsonPath": "$.ManagerName", + "jsonPath": "$['ManagerName']", "message": "Additional properties not allowed: ManagerName", "params": Array [ "ManagerName", ], - "path": "ManagerName", + "path": "$/ManagerName", "position": Object { "column": 33, "line": 8458, @@ -122885,13 +123431,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"DummySacForSDKTest\\"\`, cannot be sent in the request.", "params": Array [ "name", "DummySacForSDKTest", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 6507, @@ -122943,12 +123489,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The storage domain.", "directives": Object {}, - "jsonPath": "$.Client", + "jsonPath": "$['Client']", "message": "Additional properties not allowed: Client", "params": Array [ "Client", ], - "path": "Client", + "path": "$/Client", "position": Object { "column": 22, "line": 8548, @@ -122968,12 +123514,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The storage domain.", "directives": Object {}, - "jsonPath": "$.ResourceGroupName", + "jsonPath": "$['ResourceGroupName']", "message": "Additional properties not allowed: ResourceGroupName", "params": Array [ "ResourceGroupName", ], - "path": "ResourceGroupName", + "path": "$/ResourceGroupName", "position": Object { "column": 22, "line": 8548, @@ -122993,12 +123539,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The storage domain.", "directives": Object {}, - "jsonPath": "$.ManagerName", + "jsonPath": "$['ManagerName']", "message": "Additional properties not allowed: ManagerName", "params": Array [ "ManagerName", ], - "path": "ManagerName", + "path": "$/ManagerName", "position": Object { "column": 22, "line": 8548, @@ -123018,13 +123564,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"sd-fs-HSDK-4XY4FI2IVG\\"\`, cannot be sent in the request.", "params": Array [ "name", "sd-fs-HSDK-4XY4FI2IVG", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 6507, @@ -123272,76 +123818,76 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Display metadata associated with the operation.", "directives": Object {}, - "jsonPath": "$.value[0].display.description", + "jsonPath": "$['value'][0]['display']['description']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/examples/OperationsList.json", "message": "Additional properties not allowed: description", "params": Array [ "description", ], - "path": "value/0/display/description", + "path": "$/value/0/display/description", "position": Object { "column": 20, "line": 600, }, "similarJsonPaths": Array [ - "$.value[1].display.description", - "$.value[2].display.description", - "$.value[3].display.description", - "$.value[4].display.description", - "$.value[5].display.description", - "$.value[6].display.description", - "$.value[7].display.description", - "$.value[8].display.description", - "$.value[9].display.description", - "$.value[10].display.description", - "$.value[11].display.description", - "$.value[12].display.description", - "$.value[13].display.description", - "$.value[14].display.description", - "$.value[15].display.description", - "$.value[16].display.description", - "$.value[17].display.description", - "$.value[18].display.description", - "$.value[19].display.description", - "$.value[20].display.description", - "$.value[21].display.description", - "$.value[22].display.description", - "$.value[23].display.description", - "$.value[24].display.description", - "$.value[25].display.description", - "$.value[26].display.description", - "$.value[27].display.description", - "$.value[28].display.description", + "$['value'][1]['display']['description']", + "$['value'][2]['display']['description']", + "$['value'][3]['display']['description']", + "$['value'][4]['display']['description']", + "$['value'][5]['display']['description']", + "$['value'][6]['display']['description']", + "$['value'][7]['display']['description']", + "$['value'][8]['display']['description']", + "$['value'][9]['display']['description']", + "$['value'][10]['display']['description']", + "$['value'][11]['display']['description']", + "$['value'][12]['display']['description']", + "$['value'][13]['display']['description']", + "$['value'][14]['display']['description']", + "$['value'][15]['display']['description']", + "$['value'][16]['display']['description']", + "$['value'][17]['display']['description']", + "$['value'][18]['display']['description']", + "$['value'][19]['display']['description']", + "$['value'][20]['display']['description']", + "$['value'][21]['display']['description']", + "$['value'][22]['display']['description']", + "$['value'][23]['display']['description']", + "$['value'][24]['display']['description']", + "$['value'][25]['display']['description']", + "$['value'][26]['display']['description']", + "$['value'][27]['display']['description']", + "$['value'][28]['display']['description']", ], "similarPaths": Array [ - "value/1/display/description", - "value/2/display/description", - "value/3/display/description", - "value/4/display/description", - "value/5/display/description", - "value/6/display/description", - "value/7/display/description", - "value/8/display/description", - "value/9/display/description", - "value/10/display/description", - "value/11/display/description", - "value/12/display/description", - "value/13/display/description", - "value/14/display/description", - "value/15/display/description", - "value/16/display/description", - "value/17/display/description", - "value/18/display/description", - "value/19/display/description", - "value/20/display/description", - "value/21/display/description", - "value/22/display/description", - "value/23/display/description", - "value/24/display/description", - "value/25/display/description", - "value/26/display/description", - "value/27/display/description", - "value/28/display/description", + "$/value/1/display/description", + "$/value/2/display/description", + "$/value/3/display/description", + "$/value/4/display/description", + "$/value/5/display/description", + "$/value/6/display/description", + "$/value/7/display/description", + "$/value/8/display/description", + "$/value/9/display/description", + "$/value/10/display/description", + "$/value/11/display/description", + "$/value/12/display/description", + "$/value/13/display/description", + "$/value/14/display/description", + "$/value/15/display/description", + "$/value/16/display/description", + "$/value/17/display/description", + "$/value/18/display/description", + "$/value/19/display/description", + "$/value/20/display/description", + "$/value/21/display/description", + "$/value/22/display/description", + "$/value/23/display/description", + "$/value/24/display/description", + "$/value/25/display/description", + "$/value/26/display/description", + "$/value/27/display/description", + "$/value/28/display/description", ], "title": "#/definitions/Operation/properties/display", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/storage/resource-manager/Microsoft.Storage/stable/2017-06-01/storage.json", @@ -123413,76 +123959,76 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Display metadata associated with the operation.", "directives": Object {}, - "jsonPath": "$.value[0].display.description", + "jsonPath": "$['value'][0]['display']['description']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/examples/OperationsList.json", "message": "Additional properties not allowed: description", "params": Array [ "description", ], - "path": "value/0/display/description", + "path": "$/value/0/display/description", "position": Object { "column": 20, "line": 600, }, "similarJsonPaths": Array [ - "$.value[1].display.description", - "$.value[2].display.description", - "$.value[3].display.description", - "$.value[4].display.description", - "$.value[5].display.description", - "$.value[6].display.description", - "$.value[7].display.description", - "$.value[8].display.description", - "$.value[9].display.description", - "$.value[10].display.description", - "$.value[11].display.description", - "$.value[12].display.description", - "$.value[13].display.description", - "$.value[14].display.description", - "$.value[15].display.description", - "$.value[16].display.description", - "$.value[17].display.description", - "$.value[18].display.description", - "$.value[19].display.description", - "$.value[20].display.description", - "$.value[21].display.description", - "$.value[22].display.description", - "$.value[23].display.description", - "$.value[24].display.description", - "$.value[25].display.description", - "$.value[26].display.description", - "$.value[27].display.description", - "$.value[28].display.description", + "$['value'][1]['display']['description']", + "$['value'][2]['display']['description']", + "$['value'][3]['display']['description']", + "$['value'][4]['display']['description']", + "$['value'][5]['display']['description']", + "$['value'][6]['display']['description']", + "$['value'][7]['display']['description']", + "$['value'][8]['display']['description']", + "$['value'][9]['display']['description']", + "$['value'][10]['display']['description']", + "$['value'][11]['display']['description']", + "$['value'][12]['display']['description']", + "$['value'][13]['display']['description']", + "$['value'][14]['display']['description']", + "$['value'][15]['display']['description']", + "$['value'][16]['display']['description']", + "$['value'][17]['display']['description']", + "$['value'][18]['display']['description']", + "$['value'][19]['display']['description']", + "$['value'][20]['display']['description']", + "$['value'][21]['display']['description']", + "$['value'][22]['display']['description']", + "$['value'][23]['display']['description']", + "$['value'][24]['display']['description']", + "$['value'][25]['display']['description']", + "$['value'][26]['display']['description']", + "$['value'][27]['display']['description']", + "$['value'][28]['display']['description']", ], "similarPaths": Array [ - "value/1/display/description", - "value/2/display/description", - "value/3/display/description", - "value/4/display/description", - "value/5/display/description", - "value/6/display/description", - "value/7/display/description", - "value/8/display/description", - "value/9/display/description", - "value/10/display/description", - "value/11/display/description", - "value/12/display/description", - "value/13/display/description", - "value/14/display/description", - "value/15/display/description", - "value/16/display/description", - "value/17/display/description", - "value/18/display/description", - "value/19/display/description", - "value/20/display/description", - "value/21/display/description", - "value/22/display/description", - "value/23/display/description", - "value/24/display/description", - "value/25/display/description", - "value/26/display/description", - "value/27/display/description", - "value/28/display/description", + "$/value/1/display/description", + "$/value/2/display/description", + "$/value/3/display/description", + "$/value/4/display/description", + "$/value/5/display/description", + "$/value/6/display/description", + "$/value/7/display/description", + "$/value/8/display/description", + "$/value/9/display/description", + "$/value/10/display/description", + "$/value/11/display/description", + "$/value/12/display/description", + "$/value/13/display/description", + "$/value/14/display/description", + "$/value/15/display/description", + "$/value/16/display/description", + "$/value/17/display/description", + "$/value/18/display/description", + "$/value/19/display/description", + "$/value/20/display/description", + "$/value/21/display/description", + "$/value/22/display/description", + "$/value/23/display/description", + "$/value/24/display/description", + "$/value/25/display/description", + "$/value/26/display/description", + "$/value/27/display/description", + "$/value/28/display/description", ], "title": "#/definitions/Operation/properties/display", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/storage/resource-manager/Microsoft.Storage/stable/2017-10-01/storage.json", @@ -123586,12 +124132,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Lease Container request schema.", "directives": Object {}, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "message": "Additional properties not allowed: properties", "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 32, "line": 971, @@ -123611,12 +124157,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Lease Container request schema.", "directives": Object {}, - "jsonPath": "$.action", + "jsonPath": "$['action']", "message": "Missing required property: action", "params": Array [ "action", ], - "path": "action", + "path": "$/action", "position": Object { "column": 32, "line": 971, @@ -123636,7 +124182,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Lease Container response schema.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "jsonPosition": Object { "column": 15, "line": 21, @@ -123646,7 +124192,7 @@ Array [ "params": Array [ "id", ], - "path": "id", + "path": "$/id", "position": Object { "column": 33, "line": 1006, @@ -123666,7 +124212,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Lease Container response schema.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "jsonPosition": Object { "column": 15, "line": 21, @@ -123676,7 +124222,7 @@ Array [ "params": Array [ "name", ], - "path": "name", + "path": "$/name", "position": Object { "column": 33, "line": 1006, @@ -123696,7 +124242,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Lease Container response schema.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "jsonPosition": Object { "column": 15, "line": 21, @@ -123706,7 +124252,7 @@ Array [ "params": Array [ "type", ], - "path": "type", + "path": "$/type", "position": Object { "column": 33, "line": 1006, @@ -123726,7 +124272,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Lease Container response schema.", "directives": Object {}, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "jsonPosition": Object { "column": 15, "line": 21, @@ -123736,7 +124282,7 @@ Array [ "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 33, "line": 1006, @@ -123756,12 +124302,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Lease Container request schema.", "directives": Object {}, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "message": "Additional properties not allowed: properties", "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 32, "line": 971, @@ -123781,12 +124327,12 @@ Array [ "code": "OBJECT_MISSING_REQUIRED_PROPERTY", "description": "Lease Container request schema.", "directives": Object {}, - "jsonPath": "$.action", + "jsonPath": "$['action']", "message": "Missing required property: action", "params": Array [ "action", ], - "path": "action", + "path": "$/action", "position": Object { "column": 32, "line": 971, @@ -123806,7 +124352,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Lease Container response schema.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "jsonPosition": Object { "column": 15, "line": 21, @@ -123816,7 +124362,7 @@ Array [ "params": Array [ "id", ], - "path": "id", + "path": "$/id", "position": Object { "column": 33, "line": 1006, @@ -123836,7 +124382,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Lease Container response schema.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "jsonPosition": Object { "column": 15, "line": 21, @@ -123846,7 +124392,7 @@ Array [ "params": Array [ "name", ], - "path": "name", + "path": "$/name", "position": Object { "column": 33, "line": 1006, @@ -123866,7 +124412,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Lease Container response schema.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "jsonPosition": Object { "column": 15, "line": 21, @@ -123876,7 +124422,7 @@ Array [ "params": Array [ "type", ], - "path": "type", + "path": "$/type", "position": Object { "column": 33, "line": 1006, @@ -123896,7 +124442,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Lease Container response schema.", "directives": Object {}, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "jsonPosition": Object { "column": 15, "line": 21, @@ -123906,7 +124452,7 @@ Array [ "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 33, "line": 1006, @@ -124272,13 +124818,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.StorageSync/storageSyncServices\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.StorageSync/storageSyncServices", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 2400, @@ -124298,13 +124844,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.StorageSync/storageSyncServices\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.StorageSync/storageSyncServices", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 2400, @@ -124324,13 +124870,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.StorageSync/storageSyncServices/syncGroups\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.StorageSync/storageSyncServices/syncGroups", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 2400, @@ -124350,13 +124896,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 2400, @@ -124376,24 +124922,24 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Restore file spec isdir", "directives": Object {}, - "jsonPath": "$.restoreFileSpec[0].isdir", + "jsonPath": "$['restoreFileSpec'][0]['isdir']", "message": "ReadOnly property \`\\"isdir\\": false\`, cannot be sent in the request.", "params": Array [ "isdir", false, ], - "path": "restoreFileSpec/0/isdir", + "path": "$/restoreFileSpec/0/isdir", "position": Object { "column": 18, "line": 2793, }, "similarJsonPaths": Array [ - "$.restoreFileSpec[2].isdir", - "$.restoreFileSpec[3].isdir", + "$['restoreFileSpec'][2]['isdir']", + "$['restoreFileSpec'][3]['isdir']", ], "similarPaths": Array [ - "restoreFileSpec/2/isdir", - "restoreFileSpec/3/isdir", + "$/restoreFileSpec/2/isdir", + "$/restoreFileSpec/3/isdir", ], "title": "#/definitions/RestoreFileSpec/properties/isdir", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/storagesync.json", @@ -124410,13 +124956,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Restore file spec isdir", "directives": Object {}, - "jsonPath": "$.restoreFileSpec[1].isdir", + "jsonPath": "$['restoreFileSpec'][1]['isdir']", "message": "ReadOnly property \`\\"isdir\\": true\`, cannot be sent in the request.", "params": Array [ "isdir", true, ], - "path": "restoreFileSpec/1/isdir", + "path": "$/restoreFileSpec/1/isdir", "position": Object { "column": 18, "line": 2793, @@ -124452,24 +124998,24 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Restore file spec isdir", "directives": Object {}, - "jsonPath": "$.restoreFileSpec[0].isdir", + "jsonPath": "$['restoreFileSpec'][0]['isdir']", "message": "ReadOnly property \`\\"isdir\\": false\`, cannot be sent in the request.", "params": Array [ "isdir", false, ], - "path": "restoreFileSpec/0/isdir", + "path": "$/restoreFileSpec/0/isdir", "position": Object { "column": 18, "line": 2793, }, "similarJsonPaths": Array [ - "$.restoreFileSpec[2].isdir", - "$.restoreFileSpec[3].isdir", + "$['restoreFileSpec'][2]['isdir']", + "$['restoreFileSpec'][3]['isdir']", ], "similarPaths": Array [ - "restoreFileSpec/2/isdir", - "restoreFileSpec/3/isdir", + "$/restoreFileSpec/2/isdir", + "$/restoreFileSpec/3/isdir", ], "title": "#/definitions/RestoreFileSpec/properties/isdir", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/storagesync/resource-manager/Microsoft.StorageSync/preview/2017-06-05-preview/storagesync.json", @@ -124486,13 +125032,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Restore file spec isdir", "directives": Object {}, - "jsonPath": "$.restoreFileSpec[1].isdir", + "jsonPath": "$['restoreFileSpec'][1]['isdir']", "message": "ReadOnly property \`\\"isdir\\": true\`, cannot be sent in the request.", "params": Array [ "isdir", true, ], - "path": "restoreFileSpec/1/isdir", + "path": "$/restoreFileSpec/1/isdir", "position": Object { "column": 18, "line": 2793, @@ -124512,13 +125058,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 2400, @@ -124538,13 +125084,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 2400, @@ -124564,13 +125110,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.StorageSync/storageSyncServices/registeredServers\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.StorageSync/storageSyncServices/registeredServers", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 2548, @@ -124590,13 +125136,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"SampleServer-prod3.redmond.corp.microsoft.com\\"\`, cannot be sent in the request.", "params": Array [ "name", "SampleServer-prod3.redmond.corp.microsoft.com", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 2543, @@ -124623,12 +125169,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The parameters used when creating a storage sync service.", "directives": Object {}, - "jsonPath": "$.properties", + "jsonPath": "$['properties']", "message": "Additional properties not allowed: properties", "params": Array [ "properties", ], - "path": "properties", + "path": "$/properties", "position": Object { "column": 43, "line": 2551, @@ -124648,12 +125194,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The parameters used when creating a storage sync service.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "Additional properties not allowed: type", "params": Array [ "type", ], - "path": "type", + "path": "$/type", "position": Object { "column": 43, "line": 2551, @@ -124673,12 +125219,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The parameters used when creating a sync group.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "Additional properties not allowed: type", "params": Array [ "type", ], - "path": "type", + "path": "$/type", "position": Object { "column": 34, "line": 2567, @@ -124698,12 +125244,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The parameters used when creating a storage sync service.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "Additional properties not allowed: type", "params": Array [ "type", ], - "path": "type", + "path": "$/type", "position": Object { "column": 38, "line": 2594, @@ -124723,12 +125269,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CloudEndpoint Properties object.", "directives": Object {}, - "jsonPath": "$.properties.provisioningState", + "jsonPath": "$['properties']['provisioningState']", "message": "Additional properties not allowed: provisioningState", "params": Array [ "provisioningState", ], - "path": "properties/provisioningState", + "path": "$/properties/provisioningState", "position": Object { "column": 48, "line": 2615, @@ -124748,7 +125294,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CloudEndpoint Properties object.", "directives": Object {}, - "jsonPath": "$.properties.storageAccount", + "jsonPath": "$['properties']['storageAccount']", "jsonPosition": Object { "column": 31, "line": 28, @@ -124758,7 +125304,7 @@ Array [ "params": Array [ "storageAccount", ], - "path": "properties/storageAccount", + "path": "$/properties/storageAccount", "position": Object { "column": 32, "line": 3328, @@ -124778,24 +125324,24 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Restore file spec isdir", "directives": Object {}, - "jsonPath": "$.restoreFileSpec[0].isdir", + "jsonPath": "$['restoreFileSpec'][0]['isdir']", "message": "ReadOnly property \`\\"isdir\\": false\`, cannot be sent in the request.", "params": Array [ "isdir", false, ], - "path": "restoreFileSpec/0/isdir", + "path": "$/restoreFileSpec/0/isdir", "position": Object { "column": 18, "line": 3070, }, "similarJsonPaths": Array [ - "$.restoreFileSpec[2].isdir", - "$.restoreFileSpec[3].isdir", + "$['restoreFileSpec'][2]['isdir']", + "$['restoreFileSpec'][3]['isdir']", ], "similarPaths": Array [ - "restoreFileSpec/2/isdir", - "restoreFileSpec/3/isdir", + "$/restoreFileSpec/2/isdir", + "$/restoreFileSpec/3/isdir", ], "title": "#/definitions/RestoreFileSpec/properties/isdir", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/storagesync.json", @@ -124812,13 +125358,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Restore file spec isdir", "directives": Object {}, - "jsonPath": "$.restoreFileSpec[1].isdir", + "jsonPath": "$['restoreFileSpec'][1]['isdir']", "message": "ReadOnly property \`\\"isdir\\": true\`, cannot be sent in the request.", "params": Array [ "isdir", true, ], - "path": "restoreFileSpec/1/isdir", + "path": "$/restoreFileSpec/1/isdir", "position": Object { "column": 18, "line": 3070, @@ -124854,24 +125400,24 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Restore file spec isdir", "directives": Object {}, - "jsonPath": "$.restoreFileSpec[0].isdir", + "jsonPath": "$['restoreFileSpec'][0]['isdir']", "message": "ReadOnly property \`\\"isdir\\": false\`, cannot be sent in the request.", "params": Array [ "isdir", false, ], - "path": "restoreFileSpec/0/isdir", + "path": "$/restoreFileSpec/0/isdir", "position": Object { "column": 18, "line": 3070, }, "similarJsonPaths": Array [ - "$.restoreFileSpec[2].isdir", - "$.restoreFileSpec[3].isdir", + "$['restoreFileSpec'][2]['isdir']", + "$['restoreFileSpec'][3]['isdir']", ], "similarPaths": Array [ - "restoreFileSpec/2/isdir", - "restoreFileSpec/3/isdir", + "$/restoreFileSpec/2/isdir", + "$/restoreFileSpec/3/isdir", ], "title": "#/definitions/RestoreFileSpec/properties/isdir", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-04-02/storagesync.json", @@ -124888,13 +125434,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Restore file spec isdir", "directives": Object {}, - "jsonPath": "$.restoreFileSpec[1].isdir", + "jsonPath": "$['restoreFileSpec'][1]['isdir']", "message": "ReadOnly property \`\\"isdir\\": true\`, cannot be sent in the request.", "params": Array [ "isdir", true, ], - "path": "restoreFileSpec/1/isdir", + "path": "$/restoreFileSpec/1/isdir", "position": Object { "column": 18, "line": 3070, @@ -124914,12 +125460,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The parameters used when creating a storage sync service.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "Additional properties not allowed: type", "params": Array [ "type", ], - "path": "type", + "path": "$/type", "position": Object { "column": 39, "line": 2632, @@ -124939,12 +125485,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "ServerEndpoint Properties object.", "directives": Object {}, - "jsonPath": "$.properties.provisioningState", + "jsonPath": "$['properties']['provisioningState']", "message": "Additional properties not allowed: provisioningState", "params": Array [ "provisioningState", ], - "path": "properties/provisioningState", + "path": "$/properties/provisioningState", "position": Object { "column": 49, "line": 2653, @@ -124985,12 +125531,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The parameters used when creating a storage sync service.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "name", + "path": "$/name", "position": Object { "column": 41, "line": 2680, @@ -125010,12 +125556,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The parameters used when creating a storage sync service.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "Additional properties not allowed: type", "params": Array [ "type", ], - "path": "type", + "path": "$/type", "position": Object { "column": 41, "line": 2680, @@ -125035,12 +125581,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "RegisteredServer Properties object.", "directives": Object {}, - "jsonPath": "$.properties.serverManagementtErrorCode", + "jsonPath": "$['properties']['serverManagementtErrorCode']", "message": "Additional properties not allowed: serverManagementtErrorCode", "params": Array [ "serverManagementtErrorCode", ], - "path": "properties/serverManagementtErrorCode", + "path": "$/properties/serverManagementtErrorCode", "position": Object { "column": 51, "line": 2701, @@ -125060,12 +125606,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "RegisteredServer Properties object.", "directives": Object {}, - "jsonPath": "$.properties.provisioningState", + "jsonPath": "$['properties']['provisioningState']", "message": "Additional properties not allowed: provisioningState", "params": Array [ "provisioningState", ], - "path": "properties/provisioningState", + "path": "$/properties/provisioningState", "position": Object { "column": 51, "line": 2701, @@ -125092,13 +125638,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.StorageSync/storageSyncServices/syncGroups\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.StorageSync/storageSyncServices/syncGroups", ], - "path": "type", + "path": "$/type", "position": Object { "column": 13, "line": 21, @@ -125118,13 +125664,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints", ], - "path": "type", + "path": "$/type", "position": Object { "column": 13, "line": 21, @@ -125144,12 +125690,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CloudEndpoint Properties object.", "directives": Object {}, - "jsonPath": "$.properties.provisioningState", + "jsonPath": "$['properties']['provisioningState']", "message": "Additional properties not allowed: provisioningState", "params": Array [ "provisioningState", ], - "path": "properties/provisioningState", + "path": "$/properties/provisioningState", "position": Object { "column": 52, "line": 2530, @@ -125169,24 +125715,24 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Restore file spec isdir", "directives": Object {}, - "jsonPath": "$.restoreFileSpec[0].isdir", + "jsonPath": "$['restoreFileSpec'][0]['isdir']", "message": "ReadOnly property \`\\"isdir\\": false\`, cannot be sent in the request.", "params": Array [ "isdir", false, ], - "path": "restoreFileSpec/0/isdir", + "path": "$/restoreFileSpec/0/isdir", "position": Object { "column": 26, "line": 2973, }, "similarJsonPaths": Array [ - "$.restoreFileSpec[2].isdir", - "$.restoreFileSpec[3].isdir", + "$['restoreFileSpec'][2]['isdir']", + "$['restoreFileSpec'][3]['isdir']", ], "similarPaths": Array [ - "restoreFileSpec/2/isdir", - "restoreFileSpec/3/isdir", + "$/restoreFileSpec/2/isdir", + "$/restoreFileSpec/3/isdir", ], "title": "#/definitions/RestoreFileSpec/properties/isdir", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/storagesync.json", @@ -125203,13 +125749,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Restore file spec isdir", "directives": Object {}, - "jsonPath": "$.restoreFileSpec[1].isdir", + "jsonPath": "$['restoreFileSpec'][1]['isdir']", "message": "ReadOnly property \`\\"isdir\\": true\`, cannot be sent in the request.", "params": Array [ "isdir", true, ], - "path": "restoreFileSpec/1/isdir", + "path": "$/restoreFileSpec/1/isdir", "position": Object { "column": 26, "line": 2973, @@ -125245,24 +125791,24 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Restore file spec isdir", "directives": Object {}, - "jsonPath": "$.restoreFileSpec[0].isdir", + "jsonPath": "$['restoreFileSpec'][0]['isdir']", "message": "ReadOnly property \`\\"isdir\\": false\`, cannot be sent in the request.", "params": Array [ "isdir", false, ], - "path": "restoreFileSpec/0/isdir", + "path": "$/restoreFileSpec/0/isdir", "position": Object { "column": 26, "line": 2973, }, "similarJsonPaths": Array [ - "$.restoreFileSpec[2].isdir", - "$.restoreFileSpec[3].isdir", + "$['restoreFileSpec'][2]['isdir']", + "$['restoreFileSpec'][3]['isdir']", ], "similarPaths": Array [ - "restoreFileSpec/2/isdir", - "restoreFileSpec/3/isdir", + "$/restoreFileSpec/2/isdir", + "$/restoreFileSpec/3/isdir", ], "title": "#/definitions/RestoreFileSpec/properties/isdir", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-07-01/storagesync.json", @@ -125279,13 +125825,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Restore file spec isdir", "directives": Object {}, - "jsonPath": "$.restoreFileSpec[1].isdir", + "jsonPath": "$['restoreFileSpec'][1]['isdir']", "message": "ReadOnly property \`\\"isdir\\": true\`, cannot be sent in the request.", "params": Array [ "isdir", true, ], - "path": "restoreFileSpec/1/isdir", + "path": "$/restoreFileSpec/1/isdir", "position": Object { "column": 26, "line": 2973, @@ -125305,13 +125851,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints", ], - "path": "type", + "path": "$/type", "position": Object { "column": 13, "line": 21, @@ -125331,12 +125877,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "ServerEndpoint Properties object.", "directives": Object {}, - "jsonPath": "$.properties.provisioningState", + "jsonPath": "$['properties']['provisioningState']", "message": "Additional properties not allowed: provisioningState", "params": Array [ "provisioningState", ], - "path": "properties/provisioningState", + "path": "$/properties/provisioningState", "position": Object { "column": 53, "line": 2561, @@ -125356,13 +125902,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.StorageSync/storageSyncServices/registeredServers\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.StorageSync/storageSyncServices/registeredServers", ], - "path": "type", + "path": "$/type", "position": Object { "column": 13, "line": 21, @@ -125381,12 +125927,12 @@ Array [ "details": Object { "code": "OBJECT_ADDITIONAL_PROPERTIES", "directives": Object {}, - "jsonPath": "$.properties.serverManagementtErrorCode", + "jsonPath": "$['properties']['serverManagementtErrorCode']", "message": "Additional properties not allowed: serverManagementtErrorCode", "params": Array [ "serverManagementtErrorCode", ], - "path": "properties/serverManagementtErrorCode", + "path": "$/properties/serverManagementtErrorCode", "position": Object { "column": 55, "line": 2618, @@ -125405,12 +125951,12 @@ Array [ "details": Object { "code": "OBJECT_ADDITIONAL_PROPERTIES", "directives": Object {}, - "jsonPath": "$.properties.provisioningState", + "jsonPath": "$['properties']['provisioningState']", "message": "Additional properties not allowed: provisioningState", "params": Array [ "provisioningState", ], - "path": "properties/provisioningState", + "path": "$/properties/provisioningState", "position": Object { "column": 55, "line": 2618, @@ -125430,13 +125976,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the resource", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"SampleServer-prod3.redmond.corp.microsoft.com\\"\`, cannot be sent in the request.", "params": Array [ "name", "SampleServer-prod3.redmond.corp.microsoft.com", ], - "path": "name", + "path": "$/name", "position": Object { "column": 13, "line": 16, @@ -125463,13 +126009,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.StorageSync/storageSyncServices/syncGroups\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.StorageSync/storageSyncServices/syncGroups", ], - "path": "type", + "path": "$/type", "position": Object { "column": 13, "line": 21, @@ -125489,13 +126035,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints", ], - "path": "type", + "path": "$/type", "position": Object { "column": 13, "line": 21, @@ -125515,12 +126061,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "CloudEndpoint Properties object.", "directives": Object {}, - "jsonPath": "$.properties.friendlyName", + "jsonPath": "$['properties']['friendlyName']", "message": "Additional properties not allowed: friendlyName", "params": Array [ "friendlyName", ], - "path": "properties/friendlyName", + "path": "$/properties/friendlyName", "position": Object { "column": 52, "line": 2530, @@ -125540,24 +126086,24 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Restore file spec isdir", "directives": Object {}, - "jsonPath": "$.restoreFileSpec[0].isdir", + "jsonPath": "$['restoreFileSpec'][0]['isdir']", "message": "ReadOnly property \`\\"isdir\\": false\`, cannot be sent in the request.", "params": Array [ "isdir", false, ], - "path": "restoreFileSpec/0/isdir", + "path": "$/restoreFileSpec/0/isdir", "position": Object { "column": 26, "line": 2981, }, "similarJsonPaths": Array [ - "$.restoreFileSpec[2].isdir", - "$.restoreFileSpec[3].isdir", + "$['restoreFileSpec'][2]['isdir']", + "$['restoreFileSpec'][3]['isdir']", ], "similarPaths": Array [ - "restoreFileSpec/2/isdir", - "restoreFileSpec/3/isdir", + "$/restoreFileSpec/2/isdir", + "$/restoreFileSpec/3/isdir", ], "title": "#/definitions/RestoreFileSpec/properties/isdir", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/storagesync.json", @@ -125574,13 +126120,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Restore file spec isdir", "directives": Object {}, - "jsonPath": "$.restoreFileSpec[1].isdir", + "jsonPath": "$['restoreFileSpec'][1]['isdir']", "message": "ReadOnly property \`\\"isdir\\": true\`, cannot be sent in the request.", "params": Array [ "isdir", true, ], - "path": "restoreFileSpec/1/isdir", + "path": "$/restoreFileSpec/1/isdir", "position": Object { "column": 26, "line": 2981, @@ -125616,24 +126162,24 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Restore file spec isdir", "directives": Object {}, - "jsonPath": "$.restoreFileSpec[0].isdir", + "jsonPath": "$['restoreFileSpec'][0]['isdir']", "message": "ReadOnly property \`\\"isdir\\": false\`, cannot be sent in the request.", "params": Array [ "isdir", false, ], - "path": "restoreFileSpec/0/isdir", + "path": "$/restoreFileSpec/0/isdir", "position": Object { "column": 26, "line": 2981, }, "similarJsonPaths": Array [ - "$.restoreFileSpec[2].isdir", - "$.restoreFileSpec[3].isdir", + "$['restoreFileSpec'][2]['isdir']", + "$['restoreFileSpec'][3]['isdir']", ], "similarPaths": Array [ - "restoreFileSpec/2/isdir", - "restoreFileSpec/3/isdir", + "$/restoreFileSpec/2/isdir", + "$/restoreFileSpec/3/isdir", ], "title": "#/definitions/RestoreFileSpec/properties/isdir", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2018-10-01/storagesync.json", @@ -125650,13 +126196,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Restore file spec isdir", "directives": Object {}, - "jsonPath": "$.restoreFileSpec[1].isdir", + "jsonPath": "$['restoreFileSpec'][1]['isdir']", "message": "ReadOnly property \`\\"isdir\\": true\`, cannot be sent in the request.", "params": Array [ "isdir", true, ], - "path": "restoreFileSpec/1/isdir", + "path": "$/restoreFileSpec/1/isdir", "position": Object { "column": 26, "line": 2981, @@ -125676,13 +126222,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.StorageSync/storageSyncServices/syncGroups/serverEndpoints", ], - "path": "type", + "path": "$/type", "position": Object { "column": 13, "line": 21, @@ -125702,13 +126248,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.StorageSync/storageSyncServices/registeredServers\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.StorageSync/storageSyncServices/registeredServers", ], - "path": "type", + "path": "$/type", "position": Object { "column": 13, "line": 21, @@ -125727,12 +126273,12 @@ Array [ "details": Object { "code": "OBJECT_ADDITIONAL_PROPERTIES", "directives": Object {}, - "jsonPath": "$.properties.serverManagementErrorCode", + "jsonPath": "$['properties']['serverManagementErrorCode']", "message": "Additional properties not allowed: serverManagementErrorCode", "params": Array [ "serverManagementErrorCode", ], - "path": "properties/serverManagementErrorCode", + "path": "$/properties/serverManagementErrorCode", "position": Object { "column": 55, "line": 2626, @@ -125752,13 +126298,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the resource", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"SampleServer-prod3.redmond.corp.microsoft.com\\"\`, cannot be sent in the request.", "params": Array [ "name", "SampleServer-prod3.redmond.corp.microsoft.com", ], - "path": "name", + "path": "$/name", "position": Object { "column": 13, "line": 16, @@ -125787,24 +126333,24 @@ Array [ "directives": Object { "R2059": ".*", }, - "jsonPath": "$.value[0].display.description", + "jsonPath": "$['value'][0]['display']['description']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/subscription/resource-manager/Microsoft.Subscription/preview/2017-11-01-preview/examples/getOperations.json", "message": "Additional properties not allowed: description", "params": Array [ "description", ], - "path": "value/0/display/description", + "path": "$/value/0/display/description", "position": Object { "column": 20, "line": 319, }, "similarJsonPaths": Array [ - "$.value[1].display.description", - "$.value[2].display.description", + "$['value'][1]['display']['description']", + "$['value'][2]['display']['description']", ], "similarPaths": Array [ - "value/1/display/description", - "value/2/display/description", + "$/value/1/display/description", + "$/value/2/display/description", ], "title": "#/definitions/Operation/properties/display", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/subscription/resource-manager/Microsoft.Subscription/preview/2017-11-01-preview/subscriptionDefinitions.json", @@ -125830,13 +126376,13 @@ Array [ "directives": Object { "R2059": ".*", }, - "jsonPath": "$.value[0].display.description", + "jsonPath": "$['value'][0]['display']['description']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/subscription/resource-manager/Microsoft.Subscription/preview/2018-03-01-preview/examples/getOperations.json", "message": "Additional properties not allowed: description", "params": Array [ "description", ], - "path": "value/0/display/description", + "path": "$/value/0/display/description", "position": Object { "column": 20, "line": 265, @@ -125869,12 +126415,12 @@ Array [ "directives": Object { "R2059": ".*", }, - "jsonPath": "$.SubscriptionName", + "jsonPath": "$['SubscriptionName']", "message": "Additional properties not allowed: SubscriptionName", "params": Array [ "SubscriptionName", ], - "path": "SubscriptionName", + "path": "$/SubscriptionName", "position": Object { "column": 25, "line": 154, @@ -125909,12 +126455,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Parameters supplied to the Update Environment operation.", "directives": Object {}, - "jsonPath": "$.sku", + "jsonPath": "$['sku']", "message": "Additional properties not allowed: sku", "params": Array [ "sku", ], - "path": "sku", + "path": "$/sku", "position": Object { "column": 36, "line": 1336, @@ -125953,13 +126499,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource. Ex- Microsoft.Network/trafficManagerProfiles.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Network/trafficManagerProfiles/externalEndpoints\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Network/trafficManagerProfiles/externalEndpoints", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1027, @@ -125979,13 +126525,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the resource", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"azsmnet7187\\"\`, cannot be sent in the request.", "params": Array [ "name", "azsmnet7187", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1022, @@ -126005,13 +126551,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Fully qualified resource Id for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/trafficManagerProfiles/{resourceName}", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1421/providers/Microsoft.Network/trafficManagerProfiles/azsmnet6386/externalEndpoints/azsmnet7187\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1421/providers/Microsoft.Network/trafficManagerProfiles/azsmnet6386/externalEndpoints/azsmnet7187", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1017, @@ -126031,13 +126577,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource. Ex- Microsoft.Network/trafficManagerProfiles.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.network/TrafficManagerProfiles/ExternalEndpoints", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1027, @@ -126057,13 +126603,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the resource", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"My external endpoint\\"\`, cannot be sent in the request.", "params": Array [ "name", "My external endpoint", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1022, @@ -126083,13 +126629,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource. Ex- Microsoft.Network/trafficManagerProfiles.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.network/TrafficManagerProfiles/ExternalEndpoints", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1027, @@ -126109,13 +126655,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the resource", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"azsmnet7187\\"\`, cannot be sent in the request.", "params": Array [ "name", "azsmnet7187", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1022, @@ -126151,13 +126697,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the resource", "directives": Object {}, - "jsonPath": "$.properties.endpoints[0].name", + "jsonPath": "$['properties']['endpoints'][0]['name']", "message": "ReadOnly property \`\\"name\\": \\"My external endpoint\\"\`, cannot be sent in the request.", "params": Array [ "name", "My external endpoint", ], - "path": "properties/endpoints/0/name", + "path": "$/properties/endpoints/0/name", "position": Object { "column": 17, "line": 1022, @@ -126177,13 +126723,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource. Ex- Microsoft.Network/trafficManagerProfiles.", "directives": Object {}, - "jsonPath": "$.properties.endpoints[0].type", + "jsonPath": "$['properties']['endpoints'][0]['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.network/TrafficManagerProfiles/ExternalEndpoints", ], - "path": "properties/endpoints/0/type", + "path": "$/properties/endpoints/0/type", "position": Object { "column": 17, "line": 1027, @@ -126226,13 +126772,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource. Ex- Microsoft.Network/trafficManagerProfiles.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Network/trafficManagerProfiles/externalEndpoints\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Network/trafficManagerProfiles/externalEndpoints", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1039, @@ -126252,13 +126798,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the resource", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"azsmnet7187\\"\`, cannot be sent in the request.", "params": Array [ "name", "azsmnet7187", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1034, @@ -126278,13 +126824,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Fully qualified resource Id for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/trafficManagerProfiles/{resourceName}", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1421/providers/Microsoft.Network/trafficManagerProfiles/azsmnet6386/externalEndpoints/azsmnet7187\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager1421/providers/Microsoft.Network/trafficManagerProfiles/azsmnet6386/externalEndpoints/azsmnet7187", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1029, @@ -126304,13 +126850,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource. Ex- Microsoft.Network/trafficManagerProfiles.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.network/TrafficManagerProfiles/ExternalEndpoints", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1039, @@ -126330,13 +126876,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the resource", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"My external endpoint\\"\`, cannot be sent in the request.", "params": Array [ "name", "My external endpoint", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1034, @@ -126356,13 +126902,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource. Ex- Microsoft.Network/trafficManagerProfiles.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.network/TrafficManagerProfiles/ExternalEndpoints", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1039, @@ -126382,13 +126928,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the resource", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"azsmnet7187\\"\`, cannot be sent in the request.", "params": Array [ "name", "azsmnet7187", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1034, @@ -126424,13 +126970,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The name of the resource", "directives": Object {}, - "jsonPath": "$.properties.endpoints[0].name", + "jsonPath": "$['properties']['endpoints'][0]['name']", "message": "ReadOnly property \`\\"name\\": \\"My external endpoint\\"\`, cannot be sent in the request.", "params": Array [ "name", "My external endpoint", ], - "path": "properties/endpoints/0/name", + "path": "$/properties/endpoints/0/name", "position": Object { "column": 17, "line": 1034, @@ -126450,13 +126996,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "The type of the resource. Ex- Microsoft.Network/trafficManagerProfiles.", "directives": Object {}, - "jsonPath": "$.properties.endpoints[0].type", + "jsonPath": "$['properties']['endpoints'][0]['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.network/TrafficManagerProfiles/ExternalEndpoints", ], - "path": "properties/endpoints/0/type", + "path": "$/properties/endpoints/0/type", "position": Object { "column": 17, "line": 1039, @@ -126499,12 +127045,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Class representing a Traffic Manager endpoint properties.", "directives": Object {}, - "jsonPath": "$.properties.trafficViewEnrollmentStatus", + "jsonPath": "$['properties']['trafficViewEnrollmentStatus']", "message": "Additional properties not allowed: trafficViewEnrollmentStatus", "params": Array [ "trafficViewEnrollmentStatus", ], - "path": "properties/trafficViewEnrollmentStatus", + "path": "$/properties/trafficViewEnrollmentStatus", "position": Object { "column": 27, "line": 803, @@ -126524,7 +127070,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Class representing a Traffic Manager endpoint properties.", "directives": Object {}, - "jsonPath": "$.properties.trafficViewEnrollmentStatus", + "jsonPath": "$['properties']['trafficViewEnrollmentStatus']", "jsonPosition": Object { "column": 23, "line": 44, @@ -126534,7 +127080,7 @@ Array [ "params": Array [ "trafficViewEnrollmentStatus", ], - "path": "properties/trafficViewEnrollmentStatus", + "path": "$/properties/trafficViewEnrollmentStatus", "position": Object { "column": 27, "line": 803, @@ -126554,7 +127100,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Class representing a Traffic Manager endpoint properties.", "directives": Object {}, - "jsonPath": "$.properties.trafficViewEnrollmentStatus", + "jsonPath": "$['properties']['trafficViewEnrollmentStatus']", "jsonPosition": Object { "column": 23, "line": 27, @@ -126564,7 +127110,7 @@ Array [ "params": Array [ "trafficViewEnrollmentStatus", ], - "path": "properties/trafficViewEnrollmentStatus", + "path": "$/properties/trafficViewEnrollmentStatus", "position": Object { "column": 27, "line": 803, @@ -126662,13 +127208,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.VisualStudio/account/project\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.VisualStudio/account/project", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1140, @@ -126688,13 +127234,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"ExampleProject\\"\`, cannot be sent in the request.", "params": Array [ "name", "ExampleProject", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1128, @@ -126714,13 +127260,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Unique identifier of the resource.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/0de7f055-dbea-498d-8e9e-da287eedca90/resourceGroups/VS-Example-Group/providers/Microsoft.VisualStudio/account/ExampleAccount/project/ExampleProject\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/0de7f055-dbea-498d-8e9e-da287eedca90/resourceGroups/VS-Example-Group/providers/Microsoft.VisualStudio/account/ExampleAccount/project/ExampleProject", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1119, @@ -126740,13 +127286,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.VisualStudio/account/extension\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.VisualStudio/account/extension", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1140, @@ -126766,13 +127312,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"ms.example\\"\`, cannot be sent in the request.", "params": Array [ "name", "ms.example", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1128, @@ -126792,13 +127338,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Unique identifier of the resource.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/0de7f055-dbea-498d-8e9e-da287eedca90/resourceGroups/VS-Example-Group/providers/microsoft.visualstudio/account/ExampleAccount/project/ExampleProject\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/0de7f055-dbea-498d-8e9e-da287eedca90/resourceGroups/VS-Example-Group/providers/microsoft.visualstudio/account/ExampleAccount/project/ExampleProject", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1119, @@ -126825,13 +127371,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.VisualStudio/account/project\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.VisualStudio/account/project", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1003, @@ -126851,13 +127397,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"ExampleProject\\"\`, cannot be sent in the request.", "params": Array [ "name", "ExampleProject", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 991, @@ -126877,13 +127423,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Unique identifier of the resource.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/0de7f055-dbea-498d-8e9e-da287eedca90/resourceGroups/VS-Example-Group/providers/Microsoft.VisualStudio/account/ExampleAccount/project/ExampleProject\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/0de7f055-dbea-498d-8e9e-da287eedca90/resourceGroups/VS-Example-Group/providers/Microsoft.VisualStudio/account/ExampleAccount/project/ExampleProject", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 982, @@ -126910,13 +127456,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a pipeline template resource.", "directives": Object {}, - "jsonPath": "$.value[0].properties", + "jsonPath": "$['value'][0]['properties']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2018-08-01-preview/examples/GetPipelineTemplates_List.json", "message": "Additional properties not allowed: properties", "params": Array [ "properties", ], - "path": "value/0/properties", + "path": "$/value/0/properties", "position": Object { "column": 25, "line": 137, @@ -126936,13 +127482,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Defines a pipeline template resource.", "directives": Object {}, - "jsonPath": "$.value[0].type", + "jsonPath": "$['value'][0]['type']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/visualstudio/resource-manager/Microsoft.VisualStudio/preview/2018-08-01-preview/examples/GetPipelineTemplates_List.json", "message": "Additional properties not allowed: type", "params": Array [ "type", ], - "path": "value/0/type", + "path": "$/value/0/type", "position": Object { "column": 25, "line": 137, @@ -126969,13 +127515,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource location.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "message": "ReadOnly property \`\\"location\\": \\"Central US\\"\`, cannot be sent in the request.", "params": Array [ "location", "Central US", ], - "path": "location", + "path": "$/location", "position": Object { "column": 21, "line": 291, @@ -126995,13 +127541,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.VisualStudio/account/project\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.VisualStudio/account/project", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 308, @@ -127021,13 +127567,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"ExampleProject\\"\`, cannot be sent in the request.", "params": Array [ "name", "ExampleProject", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 296, @@ -127047,13 +127593,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Unique identifier of the resource.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/0de7f055-dbea-498d-8e9e-da287eedca90/resourceGroups/VS-Example-Group/providers/Microsoft.VisualStudio/account/ExampleAccount/project/ExampleProject\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/0de7f055-dbea-498d-8e9e-da287eedca90/resourceGroups/VS-Example-Group/providers/Microsoft.VisualStudio/account/ExampleAccount/project/ExampleProject", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 286, @@ -127096,7 +127642,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A top level domain object.", "directives": Object {}, - "jsonPath": "$.value[8].location", + "jsonPath": "$['value'][8]['location']", "jsonPosition": Object { "column": 23, "line": 91, @@ -127106,7 +127652,7 @@ Array [ "params": Array [ "location", ], - "path": "value/8/location", + "path": "$/value/8/location", "position": Object { "column": 23, "line": 190, @@ -127126,7 +127672,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A top level domain object.", "directives": Object {}, - "jsonPath": "$.value[7].location", + "jsonPath": "$['value'][7]['location']", "jsonPosition": Object { "column": 23, "line": 81, @@ -127136,7 +127682,7 @@ Array [ "params": Array [ "location", ], - "path": "value/7/location", + "path": "$/value/7/location", "position": Object { "column": 23, "line": 190, @@ -127156,7 +127702,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A top level domain object.", "directives": Object {}, - "jsonPath": "$.value[6].location", + "jsonPath": "$['value'][6]['location']", "jsonPosition": Object { "column": 23, "line": 71, @@ -127166,7 +127712,7 @@ Array [ "params": Array [ "location", ], - "path": "value/6/location", + "path": "$/value/6/location", "position": Object { "column": 23, "line": 190, @@ -127186,7 +127732,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A top level domain object.", "directives": Object {}, - "jsonPath": "$.value[5].location", + "jsonPath": "$['value'][5]['location']", "jsonPosition": Object { "column": 23, "line": 61, @@ -127196,7 +127742,7 @@ Array [ "params": Array [ "location", ], - "path": "value/5/location", + "path": "$/value/5/location", "position": Object { "column": 23, "line": 190, @@ -127216,7 +127762,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A top level domain object.", "directives": Object {}, - "jsonPath": "$.value[4].location", + "jsonPath": "$['value'][4]['location']", "jsonPosition": Object { "column": 23, "line": 51, @@ -127226,7 +127772,7 @@ Array [ "params": Array [ "location", ], - "path": "value/4/location", + "path": "$/value/4/location", "position": Object { "column": 23, "line": 190, @@ -127246,7 +127792,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A top level domain object.", "directives": Object {}, - "jsonPath": "$.value[3].location", + "jsonPath": "$['value'][3]['location']", "jsonPosition": Object { "column": 23, "line": 41, @@ -127256,7 +127802,7 @@ Array [ "params": Array [ "location", ], - "path": "value/3/location", + "path": "$/value/3/location", "position": Object { "column": 23, "line": 190, @@ -127276,7 +127822,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A top level domain object.", "directives": Object {}, - "jsonPath": "$.value[2].location", + "jsonPath": "$['value'][2]['location']", "jsonPosition": Object { "column": 23, "line": 31, @@ -127286,7 +127832,7 @@ Array [ "params": Array [ "location", ], - "path": "value/2/location", + "path": "$/value/2/location", "position": Object { "column": 23, "line": 190, @@ -127306,7 +127852,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A top level domain object.", "directives": Object {}, - "jsonPath": "$.value[1].location", + "jsonPath": "$['value'][1]['location']", "jsonPosition": Object { "column": 23, "line": 21, @@ -127316,7 +127862,7 @@ Array [ "params": Array [ "location", ], - "path": "value/1/location", + "path": "$/value/1/location", "position": Object { "column": 23, "line": 190, @@ -127336,7 +127882,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A top level domain object.", "directives": Object {}, - "jsonPath": "$.value[0].location", + "jsonPath": "$['value'][0]['location']", "jsonPosition": Object { "column": 21, "line": 11, @@ -127346,7 +127892,7 @@ Array [ "params": Array [ "location", ], - "path": "value/0/location", + "path": "$/value/0/location", "position": Object { "column": 23, "line": 190, @@ -127366,7 +127912,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "A top level domain object.", "directives": Object {}, - "jsonPath": "$.location", + "jsonPath": "$['location']", "jsonPosition": Object { "column": 21, "line": 10, @@ -127376,7 +127922,7 @@ Array [ "params": Array [ "location", ], - "path": "location", + "path": "$/location", "position": Object { "column": 23, "line": 190, @@ -127432,14 +127978,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Certificate password.", "directives": Object {}, - "jsonPath": "$.value[1].properties.password", + "jsonPath": "$['value'][1]['properties']['password']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListCertificates.json", - "message": "Write-only property \`\\"password\\": \\"SWsSsd__233$Sdsds#%Sd!\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"password\\"\`, is not allowed in the response.", "params": Array [ "password", - "SWsSsd__233$Sdsds#%Sd!", + "", ], - "path": "value/1/properties/password", + "path": "$/value/1/properties/password", "position": Object { "column": 25, "line": 331, @@ -127459,14 +128005,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Certificate password.", "directives": Object {}, - "jsonPath": "$.value[0].properties.password", + "jsonPath": "$['value'][0]['properties']['password']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListCertificates.json", - "message": "Write-only property \`\\"password\\": \\"SWsSsd__233$Sdsds#%Sd!\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"password\\"\`, is not allowed in the response.", "params": Array [ "password", - "SWsSsd__233$Sdsds#%Sd!", + "", ], - "path": "value/0/properties/password", + "path": "$/value/0/properties/password", "position": Object { "column": 25, "line": 331, @@ -127486,14 +128032,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Certificate password.", "directives": Object {}, - "jsonPath": "$.value[1].properties.password", + "jsonPath": "$['value'][1]['properties']['password']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListCertificatesByResourceGroup.json", - "message": "Write-only property \`\\"password\\": \\"SWsSsd__233$Sdsds#%Sd!\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"password\\"\`, is not allowed in the response.", "params": Array [ "password", - "SWsSsd__233$Sdsds#%Sd!", + "", ], - "path": "value/1/properties/password", + "path": "$/value/1/properties/password", "position": Object { "column": 25, "line": 331, @@ -127513,14 +128059,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Certificate password.", "directives": Object {}, - "jsonPath": "$.value[0].properties.password", + "jsonPath": "$['value'][0]['properties']['password']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/ListCertificatesByResourceGroup.json", - "message": "Write-only property \`\\"password\\": \\"SWsSsd__233$Sdsds#%Sd!\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"password\\"\`, is not allowed in the response.", "params": Array [ "password", - "SWsSsd__233$Sdsds#%Sd!", + "", ], - "path": "value/0/properties/password", + "path": "$/value/0/properties/password", "position": Object { "column": 25, "line": 331, @@ -127540,18 +128086,18 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Certificate password.", "directives": Object {}, - "jsonPath": "$.properties.password", + "jsonPath": "$['properties']['password']", "jsonPosition": Object { "column": 33, "line": 26, }, "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/GetCertificate.json", - "message": "Write-only property \`\\"password\\": \\"SWsSsd__233$Sdsds#%Sd!\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"password\\"\`, is not allowed in the response.", "params": Array [ "password", - "SWsSsd__233$Sdsds#%Sd!", + "", ], - "path": "properties/password", + "path": "$/properties/password", "position": Object { "column": 25, "line": 331, @@ -127571,13 +128117,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Friendly name of the certificate.", "directives": Object {}, - "jsonPath": "$.properties.friendlyName", + "jsonPath": "$['properties']['friendlyName']", "message": "ReadOnly property \`\\"friendlyName\\": \\"\\"\`, cannot be sent in the request.", "params": Array [ "friendlyName", "", ], - "path": "properties/friendlyName", + "path": "$/properties/friendlyName", "position": Object { "column": 29, "line": 282, @@ -127597,13 +128143,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Subject name of the certificate.", "directives": Object {}, - "jsonPath": "$.properties.subjectName", + "jsonPath": "$['properties']['subjectName']", "message": "ReadOnly property \`\\"subjectName\\": \\"ServerCert\\"\`, cannot be sent in the request.", "params": Array [ "subjectName", "ServerCert", ], - "path": "properties/subjectName", + "path": "$/properties/subjectName", "position": Object { "column": 28, "line": 287, @@ -127623,13 +128169,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Certificate issuer.", "directives": Object {}, - "jsonPath": "$.properties.issuer", + "jsonPath": "$['properties']['issuer']", "message": "ReadOnly property \`\\"issuer\\": \\"CACert\\"\`, cannot be sent in the request.", "params": Array [ "issuer", "CACert", ], - "path": "properties/issuer", + "path": "$/properties/issuer", "position": Object { "column": 23, "line": 314, @@ -127649,13 +128195,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Certificate issue Date.", "directives": Object {}, - "jsonPath": "$.properties.issueDate", + "jsonPath": "$['properties']['issueDate']", "message": "ReadOnly property \`\\"issueDate\\": \\"2015-11-12T23:40:25+00:00\\"\`, cannot be sent in the request.", "params": Array [ "issueDate", "2015-11-12T23:40:25+00:00", ], - "path": "properties/issueDate", + "path": "$/properties/issueDate", "position": Object { "column": 26, "line": 319, @@ -127675,13 +128221,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Certificate expiration date.", "directives": Object {}, - "jsonPath": "$.properties.expirationDate", + "jsonPath": "$['properties']['expirationDate']", "message": "ReadOnly property \`\\"expirationDate\\": \\"2039-12-31T23:59:59+00:00\\"\`, cannot be sent in the request.", "params": Array [ "expirationDate", "2039-12-31T23:59:59+00:00", ], - "path": "properties/expirationDate", + "path": "$/properties/expirationDate", "position": Object { "column": 31, "line": 325, @@ -127701,13 +128247,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Certificate thumbprint.", "directives": Object {}, - "jsonPath": "$.properties.thumbprint", + "jsonPath": "$['properties']['thumbprint']", "message": "ReadOnly property \`\\"thumbprint\\": \\"FE703D7411A44163B6D32B3AD9B03E175886EBFE\\"\`, cannot be sent in the request.", "params": Array [ "thumbprint", "FE703D7411A44163B6D32B3AD9B03E175886EBFE", ], - "path": "properties/thumbprint", + "path": "$/properties/thumbprint", "position": Object { "column": 27, "line": 338, @@ -127727,13 +128273,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Web/certificates\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Web/certificates", ], - "path": "type", + "path": "$/type", "position": Object { "column": 13, "line": 1442, @@ -127753,13 +128299,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"testc6282\\"\`, cannot be sent in the request.", "params": Array [ "name", "testc6282", ], - "path": "name", + "path": "$/name", "position": Object { "column": 13, "line": 1429, @@ -127779,13 +128325,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Id.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282", ], - "path": "id", + "path": "$/id", "position": Object { "column": 11, "line": 1424, @@ -127805,18 +128351,18 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Certificate password.", "directives": Object {}, - "jsonPath": "$.properties.password", + "jsonPath": "$['properties']['password']", "jsonPosition": Object { "column": 31, "line": 44, }, "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/CreateOrUpdateCertificate.json", - "message": "Write-only property \`\\"password\\": \\"SWsSsd__233$Sdsds#%Sd!\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"password\\"\`, is not allowed in the response.", "params": Array [ "password", - "SWsSsd__233$Sdsds#%Sd!", + "", ], - "path": "properties/password", + "path": "$/properties/password", "position": Object { "column": 25, "line": 331, @@ -127836,13 +128382,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Web/certificates\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Web/certificates", ], - "path": "type", + "path": "$/type", "position": Object { "column": 13, "line": 1316, @@ -127862,13 +128408,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"testc6282\\"\`, cannot be sent in the request.", "params": Array [ "name", "testc6282", ], - "path": "name", + "path": "$/name", "position": Object { "column": 13, "line": 1307, @@ -127888,13 +128434,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Id.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282", ], - "path": "id", + "path": "$/id", "position": Object { "column": 11, "line": 1302, @@ -127914,18 +128460,18 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Certificate password.", "directives": Object {}, - "jsonPath": "$.properties.password", + "jsonPath": "$['properties']['password']", "jsonPosition": Object { "column": 31, "line": 34, }, "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-03-01/examples/PatchCertificate.json", - "message": "Write-only property \`\\"password\\": \\"SWsSsd__233$Sdsds#%Sd!\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"password\\"\`, is not allowed in the response.", "params": Array [ "password", - "SWsSsd__233$Sdsds#%Sd!", + "", ], - "path": "properties/password", + "path": "$/properties/password", "position": Object { "column": 25, "line": 331, @@ -127980,13 +128526,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource id", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Web/connectionGateways/test123\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Web/connectionGateways/test123", ], - "path": "id", + "path": "$/id", "position": Object { "column": 23, "line": 1323, @@ -128006,13 +128552,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource id", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Web/customApis/testCustomApi\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Web/customApis/testCustomApi", ], - "path": "id", + "path": "$/id", "position": Object { "column": 23, "line": 1323, @@ -128032,12 +128578,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "API Definitions", "directives": Object {}, - "jsonPath": "$.properties.apiDefinitions.swagger", + "jsonPath": "$['properties']['apiDefinitions']['swagger']", "message": "Additional properties not allowed: swagger", "params": Array [ "swagger", ], - "path": "properties/apiDefinitions/swagger", + "path": "$/properties/apiDefinitions/swagger", "position": Object { "column": 35, "line": 1570, @@ -128057,13 +128603,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource id", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Web/connections/testManagedApi-1\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Web/connections/testManagedApi-1", ], - "path": "id", + "path": "$/id", "position": Object { "column": 23, "line": 1323, @@ -128083,13 +128629,13 @@ Array [ "code": "INVALID_TYPE", "description": "Collection of resources", "directives": Object {}, - "jsonPath": "$.parameters", + "jsonPath": "$['parameters']", "message": "Expected type array but found type object", "params": Array [ "array", "object", ], - "path": "parameters", + "path": "$/parameters", "position": Object { "column": 31, "line": 1946, @@ -128124,13 +128670,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[1].properties.mdmId", + "jsonPath": "$['value'][1]['properties']['mdmId']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlans.json", "message": "Additional properties not allowed: mdmId", "params": Array [ "mdmId", ], - "path": "value/1/properties/mdmId", + "path": "$/value/1/properties/mdmId", "position": Object { "column": 19, "line": 259, @@ -128150,13 +128696,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[1].properties.kind", + "jsonPath": "$['value'][1]['properties']['kind']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlans.json", "message": "Additional properties not allowed: kind", "params": Array [ "kind", ], - "path": "value/1/properties/kind", + "path": "$/value/1/properties/kind", "position": Object { "column": 19, "line": 259, @@ -128176,13 +128722,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[1].properties.currentNumberOfWorkers", + "jsonPath": "$['value'][1]['properties']['currentNumberOfWorkers']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlans.json", "message": "Additional properties not allowed: currentNumberOfWorkers", "params": Array [ "currentNumberOfWorkers", ], - "path": "value/1/properties/currentNumberOfWorkers", + "path": "$/value/1/properties/currentNumberOfWorkers", "position": Object { "column": 19, "line": 259, @@ -128202,13 +128748,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[1].properties.currentWorkerSize", + "jsonPath": "$['value'][1]['properties']['currentWorkerSize']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlans.json", "message": "Additional properties not allowed: currentWorkerSize", "params": Array [ "currentWorkerSize", ], - "path": "value/1/properties/currentWorkerSize", + "path": "$/value/1/properties/currentWorkerSize", "position": Object { "column": 19, "line": 259, @@ -128228,13 +128774,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[1].properties.numberOfWorkers", + "jsonPath": "$['value'][1]['properties']['numberOfWorkers']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlans.json", "message": "Additional properties not allowed: numberOfWorkers", "params": Array [ "numberOfWorkers", ], - "path": "value/1/properties/numberOfWorkers", + "path": "$/value/1/properties/numberOfWorkers", "position": Object { "column": 19, "line": 259, @@ -128254,13 +128800,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[1].properties.workerSize", + "jsonPath": "$['value'][1]['properties']['workerSize']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlans.json", "message": "Additional properties not allowed: workerSize", "params": Array [ "workerSize", ], - "path": "value/1/properties/workerSize", + "path": "$/value/1/properties/workerSize", "position": Object { "column": 19, "line": 259, @@ -128280,13 +128826,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[0].properties.mdmId", + "jsonPath": "$['value'][0]['properties']['mdmId']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlans.json", "message": "Additional properties not allowed: mdmId", "params": Array [ "mdmId", ], - "path": "value/0/properties/mdmId", + "path": "$/value/0/properties/mdmId", "position": Object { "column": 19, "line": 259, @@ -128306,13 +128852,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[0].properties.kind", + "jsonPath": "$['value'][0]['properties']['kind']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlans.json", "message": "Additional properties not allowed: kind", "params": Array [ "kind", ], - "path": "value/0/properties/kind", + "path": "$/value/0/properties/kind", "position": Object { "column": 19, "line": 259, @@ -128332,13 +128878,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[0].properties.currentNumberOfWorkers", + "jsonPath": "$['value'][0]['properties']['currentNumberOfWorkers']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlans.json", "message": "Additional properties not allowed: currentNumberOfWorkers", "params": Array [ "currentNumberOfWorkers", ], - "path": "value/0/properties/currentNumberOfWorkers", + "path": "$/value/0/properties/currentNumberOfWorkers", "position": Object { "column": 19, "line": 259, @@ -128358,13 +128904,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[0].properties.currentWorkerSize", + "jsonPath": "$['value'][0]['properties']['currentWorkerSize']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlans.json", "message": "Additional properties not allowed: currentWorkerSize", "params": Array [ "currentWorkerSize", ], - "path": "value/0/properties/currentWorkerSize", + "path": "$/value/0/properties/currentWorkerSize", "position": Object { "column": 19, "line": 259, @@ -128384,13 +128930,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[0].properties.numberOfWorkers", + "jsonPath": "$['value'][0]['properties']['numberOfWorkers']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlans.json", "message": "Additional properties not allowed: numberOfWorkers", "params": Array [ "numberOfWorkers", ], - "path": "value/0/properties/numberOfWorkers", + "path": "$/value/0/properties/numberOfWorkers", "position": Object { "column": 19, "line": 259, @@ -128410,13 +128956,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[0].properties.workerSize", + "jsonPath": "$['value'][0]['properties']['workerSize']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlans.json", "message": "Additional properties not allowed: workerSize", "params": Array [ "workerSize", ], - "path": "value/0/properties/workerSize", + "path": "$/value/0/properties/workerSize", "position": Object { "column": 19, "line": 259, @@ -128436,13 +128982,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[1].properties.mdmId", + "jsonPath": "$['value'][1]['properties']['mdmId']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlansByResourceGroup.json", "message": "Additional properties not allowed: mdmId", "params": Array [ "mdmId", ], - "path": "value/1/properties/mdmId", + "path": "$/value/1/properties/mdmId", "position": Object { "column": 19, "line": 259, @@ -128462,13 +129008,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[1].properties.kind", + "jsonPath": "$['value'][1]['properties']['kind']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlansByResourceGroup.json", "message": "Additional properties not allowed: kind", "params": Array [ "kind", ], - "path": "value/1/properties/kind", + "path": "$/value/1/properties/kind", "position": Object { "column": 19, "line": 259, @@ -128488,13 +129034,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[1].properties.currentNumberOfWorkers", + "jsonPath": "$['value'][1]['properties']['currentNumberOfWorkers']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlansByResourceGroup.json", "message": "Additional properties not allowed: currentNumberOfWorkers", "params": Array [ "currentNumberOfWorkers", ], - "path": "value/1/properties/currentNumberOfWorkers", + "path": "$/value/1/properties/currentNumberOfWorkers", "position": Object { "column": 19, "line": 259, @@ -128514,13 +129060,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[1].properties.currentWorkerSize", + "jsonPath": "$['value'][1]['properties']['currentWorkerSize']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlansByResourceGroup.json", "message": "Additional properties not allowed: currentWorkerSize", "params": Array [ "currentWorkerSize", ], - "path": "value/1/properties/currentWorkerSize", + "path": "$/value/1/properties/currentWorkerSize", "position": Object { "column": 19, "line": 259, @@ -128540,13 +129086,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[1].properties.numberOfWorkers", + "jsonPath": "$['value'][1]['properties']['numberOfWorkers']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlansByResourceGroup.json", "message": "Additional properties not allowed: numberOfWorkers", "params": Array [ "numberOfWorkers", ], - "path": "value/1/properties/numberOfWorkers", + "path": "$/value/1/properties/numberOfWorkers", "position": Object { "column": 19, "line": 259, @@ -128566,13 +129112,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[1].properties.workerSize", + "jsonPath": "$['value'][1]['properties']['workerSize']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlansByResourceGroup.json", "message": "Additional properties not allowed: workerSize", "params": Array [ "workerSize", ], - "path": "value/1/properties/workerSize", + "path": "$/value/1/properties/workerSize", "position": Object { "column": 19, "line": 259, @@ -128592,13 +129138,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[0].properties.mdmId", + "jsonPath": "$['value'][0]['properties']['mdmId']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlansByResourceGroup.json", "message": "Additional properties not allowed: mdmId", "params": Array [ "mdmId", ], - "path": "value/0/properties/mdmId", + "path": "$/value/0/properties/mdmId", "position": Object { "column": 19, "line": 259, @@ -128618,13 +129164,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[0].properties.kind", + "jsonPath": "$['value'][0]['properties']['kind']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlansByResourceGroup.json", "message": "Additional properties not allowed: kind", "params": Array [ "kind", ], - "path": "value/0/properties/kind", + "path": "$/value/0/properties/kind", "position": Object { "column": 19, "line": 259, @@ -128644,13 +129190,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[0].properties.currentNumberOfWorkers", + "jsonPath": "$['value'][0]['properties']['currentNumberOfWorkers']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlansByResourceGroup.json", "message": "Additional properties not allowed: currentNumberOfWorkers", "params": Array [ "currentNumberOfWorkers", ], - "path": "value/0/properties/currentNumberOfWorkers", + "path": "$/value/0/properties/currentNumberOfWorkers", "position": Object { "column": 19, "line": 259, @@ -128670,13 +129216,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[0].properties.currentWorkerSize", + "jsonPath": "$['value'][0]['properties']['currentWorkerSize']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlansByResourceGroup.json", "message": "Additional properties not allowed: currentWorkerSize", "params": Array [ "currentWorkerSize", ], - "path": "value/0/properties/currentWorkerSize", + "path": "$/value/0/properties/currentWorkerSize", "position": Object { "column": 19, "line": 259, @@ -128696,13 +129242,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[0].properties.numberOfWorkers", + "jsonPath": "$['value'][0]['properties']['numberOfWorkers']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlansByResourceGroup.json", "message": "Additional properties not allowed: numberOfWorkers", "params": Array [ "numberOfWorkers", ], - "path": "value/0/properties/numberOfWorkers", + "path": "$/value/0/properties/numberOfWorkers", "position": Object { "column": 19, "line": 259, @@ -128722,13 +129268,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[0].properties.workerSize", + "jsonPath": "$['value'][0]['properties']['workerSize']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2016-09-01/examples/ListAppServicePlansByResourceGroup.json", "message": "Additional properties not allowed: workerSize", "params": Array [ "workerSize", ], - "path": "value/0/properties/workerSize", + "path": "$/value/0/properties/workerSize", "position": Object { "column": 19, "line": 259, @@ -128748,7 +129294,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.mdmId", + "jsonPath": "$['properties']['mdmId']", "jsonPosition": Object { "column": 31, "line": 17, @@ -128758,7 +129304,7 @@ Array [ "params": Array [ "mdmId", ], - "path": "properties/mdmId", + "path": "$/properties/mdmId", "position": Object { "column": 19, "line": 259, @@ -128778,7 +129324,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.kind", + "jsonPath": "$['properties']['kind']", "jsonPosition": Object { "column": 31, "line": 17, @@ -128788,7 +129334,7 @@ Array [ "params": Array [ "kind", ], - "path": "properties/kind", + "path": "$/properties/kind", "position": Object { "column": 19, "line": 259, @@ -128808,7 +129354,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.currentNumberOfWorkers", + "jsonPath": "$['properties']['currentNumberOfWorkers']", "jsonPosition": Object { "column": 31, "line": 17, @@ -128818,7 +129364,7 @@ Array [ "params": Array [ "currentNumberOfWorkers", ], - "path": "properties/currentNumberOfWorkers", + "path": "$/properties/currentNumberOfWorkers", "position": Object { "column": 19, "line": 259, @@ -128838,7 +129384,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.currentWorkerSize", + "jsonPath": "$['properties']['currentWorkerSize']", "jsonPosition": Object { "column": 31, "line": 17, @@ -128848,7 +129394,7 @@ Array [ "params": Array [ "currentWorkerSize", ], - "path": "properties/currentWorkerSize", + "path": "$/properties/currentWorkerSize", "position": Object { "column": 19, "line": 259, @@ -128868,7 +129414,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.numberOfWorkers", + "jsonPath": "$['properties']['numberOfWorkers']", "jsonPosition": Object { "column": 31, "line": 17, @@ -128878,7 +129424,7 @@ Array [ "params": Array [ "numberOfWorkers", ], - "path": "properties/numberOfWorkers", + "path": "$/properties/numberOfWorkers", "position": Object { "column": 19, "line": 259, @@ -128898,7 +129444,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.workerSize", + "jsonPath": "$['properties']['workerSize']", "jsonPosition": Object { "column": 31, "line": 17, @@ -128908,7 +129454,7 @@ Array [ "params": Array [ "workerSize", ], - "path": "properties/workerSize", + "path": "$/properties/workerSize", "position": Object { "column": 19, "line": 259, @@ -128928,13 +129474,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Web/serverfarms\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Web/serverfarms", ], - "path": "type", + "path": "$/type", "position": Object { "column": 13, "line": 1442, @@ -128954,13 +129500,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"testsf6141\\"\`, cannot be sent in the request.", "params": Array [ "name", "testsf6141", ], - "path": "name", + "path": "$/name", "position": Object { "column": 13, "line": 1429, @@ -128980,13 +129526,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Id.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141", ], - "path": "id", + "path": "$/id", "position": Object { "column": 11, "line": 1424, @@ -129006,7 +129552,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.mdmId", + "jsonPath": "$['properties']['mdmId']", "jsonPosition": Object { "column": 31, "line": 34, @@ -129016,7 +129562,7 @@ Array [ "params": Array [ "mdmId", ], - "path": "properties/mdmId", + "path": "$/properties/mdmId", "position": Object { "column": 19, "line": 259, @@ -129036,7 +129582,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.currentNumberOfWorkers", + "jsonPath": "$['properties']['currentNumberOfWorkers']", "jsonPosition": Object { "column": 31, "line": 34, @@ -129046,7 +129592,7 @@ Array [ "params": Array [ "currentNumberOfWorkers", ], - "path": "properties/currentNumberOfWorkers", + "path": "$/properties/currentNumberOfWorkers", "position": Object { "column": 19, "line": 259, @@ -129066,7 +129612,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.currentWorkerSize", + "jsonPath": "$['properties']['currentWorkerSize']", "jsonPosition": Object { "column": 31, "line": 34, @@ -129076,7 +129622,7 @@ Array [ "params": Array [ "currentWorkerSize", ], - "path": "properties/currentWorkerSize", + "path": "$/properties/currentWorkerSize", "position": Object { "column": 19, "line": 259, @@ -129096,7 +129642,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.numberOfWorkers", + "jsonPath": "$['properties']['numberOfWorkers']", "jsonPosition": Object { "column": 31, "line": 34, @@ -129106,7 +129652,7 @@ Array [ "params": Array [ "numberOfWorkers", ], - "path": "properties/numberOfWorkers", + "path": "$/properties/numberOfWorkers", "position": Object { "column": 19, "line": 259, @@ -129126,7 +129672,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.workerSize", + "jsonPath": "$['properties']['workerSize']", "jsonPosition": Object { "column": 31, "line": 34, @@ -129136,7 +129682,7 @@ Array [ "params": Array [ "workerSize", ], - "path": "properties/workerSize", + "path": "$/properties/workerSize", "position": Object { "column": 19, "line": 259, @@ -129156,7 +129702,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.mdmId", + "jsonPath": "$['properties']['mdmId']", "jsonPosition": Object { "column": 31, "line": 67, @@ -129166,7 +129712,7 @@ Array [ "params": Array [ "mdmId", ], - "path": "properties/mdmId", + "path": "$/properties/mdmId", "position": Object { "column": 19, "line": 259, @@ -129186,7 +129732,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.currentNumberOfWorkers", + "jsonPath": "$['properties']['currentNumberOfWorkers']", "jsonPosition": Object { "column": 31, "line": 67, @@ -129196,7 +129742,7 @@ Array [ "params": Array [ "currentNumberOfWorkers", ], - "path": "properties/currentNumberOfWorkers", + "path": "$/properties/currentNumberOfWorkers", "position": Object { "column": 19, "line": 259, @@ -129216,7 +129762,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.currentWorkerSize", + "jsonPath": "$['properties']['currentWorkerSize']", "jsonPosition": Object { "column": 31, "line": 67, @@ -129226,7 +129772,7 @@ Array [ "params": Array [ "currentWorkerSize", ], - "path": "properties/currentWorkerSize", + "path": "$/properties/currentWorkerSize", "position": Object { "column": 19, "line": 259, @@ -129246,7 +129792,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.numberOfWorkers", + "jsonPath": "$['properties']['numberOfWorkers']", "jsonPosition": Object { "column": 31, "line": 67, @@ -129256,7 +129802,7 @@ Array [ "params": Array [ "numberOfWorkers", ], - "path": "properties/numberOfWorkers", + "path": "$/properties/numberOfWorkers", "position": Object { "column": 19, "line": 259, @@ -129276,7 +129822,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.workerSize", + "jsonPath": "$['properties']['workerSize']", "jsonPosition": Object { "column": 31, "line": 67, @@ -129286,7 +129832,7 @@ Array [ "params": Array [ "workerSize", ], - "path": "properties/workerSize", + "path": "$/properties/workerSize", "position": Object { "column": 19, "line": 259, @@ -129306,7 +129852,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.mdmId", + "jsonPath": "$['properties']['mdmId']", "jsonPosition": Object { "column": 31, "line": 103, @@ -129316,7 +129862,7 @@ Array [ "params": Array [ "mdmId", ], - "path": "properties/mdmId", + "path": "$/properties/mdmId", "position": Object { "column": 19, "line": 259, @@ -129336,7 +129882,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.currentNumberOfWorkers", + "jsonPath": "$['properties']['currentNumberOfWorkers']", "jsonPosition": Object { "column": 31, "line": 103, @@ -129346,7 +129892,7 @@ Array [ "params": Array [ "currentNumberOfWorkers", ], - "path": "properties/currentNumberOfWorkers", + "path": "$/properties/currentNumberOfWorkers", "position": Object { "column": 19, "line": 259, @@ -129366,7 +129912,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.currentWorkerSize", + "jsonPath": "$['properties']['currentWorkerSize']", "jsonPosition": Object { "column": 31, "line": 103, @@ -129376,7 +129922,7 @@ Array [ "params": Array [ "currentWorkerSize", ], - "path": "properties/currentWorkerSize", + "path": "$/properties/currentWorkerSize", "position": Object { "column": 19, "line": 259, @@ -129396,7 +129942,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.numberOfWorkers", + "jsonPath": "$['properties']['numberOfWorkers']", "jsonPosition": Object { "column": 31, "line": 103, @@ -129406,7 +129952,7 @@ Array [ "params": Array [ "numberOfWorkers", ], - "path": "properties/numberOfWorkers", + "path": "$/properties/numberOfWorkers", "position": Object { "column": 19, "line": 259, @@ -129426,7 +129972,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.workerSize", + "jsonPath": "$['properties']['workerSize']", "jsonPosition": Object { "column": 31, "line": 103, @@ -129436,7 +129982,7 @@ Array [ "params": Array [ "workerSize", ], - "path": "properties/workerSize", + "path": "$/properties/workerSize", "position": Object { "column": 19, "line": 259, @@ -129456,13 +130002,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Web/serverfarms\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Web/serverfarms", ], - "path": "type", + "path": "$/type", "position": Object { "column": 13, "line": 1316, @@ -129482,13 +130028,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"testsf6141\\"\`, cannot be sent in the request.", "params": Array [ "name", "testsf6141", ], - "path": "name", + "path": "$/name", "position": Object { "column": 13, "line": 1307, @@ -129508,13 +130054,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Id.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141", ], - "path": "id", + "path": "$/id", "position": Object { "column": 11, "line": 1302, @@ -129534,7 +130080,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.mdmId", + "jsonPath": "$['properties']['mdmId']", "jsonPosition": Object { "column": 31, "line": 26, @@ -129544,7 +130090,7 @@ Array [ "params": Array [ "mdmId", ], - "path": "properties/mdmId", + "path": "$/properties/mdmId", "position": Object { "column": 19, "line": 259, @@ -129564,7 +130110,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.currentNumberOfWorkers", + "jsonPath": "$['properties']['currentNumberOfWorkers']", "jsonPosition": Object { "column": 31, "line": 26, @@ -129574,7 +130120,7 @@ Array [ "params": Array [ "currentNumberOfWorkers", ], - "path": "properties/currentNumberOfWorkers", + "path": "$/properties/currentNumberOfWorkers", "position": Object { "column": 19, "line": 259, @@ -129594,7 +130140,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.currentWorkerSize", + "jsonPath": "$['properties']['currentWorkerSize']", "jsonPosition": Object { "column": 31, "line": 26, @@ -129604,7 +130150,7 @@ Array [ "params": Array [ "currentWorkerSize", ], - "path": "properties/currentWorkerSize", + "path": "$/properties/currentWorkerSize", "position": Object { "column": 19, "line": 259, @@ -129624,7 +130170,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.numberOfWorkers", + "jsonPath": "$['properties']['numberOfWorkers']", "jsonPosition": Object { "column": 31, "line": 26, @@ -129634,7 +130180,7 @@ Array [ "params": Array [ "numberOfWorkers", ], - "path": "properties/numberOfWorkers", + "path": "$/properties/numberOfWorkers", "position": Object { "column": 19, "line": 259, @@ -129654,7 +130200,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.workerSize", + "jsonPath": "$['properties']['workerSize']", "jsonPosition": Object { "column": 31, "line": 26, @@ -129664,7 +130210,7 @@ Array [ "params": Array [ "workerSize", ], - "path": "properties/workerSize", + "path": "$/properties/workerSize", "position": Object { "column": 19, "line": 259, @@ -129684,7 +130230,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.mdmId", + "jsonPath": "$['properties']['mdmId']", "jsonPosition": Object { "column": 31, "line": 62, @@ -129694,7 +130240,7 @@ Array [ "params": Array [ "mdmId", ], - "path": "properties/mdmId", + "path": "$/properties/mdmId", "position": Object { "column": 19, "line": 259, @@ -129714,7 +130260,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.currentNumberOfWorkers", + "jsonPath": "$['properties']['currentNumberOfWorkers']", "jsonPosition": Object { "column": 31, "line": 62, @@ -129724,7 +130270,7 @@ Array [ "params": Array [ "currentNumberOfWorkers", ], - "path": "properties/currentNumberOfWorkers", + "path": "$/properties/currentNumberOfWorkers", "position": Object { "column": 19, "line": 259, @@ -129744,7 +130290,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.currentWorkerSize", + "jsonPath": "$['properties']['currentWorkerSize']", "jsonPosition": Object { "column": 31, "line": 62, @@ -129754,7 +130300,7 @@ Array [ "params": Array [ "currentWorkerSize", ], - "path": "properties/currentWorkerSize", + "path": "$/properties/currentWorkerSize", "position": Object { "column": 19, "line": 259, @@ -129774,7 +130320,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.numberOfWorkers", + "jsonPath": "$['properties']['numberOfWorkers']", "jsonPosition": Object { "column": 31, "line": 62, @@ -129784,7 +130330,7 @@ Array [ "params": Array [ "numberOfWorkers", ], - "path": "properties/numberOfWorkers", + "path": "$/properties/numberOfWorkers", "position": Object { "column": 19, "line": 259, @@ -129804,7 +130350,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.workerSize", + "jsonPath": "$['properties']['workerSize']", "jsonPosition": Object { "column": 31, "line": 62, @@ -129814,7 +130360,7 @@ Array [ "params": Array [ "workerSize", ], - "path": "properties/workerSize", + "path": "$/properties/workerSize", "position": Object { "column": 19, "line": 259, @@ -129841,7 +130387,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Collection of Inbound Environment Endpoints", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "jsonPosition": Object { "column": 21, "line": 10, @@ -129851,7 +130397,7 @@ Array [ "params": Array [ "id", ], - "path": "id", + "path": "$/id", "position": Object { "column": 45, "line": 2345, @@ -129871,7 +130417,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Collection of Outbound Environment Endpoints", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "jsonPosition": Object { "column": 21, "line": 10, @@ -129881,7 +130427,7 @@ Array [ "params": Array [ "id", ], - "path": "id", + "path": "$/id", "position": Object { "column": 46, "line": 2437, @@ -129908,13 +130454,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[1].properties.mdmId", + "jsonPath": "$['value'][1]['properties']['mdmId']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlans.json", "message": "Additional properties not allowed: mdmId", "params": Array [ "mdmId", ], - "path": "value/1/properties/mdmId", + "path": "$/value/1/properties/mdmId", "position": Object { "column": 23, "line": 277, @@ -129934,13 +130480,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[1].properties.kind", + "jsonPath": "$['value'][1]['properties']['kind']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlans.json", "message": "Additional properties not allowed: kind", "params": Array [ "kind", ], - "path": "value/1/properties/kind", + "path": "$/value/1/properties/kind", "position": Object { "column": 23, "line": 277, @@ -129960,13 +130506,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[1].properties.currentNumberOfWorkers", + "jsonPath": "$['value'][1]['properties']['currentNumberOfWorkers']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlans.json", "message": "Additional properties not allowed: currentNumberOfWorkers", "params": Array [ "currentNumberOfWorkers", ], - "path": "value/1/properties/currentNumberOfWorkers", + "path": "$/value/1/properties/currentNumberOfWorkers", "position": Object { "column": 23, "line": 277, @@ -129986,13 +130532,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[1].properties.currentWorkerSize", + "jsonPath": "$['value'][1]['properties']['currentWorkerSize']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlans.json", "message": "Additional properties not allowed: currentWorkerSize", "params": Array [ "currentWorkerSize", ], - "path": "value/1/properties/currentWorkerSize", + "path": "$/value/1/properties/currentWorkerSize", "position": Object { "column": 23, "line": 277, @@ -130012,13 +130558,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[1].properties.numberOfWorkers", + "jsonPath": "$['value'][1]['properties']['numberOfWorkers']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlans.json", "message": "Additional properties not allowed: numberOfWorkers", "params": Array [ "numberOfWorkers", ], - "path": "value/1/properties/numberOfWorkers", + "path": "$/value/1/properties/numberOfWorkers", "position": Object { "column": 23, "line": 277, @@ -130038,13 +130584,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[1].properties.workerSize", + "jsonPath": "$['value'][1]['properties']['workerSize']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlans.json", "message": "Additional properties not allowed: workerSize", "params": Array [ "workerSize", ], - "path": "value/1/properties/workerSize", + "path": "$/value/1/properties/workerSize", "position": Object { "column": 23, "line": 277, @@ -130064,13 +130610,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[1].properties.name", + "jsonPath": "$['value'][1]['properties']['name']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlans.json", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "value/1/properties/name", + "path": "$/value/1/properties/name", "position": Object { "column": 23, "line": 277, @@ -130090,13 +130636,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[0].properties.mdmId", + "jsonPath": "$['value'][0]['properties']['mdmId']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlans.json", "message": "Additional properties not allowed: mdmId", "params": Array [ "mdmId", ], - "path": "value/0/properties/mdmId", + "path": "$/value/0/properties/mdmId", "position": Object { "column": 23, "line": 277, @@ -130116,13 +130662,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[0].properties.kind", + "jsonPath": "$['value'][0]['properties']['kind']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlans.json", "message": "Additional properties not allowed: kind", "params": Array [ "kind", ], - "path": "value/0/properties/kind", + "path": "$/value/0/properties/kind", "position": Object { "column": 23, "line": 277, @@ -130142,13 +130688,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[0].properties.currentNumberOfWorkers", + "jsonPath": "$['value'][0]['properties']['currentNumberOfWorkers']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlans.json", "message": "Additional properties not allowed: currentNumberOfWorkers", "params": Array [ "currentNumberOfWorkers", ], - "path": "value/0/properties/currentNumberOfWorkers", + "path": "$/value/0/properties/currentNumberOfWorkers", "position": Object { "column": 23, "line": 277, @@ -130168,13 +130714,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[0].properties.currentWorkerSize", + "jsonPath": "$['value'][0]['properties']['currentWorkerSize']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlans.json", "message": "Additional properties not allowed: currentWorkerSize", "params": Array [ "currentWorkerSize", ], - "path": "value/0/properties/currentWorkerSize", + "path": "$/value/0/properties/currentWorkerSize", "position": Object { "column": 23, "line": 277, @@ -130194,13 +130740,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[0].properties.numberOfWorkers", + "jsonPath": "$['value'][0]['properties']['numberOfWorkers']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlans.json", "message": "Additional properties not allowed: numberOfWorkers", "params": Array [ "numberOfWorkers", ], - "path": "value/0/properties/numberOfWorkers", + "path": "$/value/0/properties/numberOfWorkers", "position": Object { "column": 23, "line": 277, @@ -130220,13 +130766,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[0].properties.workerSize", + "jsonPath": "$['value'][0]['properties']['workerSize']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlans.json", "message": "Additional properties not allowed: workerSize", "params": Array [ "workerSize", ], - "path": "value/0/properties/workerSize", + "path": "$/value/0/properties/workerSize", "position": Object { "column": 23, "line": 277, @@ -130246,13 +130792,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[0].properties.name", + "jsonPath": "$['value'][0]['properties']['name']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlans.json", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "value/0/properties/name", + "path": "$/value/0/properties/name", "position": Object { "column": 23, "line": 277, @@ -130272,13 +130818,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[1].properties.mdmId", + "jsonPath": "$['value'][1]['properties']['mdmId']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlansByResourceGroup.json", "message": "Additional properties not allowed: mdmId", "params": Array [ "mdmId", ], - "path": "value/1/properties/mdmId", + "path": "$/value/1/properties/mdmId", "position": Object { "column": 23, "line": 277, @@ -130298,13 +130844,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[1].properties.kind", + "jsonPath": "$['value'][1]['properties']['kind']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlansByResourceGroup.json", "message": "Additional properties not allowed: kind", "params": Array [ "kind", ], - "path": "value/1/properties/kind", + "path": "$/value/1/properties/kind", "position": Object { "column": 23, "line": 277, @@ -130324,13 +130870,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[1].properties.currentNumberOfWorkers", + "jsonPath": "$['value'][1]['properties']['currentNumberOfWorkers']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlansByResourceGroup.json", "message": "Additional properties not allowed: currentNumberOfWorkers", "params": Array [ "currentNumberOfWorkers", ], - "path": "value/1/properties/currentNumberOfWorkers", + "path": "$/value/1/properties/currentNumberOfWorkers", "position": Object { "column": 23, "line": 277, @@ -130350,13 +130896,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[1].properties.currentWorkerSize", + "jsonPath": "$['value'][1]['properties']['currentWorkerSize']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlansByResourceGroup.json", "message": "Additional properties not allowed: currentWorkerSize", "params": Array [ "currentWorkerSize", ], - "path": "value/1/properties/currentWorkerSize", + "path": "$/value/1/properties/currentWorkerSize", "position": Object { "column": 23, "line": 277, @@ -130376,13 +130922,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[1].properties.numberOfWorkers", + "jsonPath": "$['value'][1]['properties']['numberOfWorkers']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlansByResourceGroup.json", "message": "Additional properties not allowed: numberOfWorkers", "params": Array [ "numberOfWorkers", ], - "path": "value/1/properties/numberOfWorkers", + "path": "$/value/1/properties/numberOfWorkers", "position": Object { "column": 23, "line": 277, @@ -130402,13 +130948,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[1].properties.workerSize", + "jsonPath": "$['value'][1]['properties']['workerSize']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlansByResourceGroup.json", "message": "Additional properties not allowed: workerSize", "params": Array [ "workerSize", ], - "path": "value/1/properties/workerSize", + "path": "$/value/1/properties/workerSize", "position": Object { "column": 23, "line": 277, @@ -130428,13 +130974,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[1].properties.name", + "jsonPath": "$['value'][1]['properties']['name']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlansByResourceGroup.json", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "value/1/properties/name", + "path": "$/value/1/properties/name", "position": Object { "column": 23, "line": 277, @@ -130454,13 +131000,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[0].properties.mdmId", + "jsonPath": "$['value'][0]['properties']['mdmId']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlansByResourceGroup.json", "message": "Additional properties not allowed: mdmId", "params": Array [ "mdmId", ], - "path": "value/0/properties/mdmId", + "path": "$/value/0/properties/mdmId", "position": Object { "column": 23, "line": 277, @@ -130480,13 +131026,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[0].properties.kind", + "jsonPath": "$['value'][0]['properties']['kind']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlansByResourceGroup.json", "message": "Additional properties not allowed: kind", "params": Array [ "kind", ], - "path": "value/0/properties/kind", + "path": "$/value/0/properties/kind", "position": Object { "column": 23, "line": 277, @@ -130506,13 +131052,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[0].properties.currentNumberOfWorkers", + "jsonPath": "$['value'][0]['properties']['currentNumberOfWorkers']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlansByResourceGroup.json", "message": "Additional properties not allowed: currentNumberOfWorkers", "params": Array [ "currentNumberOfWorkers", ], - "path": "value/0/properties/currentNumberOfWorkers", + "path": "$/value/0/properties/currentNumberOfWorkers", "position": Object { "column": 23, "line": 277, @@ -130532,13 +131078,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[0].properties.currentWorkerSize", + "jsonPath": "$['value'][0]['properties']['currentWorkerSize']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlansByResourceGroup.json", "message": "Additional properties not allowed: currentWorkerSize", "params": Array [ "currentWorkerSize", ], - "path": "value/0/properties/currentWorkerSize", + "path": "$/value/0/properties/currentWorkerSize", "position": Object { "column": 23, "line": 277, @@ -130558,13 +131104,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[0].properties.numberOfWorkers", + "jsonPath": "$['value'][0]['properties']['numberOfWorkers']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlansByResourceGroup.json", "message": "Additional properties not allowed: numberOfWorkers", "params": Array [ "numberOfWorkers", ], - "path": "value/0/properties/numberOfWorkers", + "path": "$/value/0/properties/numberOfWorkers", "position": Object { "column": 23, "line": 277, @@ -130584,13 +131130,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[0].properties.workerSize", + "jsonPath": "$['value'][0]['properties']['workerSize']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlansByResourceGroup.json", "message": "Additional properties not allowed: workerSize", "params": Array [ "workerSize", ], - "path": "value/0/properties/workerSize", + "path": "$/value/0/properties/workerSize", "position": Object { "column": 23, "line": 277, @@ -130610,13 +131156,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.value[0].properties.name", + "jsonPath": "$['value'][0]['properties']['name']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListAppServicePlansByResourceGroup.json", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "value/0/properties/name", + "path": "$/value/0/properties/name", "position": Object { "column": 23, "line": 277, @@ -130636,7 +131182,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.mdmId", + "jsonPath": "$['properties']['mdmId']", "jsonPosition": Object { "column": 31, "line": 17, @@ -130646,7 +131192,7 @@ Array [ "params": Array [ "mdmId", ], - "path": "properties/mdmId", + "path": "$/properties/mdmId", "position": Object { "column": 23, "line": 277, @@ -130666,7 +131212,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.kind", + "jsonPath": "$['properties']['kind']", "jsonPosition": Object { "column": 31, "line": 17, @@ -130676,7 +131222,7 @@ Array [ "params": Array [ "kind", ], - "path": "properties/kind", + "path": "$/properties/kind", "position": Object { "column": 23, "line": 277, @@ -130696,7 +131242,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.currentNumberOfWorkers", + "jsonPath": "$['properties']['currentNumberOfWorkers']", "jsonPosition": Object { "column": 31, "line": 17, @@ -130706,7 +131252,7 @@ Array [ "params": Array [ "currentNumberOfWorkers", ], - "path": "properties/currentNumberOfWorkers", + "path": "$/properties/currentNumberOfWorkers", "position": Object { "column": 23, "line": 277, @@ -130726,7 +131272,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.currentWorkerSize", + "jsonPath": "$['properties']['currentWorkerSize']", "jsonPosition": Object { "column": 31, "line": 17, @@ -130736,7 +131282,7 @@ Array [ "params": Array [ "currentWorkerSize", ], - "path": "properties/currentWorkerSize", + "path": "$/properties/currentWorkerSize", "position": Object { "column": 23, "line": 277, @@ -130756,7 +131302,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.numberOfWorkers", + "jsonPath": "$['properties']['numberOfWorkers']", "jsonPosition": Object { "column": 31, "line": 17, @@ -130766,7 +131312,7 @@ Array [ "params": Array [ "numberOfWorkers", ], - "path": "properties/numberOfWorkers", + "path": "$/properties/numberOfWorkers", "position": Object { "column": 23, "line": 277, @@ -130786,7 +131332,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.workerSize", + "jsonPath": "$['properties']['workerSize']", "jsonPosition": Object { "column": 31, "line": 17, @@ -130796,7 +131342,7 @@ Array [ "params": Array [ "workerSize", ], - "path": "properties/workerSize", + "path": "$/properties/workerSize", "position": Object { "column": 23, "line": 277, @@ -130816,7 +131362,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.name", + "jsonPath": "$['properties']['name']", "jsonPosition": Object { "column": 31, "line": 17, @@ -130826,7 +131372,7 @@ Array [ "params": Array [ "name", ], - "path": "properties/name", + "path": "$/properties/name", "position": Object { "column": 23, "line": 277, @@ -130846,12 +131392,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.name", + "jsonPath": "$['properties']['name']", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "properties/name", + "path": "$/properties/name", "position": Object { "column": 23, "line": 277, @@ -130871,13 +131417,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Web/serverfarms\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Web/serverfarms", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1676, @@ -130897,13 +131443,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"testsf6141\\"\`, cannot be sent in the request.", "params": Array [ "name", "testsf6141", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1663, @@ -130923,13 +131469,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Id.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1658, @@ -130949,7 +131495,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.mdmId", + "jsonPath": "$['properties']['mdmId']", "jsonPosition": Object { "column": 31, "line": 34, @@ -130959,7 +131505,7 @@ Array [ "params": Array [ "mdmId", ], - "path": "properties/mdmId", + "path": "$/properties/mdmId", "position": Object { "column": 23, "line": 277, @@ -130979,7 +131525,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.currentNumberOfWorkers", + "jsonPath": "$['properties']['currentNumberOfWorkers']", "jsonPosition": Object { "column": 31, "line": 34, @@ -130989,7 +131535,7 @@ Array [ "params": Array [ "currentNumberOfWorkers", ], - "path": "properties/currentNumberOfWorkers", + "path": "$/properties/currentNumberOfWorkers", "position": Object { "column": 23, "line": 277, @@ -131009,7 +131555,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.currentWorkerSize", + "jsonPath": "$['properties']['currentWorkerSize']", "jsonPosition": Object { "column": 31, "line": 34, @@ -131019,7 +131565,7 @@ Array [ "params": Array [ "currentWorkerSize", ], - "path": "properties/currentWorkerSize", + "path": "$/properties/currentWorkerSize", "position": Object { "column": 23, "line": 277, @@ -131039,7 +131585,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.numberOfWorkers", + "jsonPath": "$['properties']['numberOfWorkers']", "jsonPosition": Object { "column": 31, "line": 34, @@ -131049,7 +131595,7 @@ Array [ "params": Array [ "numberOfWorkers", ], - "path": "properties/numberOfWorkers", + "path": "$/properties/numberOfWorkers", "position": Object { "column": 23, "line": 277, @@ -131069,7 +131615,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.workerSize", + "jsonPath": "$['properties']['workerSize']", "jsonPosition": Object { "column": 31, "line": 34, @@ -131079,7 +131625,7 @@ Array [ "params": Array [ "workerSize", ], - "path": "properties/workerSize", + "path": "$/properties/workerSize", "position": Object { "column": 23, "line": 277, @@ -131099,7 +131645,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.name", + "jsonPath": "$['properties']['name']", "jsonPosition": Object { "column": 31, "line": 34, @@ -131109,7 +131655,7 @@ Array [ "params": Array [ "name", ], - "path": "properties/name", + "path": "$/properties/name", "position": Object { "column": 23, "line": 277, @@ -131129,7 +131675,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.mdmId", + "jsonPath": "$['properties']['mdmId']", "jsonPosition": Object { "column": 31, "line": 67, @@ -131139,7 +131685,7 @@ Array [ "params": Array [ "mdmId", ], - "path": "properties/mdmId", + "path": "$/properties/mdmId", "position": Object { "column": 23, "line": 277, @@ -131159,7 +131705,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.currentNumberOfWorkers", + "jsonPath": "$['properties']['currentNumberOfWorkers']", "jsonPosition": Object { "column": 31, "line": 67, @@ -131169,7 +131715,7 @@ Array [ "params": Array [ "currentNumberOfWorkers", ], - "path": "properties/currentNumberOfWorkers", + "path": "$/properties/currentNumberOfWorkers", "position": Object { "column": 23, "line": 277, @@ -131189,7 +131735,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.currentWorkerSize", + "jsonPath": "$['properties']['currentWorkerSize']", "jsonPosition": Object { "column": 31, "line": 67, @@ -131199,7 +131745,7 @@ Array [ "params": Array [ "currentWorkerSize", ], - "path": "properties/currentWorkerSize", + "path": "$/properties/currentWorkerSize", "position": Object { "column": 23, "line": 277, @@ -131219,7 +131765,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.numberOfWorkers", + "jsonPath": "$['properties']['numberOfWorkers']", "jsonPosition": Object { "column": 31, "line": 67, @@ -131229,7 +131775,7 @@ Array [ "params": Array [ "numberOfWorkers", ], - "path": "properties/numberOfWorkers", + "path": "$/properties/numberOfWorkers", "position": Object { "column": 23, "line": 277, @@ -131249,7 +131795,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.workerSize", + "jsonPath": "$['properties']['workerSize']", "jsonPosition": Object { "column": 31, "line": 67, @@ -131259,7 +131805,7 @@ Array [ "params": Array [ "workerSize", ], - "path": "properties/workerSize", + "path": "$/properties/workerSize", "position": Object { "column": 23, "line": 277, @@ -131279,7 +131825,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.name", + "jsonPath": "$['properties']['name']", "jsonPosition": Object { "column": 31, "line": 67, @@ -131289,7 +131835,7 @@ Array [ "params": Array [ "name", ], - "path": "properties/name", + "path": "$/properties/name", "position": Object { "column": 23, "line": 277, @@ -131309,7 +131855,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.mdmId", + "jsonPath": "$['properties']['mdmId']", "jsonPosition": Object { "column": 31, "line": 103, @@ -131319,7 +131865,7 @@ Array [ "params": Array [ "mdmId", ], - "path": "properties/mdmId", + "path": "$/properties/mdmId", "position": Object { "column": 23, "line": 277, @@ -131339,7 +131885,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.currentNumberOfWorkers", + "jsonPath": "$['properties']['currentNumberOfWorkers']", "jsonPosition": Object { "column": 31, "line": 103, @@ -131349,7 +131895,7 @@ Array [ "params": Array [ "currentNumberOfWorkers", ], - "path": "properties/currentNumberOfWorkers", + "path": "$/properties/currentNumberOfWorkers", "position": Object { "column": 23, "line": 277, @@ -131369,7 +131915,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.currentWorkerSize", + "jsonPath": "$['properties']['currentWorkerSize']", "jsonPosition": Object { "column": 31, "line": 103, @@ -131379,7 +131925,7 @@ Array [ "params": Array [ "currentWorkerSize", ], - "path": "properties/currentWorkerSize", + "path": "$/properties/currentWorkerSize", "position": Object { "column": 23, "line": 277, @@ -131399,7 +131945,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.numberOfWorkers", + "jsonPath": "$['properties']['numberOfWorkers']", "jsonPosition": Object { "column": 31, "line": 103, @@ -131409,7 +131955,7 @@ Array [ "params": Array [ "numberOfWorkers", ], - "path": "properties/numberOfWorkers", + "path": "$/properties/numberOfWorkers", "position": Object { "column": 23, "line": 277, @@ -131429,7 +131975,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.workerSize", + "jsonPath": "$['properties']['workerSize']", "jsonPosition": Object { "column": 31, "line": 103, @@ -131439,7 +131985,7 @@ Array [ "params": Array [ "workerSize", ], - "path": "properties/workerSize", + "path": "$/properties/workerSize", "position": Object { "column": 23, "line": 277, @@ -131459,7 +132005,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.name", + "jsonPath": "$['properties']['name']", "jsonPosition": Object { "column": 31, "line": 103, @@ -131469,7 +132015,7 @@ Array [ "params": Array [ "name", ], - "path": "properties/name", + "path": "$/properties/name", "position": Object { "column": 23, "line": 277, @@ -131489,12 +132035,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlanPatchResource resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.name", + "jsonPath": "$['properties']['name']", "message": "Additional properties not allowed: name", "params": Array [ "name", ], - "path": "properties/name", + "path": "$/properties/name", "position": Object { "column": 23, "line": 1511, @@ -131514,13 +132060,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Web/serverfarms\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Web/serverfarms", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1550, @@ -131540,13 +132086,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"testsf6141\\"\`, cannot be sent in the request.", "params": Array [ "name", "testsf6141", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1541, @@ -131566,13 +132112,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Id.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/serverfarms/testsf6141", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1536, @@ -131592,7 +132138,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.mdmId", + "jsonPath": "$['properties']['mdmId']", "jsonPosition": Object { "column": 31, "line": 26, @@ -131602,7 +132148,7 @@ Array [ "params": Array [ "mdmId", ], - "path": "properties/mdmId", + "path": "$/properties/mdmId", "position": Object { "column": 23, "line": 277, @@ -131622,7 +132168,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.currentNumberOfWorkers", + "jsonPath": "$['properties']['currentNumberOfWorkers']", "jsonPosition": Object { "column": 31, "line": 26, @@ -131632,7 +132178,7 @@ Array [ "params": Array [ "currentNumberOfWorkers", ], - "path": "properties/currentNumberOfWorkers", + "path": "$/properties/currentNumberOfWorkers", "position": Object { "column": 23, "line": 277, @@ -131652,7 +132198,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.currentWorkerSize", + "jsonPath": "$['properties']['currentWorkerSize']", "jsonPosition": Object { "column": 31, "line": 26, @@ -131662,7 +132208,7 @@ Array [ "params": Array [ "currentWorkerSize", ], - "path": "properties/currentWorkerSize", + "path": "$/properties/currentWorkerSize", "position": Object { "column": 23, "line": 277, @@ -131682,7 +132228,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.numberOfWorkers", + "jsonPath": "$['properties']['numberOfWorkers']", "jsonPosition": Object { "column": 31, "line": 26, @@ -131692,7 +132238,7 @@ Array [ "params": Array [ "numberOfWorkers", ], - "path": "properties/numberOfWorkers", + "path": "$/properties/numberOfWorkers", "position": Object { "column": 23, "line": 277, @@ -131712,7 +132258,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.workerSize", + "jsonPath": "$['properties']['workerSize']", "jsonPosition": Object { "column": 31, "line": 26, @@ -131722,7 +132268,7 @@ Array [ "params": Array [ "workerSize", ], - "path": "properties/workerSize", + "path": "$/properties/workerSize", "position": Object { "column": 23, "line": 277, @@ -131742,7 +132288,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.name", + "jsonPath": "$['properties']['name']", "jsonPosition": Object { "column": 31, "line": 26, @@ -131752,7 +132298,7 @@ Array [ "params": Array [ "name", ], - "path": "properties/name", + "path": "$/properties/name", "position": Object { "column": 23, "line": 277, @@ -131772,7 +132318,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.mdmId", + "jsonPath": "$['properties']['mdmId']", "jsonPosition": Object { "column": 31, "line": 62, @@ -131782,7 +132328,7 @@ Array [ "params": Array [ "mdmId", ], - "path": "properties/mdmId", + "path": "$/properties/mdmId", "position": Object { "column": 23, "line": 277, @@ -131802,7 +132348,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.currentNumberOfWorkers", + "jsonPath": "$['properties']['currentNumberOfWorkers']", "jsonPosition": Object { "column": 31, "line": 62, @@ -131812,7 +132358,7 @@ Array [ "params": Array [ "currentNumberOfWorkers", ], - "path": "properties/currentNumberOfWorkers", + "path": "$/properties/currentNumberOfWorkers", "position": Object { "column": 23, "line": 277, @@ -131832,7 +132378,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.currentWorkerSize", + "jsonPath": "$['properties']['currentWorkerSize']", "jsonPosition": Object { "column": 31, "line": 62, @@ -131842,7 +132388,7 @@ Array [ "params": Array [ "currentWorkerSize", ], - "path": "properties/currentWorkerSize", + "path": "$/properties/currentWorkerSize", "position": Object { "column": 23, "line": 277, @@ -131862,7 +132408,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.numberOfWorkers", + "jsonPath": "$['properties']['numberOfWorkers']", "jsonPosition": Object { "column": 31, "line": 62, @@ -131872,7 +132418,7 @@ Array [ "params": Array [ "numberOfWorkers", ], - "path": "properties/numberOfWorkers", + "path": "$/properties/numberOfWorkers", "position": Object { "column": 23, "line": 277, @@ -131892,7 +132438,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.workerSize", + "jsonPath": "$['properties']['workerSize']", "jsonPosition": Object { "column": 31, "line": 62, @@ -131902,7 +132448,7 @@ Array [ "params": Array [ "workerSize", ], - "path": "properties/workerSize", + "path": "$/properties/workerSize", "position": Object { "column": 23, "line": 277, @@ -131922,7 +132468,7 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "AppServicePlan resource specific properties", "directives": Object {}, - "jsonPath": "$.properties.name", + "jsonPath": "$['properties']['name']", "jsonPosition": Object { "column": 31, "line": 62, @@ -131932,7 +132478,7 @@ Array [ "params": Array [ "name", ], - "path": "properties/name", + "path": "$/properties/name", "position": Object { "column": 23, "line": 277, @@ -131959,14 +132505,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Certificate password.", "directives": Object {}, - "jsonPath": "$.value[1].properties.password", + "jsonPath": "$['value'][1]['properties']['password']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListCertificates.json", - "message": "Write-only property \`\\"password\\": \\"SWsSsd__233$Sdsds#%Sd!\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"password\\"\`, is not allowed in the response.", "params": Array [ "password", - "SWsSsd__233$Sdsds#%Sd!", + "", ], - "path": "value/1/properties/password", + "path": "$/value/1/properties/password", "position": Object { "column": 25, "line": 361, @@ -131986,14 +132532,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Certificate password.", "directives": Object {}, - "jsonPath": "$.value[0].properties.password", + "jsonPath": "$['value'][0]['properties']['password']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListCertificates.json", - "message": "Write-only property \`\\"password\\": \\"SWsSsd__233$Sdsds#%Sd!\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"password\\"\`, is not allowed in the response.", "params": Array [ "password", - "SWsSsd__233$Sdsds#%Sd!", + "", ], - "path": "value/0/properties/password", + "path": "$/value/0/properties/password", "position": Object { "column": 25, "line": 361, @@ -132013,14 +132559,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Certificate password.", "directives": Object {}, - "jsonPath": "$.value[1].properties.password", + "jsonPath": "$['value'][1]['properties']['password']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListCertificatesByResourceGroup.json", - "message": "Write-only property \`\\"password\\": \\"SWsSsd__233$Sdsds#%Sd!\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"password\\"\`, is not allowed in the response.", "params": Array [ "password", - "SWsSsd__233$Sdsds#%Sd!", + "", ], - "path": "value/1/properties/password", + "path": "$/value/1/properties/password", "position": Object { "column": 25, "line": 361, @@ -132040,14 +132586,14 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Certificate password.", "directives": Object {}, - "jsonPath": "$.value[0].properties.password", + "jsonPath": "$['value'][0]['properties']['password']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/ListCertificatesByResourceGroup.json", - "message": "Write-only property \`\\"password\\": \\"SWsSsd__233$Sdsds#%Sd!\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"password\\"\`, is not allowed in the response.", "params": Array [ "password", - "SWsSsd__233$Sdsds#%Sd!", + "", ], - "path": "value/0/properties/password", + "path": "$/value/0/properties/password", "position": Object { "column": 25, "line": 361, @@ -132067,18 +132613,18 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Certificate password.", "directives": Object {}, - "jsonPath": "$.properties.password", + "jsonPath": "$['properties']['password']", "jsonPosition": Object { "column": 33, "line": 26, }, "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/GetCertificate.json", - "message": "Write-only property \`\\"password\\": \\"SWsSsd__233$Sdsds#%Sd!\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"password\\"\`, is not allowed in the response.", "params": Array [ "password", - "SWsSsd__233$Sdsds#%Sd!", + "", ], - "path": "properties/password", + "path": "$/properties/password", "position": Object { "column": 25, "line": 361, @@ -132098,13 +132644,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Friendly name of the certificate.", "directives": Object {}, - "jsonPath": "$.properties.friendlyName", + "jsonPath": "$['properties']['friendlyName']", "message": "ReadOnly property \`\\"friendlyName\\": \\"\\"\`, cannot be sent in the request.", "params": Array [ "friendlyName", "", ], - "path": "properties/friendlyName", + "path": "$/properties/friendlyName", "position": Object { "column": 29, "line": 312, @@ -132124,13 +132670,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Subject name of the certificate.", "directives": Object {}, - "jsonPath": "$.properties.subjectName", + "jsonPath": "$['properties']['subjectName']", "message": "ReadOnly property \`\\"subjectName\\": \\"ServerCert\\"\`, cannot be sent in the request.", "params": Array [ "subjectName", "ServerCert", ], - "path": "properties/subjectName", + "path": "$/properties/subjectName", "position": Object { "column": 28, "line": 317, @@ -132150,13 +132696,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Certificate issuer.", "directives": Object {}, - "jsonPath": "$.properties.issuer", + "jsonPath": "$['properties']['issuer']", "message": "ReadOnly property \`\\"issuer\\": \\"CACert\\"\`, cannot be sent in the request.", "params": Array [ "issuer", "CACert", ], - "path": "properties/issuer", + "path": "$/properties/issuer", "position": Object { "column": 23, "line": 344, @@ -132176,13 +132722,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Certificate issue Date.", "directives": Object {}, - "jsonPath": "$.properties.issueDate", + "jsonPath": "$['properties']['issueDate']", "message": "ReadOnly property \`\\"issueDate\\": \\"2015-11-12T23:40:25+00:00\\"\`, cannot be sent in the request.", "params": Array [ "issueDate", "2015-11-12T23:40:25+00:00", ], - "path": "properties/issueDate", + "path": "$/properties/issueDate", "position": Object { "column": 26, "line": 349, @@ -132202,13 +132748,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Certificate expiration date.", "directives": Object {}, - "jsonPath": "$.properties.expirationDate", + "jsonPath": "$['properties']['expirationDate']", "message": "ReadOnly property \`\\"expirationDate\\": \\"2039-12-31T23:59:59+00:00\\"\`, cannot be sent in the request.", "params": Array [ "expirationDate", "2039-12-31T23:59:59+00:00", ], - "path": "properties/expirationDate", + "path": "$/properties/expirationDate", "position": Object { "column": 31, "line": 355, @@ -132228,13 +132774,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Certificate thumbprint.", "directives": Object {}, - "jsonPath": "$.properties.thumbprint", + "jsonPath": "$['properties']['thumbprint']", "message": "ReadOnly property \`\\"thumbprint\\": \\"FE703D7411A44163B6D32B3AD9B03E175886EBFE\\"\`, cannot be sent in the request.", "params": Array [ "thumbprint", "FE703D7411A44163B6D32B3AD9B03E175886EBFE", ], - "path": "properties/thumbprint", + "path": "$/properties/thumbprint", "position": Object { "column": 27, "line": 368, @@ -132254,13 +132800,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Web/certificates\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Web/certificates", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1676, @@ -132280,13 +132826,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"testc6282\\"\`, cannot be sent in the request.", "params": Array [ "name", "testc6282", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1663, @@ -132306,13 +132852,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Id.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1658, @@ -132332,18 +132878,18 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Certificate password.", "directives": Object {}, - "jsonPath": "$.properties.password", + "jsonPath": "$['properties']['password']", "jsonPosition": Object { "column": 31, "line": 44, }, "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/CreateOrUpdateCertificate.json", - "message": "Write-only property \`\\"password\\": \\"SWsSsd__233$Sdsds#%Sd!\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"password\\"\`, is not allowed in the response.", "params": Array [ "password", - "SWsSsd__233$Sdsds#%Sd!", + "", ], - "path": "properties/password", + "path": "$/properties/password", "position": Object { "column": 25, "line": 361, @@ -132363,13 +132909,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource type.", "directives": Object {}, - "jsonPath": "$.type", + "jsonPath": "$['type']", "message": "ReadOnly property \`\\"type\\": \\"Microsoft.Web/certificates\\"\`, cannot be sent in the request.", "params": Array [ "type", "Microsoft.Web/certificates", ], - "path": "type", + "path": "$/type", "position": Object { "column": 17, "line": 1550, @@ -132389,13 +132935,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Name.", "directives": Object {}, - "jsonPath": "$.name", + "jsonPath": "$['name']", "message": "ReadOnly property \`\\"name\\": \\"testc6282\\"\`, cannot be sent in the request.", "params": Array [ "name", "testc6282", ], - "path": "name", + "path": "$/name", "position": Object { "column": 17, "line": 1541, @@ -132415,13 +132961,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Resource Id.", "directives": Object {}, - "jsonPath": "$.id", + "jsonPath": "$['id']", "message": "ReadOnly property \`\\"id\\": \\"/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282\\"\`, cannot be sent in the request.", "params": Array [ "id", "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.Web/certificates/testc6282", ], - "path": "id", + "path": "$/id", "position": Object { "column": 15, "line": 1536, @@ -132441,18 +132987,18 @@ Array [ "code": "WRITEONLY_PROPERTY_NOT_ALLOWED_IN_RESPONSE", "description": "Certificate password.", "directives": Object {}, - "jsonPath": "$.properties.password", + "jsonPath": "$['properties']['password']", "jsonPosition": Object { "column": 31, "line": 34, }, "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/PatchCertificate.json", - "message": "Write-only property \`\\"password\\": \\"SWsSsd__233$Sdsds#%Sd!\\"\`, is not allowed in the response.", + "message": "Write-only property \`\\"password\\"\`, is not allowed in the response.", "params": Array [ "password", - "SWsSsd__233$Sdsds#%Sd!", + "", ], - "path": "properties/password", + "path": "$/properties/password", "position": Object { "column": 25, "line": 361, @@ -132487,13 +133033,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Instructions for rendering the data", "directives": Object {}, - "jsonPath": "$.properties.dataset[0].renderingProperties.renderingType", + "jsonPath": "$['properties']['dataset'][0]['renderingProperties']['renderingType']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetHostingEnvironmentDetectorResponse.json", "message": "Additional properties not allowed: renderingType", "params": Array [ "renderingType", ], - "path": "properties/dataset/0/renderingProperties/renderingType", + "path": "$/properties/dataset/0/renderingProperties/renderingType", "position": Object { "column": 18, "line": 2019, @@ -132513,13 +133059,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Instructions for rendering the data", "directives": Object {}, - "jsonPath": "$.properties.dataset[0].renderingProperties.renderingType", + "jsonPath": "$['properties']['dataset'][0]['renderingProperties']['renderingType']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteDetectorResponseSlot.json", "message": "Additional properties not allowed: renderingType", "params": Array [ "renderingType", ], - "path": "properties/dataset/0/renderingProperties/renderingType", + "path": "$/properties/dataset/0/renderingProperties/renderingType", "position": Object { "column": 18, "line": 2019, @@ -132539,13 +133085,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Instructions for rendering the data", "directives": Object {}, - "jsonPath": "$.properties.dataset[0].renderingProperties.renderingType", + "jsonPath": "$['properties']['dataset'][0]['renderingProperties']['renderingType']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteDetectorResponse.json", "message": "Additional properties not allowed: renderingType", "params": Array [ "renderingType", ], - "path": "properties/dataset/0/renderingProperties/renderingType", + "path": "$/properties/dataset/0/renderingProperties/renderingType", "position": Object { "column": 18, "line": 2019, @@ -132586,13 +133132,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Instructions for rendering the data", "directives": Object {}, - "jsonPath": "$.properties.dataset[0].renderingProperties.renderingType", + "jsonPath": "$['properties']['dataset'][0]['renderingProperties']['renderingType']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteDetectorResponseSlot.json", "message": "Additional properties not allowed: renderingType", "params": Array [ "renderingType", ], - "path": "properties/dataset/0/renderingProperties/renderingType", + "path": "$/properties/dataset/0/renderingProperties/renderingType", "position": Object { "column": 18, "line": 2019, @@ -132633,13 +133179,13 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "Instructions for rendering the data", "directives": Object {}, - "jsonPath": "$.properties.dataset[0].renderingProperties.renderingType", + "jsonPath": "$['properties']['dataset'][0]['renderingProperties']['renderingType']", "jsonUrl": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/web/resource-manager/Microsoft.Web/stable/2018-02-01/examples/Diagnostics_GetSiteDetectorResponse.json", "message": "Additional properties not allowed: renderingType", "params": Array [ "renderingType", ], - "path": "properties/dataset/0/renderingProperties/renderingType", + "path": "$/properties/dataset/0/renderingProperties/renderingType", "position": Object { "column": 18, "line": 2019, @@ -132686,12 +133232,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The description of the Windows IoT Device Service.", "directives": Object {}, - "jsonPath": "$.billingDomainName", + "jsonPath": "$['billingDomainName']", "message": "Additional properties not allowed: billingDomainName", "params": Array [ "billingDomainName", ], - "path": "billingDomainName", + "path": "$/billingDomainName", "position": Object { "column": 22, "line": 434, @@ -132711,12 +133257,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The description of the Windows IoT Device Service.", "directives": Object {}, - "jsonPath": "$.adminDomainName", + "jsonPath": "$['adminDomainName']", "message": "Additional properties not allowed: adminDomainName", "params": Array [ "adminDomainName", ], - "path": "adminDomainName", + "path": "$/adminDomainName", "position": Object { "column": 22, "line": 434, @@ -132736,12 +133282,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The description of the Windows IoT Device Service.", "directives": Object {}, - "jsonPath": "$.notes", + "jsonPath": "$['notes']", "message": "Additional properties not allowed: notes", "params": Array [ "notes", ], - "path": "notes", + "path": "$/notes", "position": Object { "column": 22, "line": 434, @@ -132761,12 +133307,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The description of the Windows IoT Device Service.", "directives": Object {}, - "jsonPath": "$.quantity", + "jsonPath": "$['quantity']", "message": "Additional properties not allowed: quantity", "params": Array [ "quantity", ], - "path": "quantity", + "path": "$/quantity", "position": Object { "column": 22, "line": 434, @@ -132786,12 +133332,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The description of the Windows IoT Device Service.", "directives": Object {}, - "jsonPath": "$.notes", + "jsonPath": "$['notes']", "message": "Additional properties not allowed: notes", "params": Array [ "notes", ], - "path": "notes", + "path": "$/notes", "position": Object { "column": 22, "line": 434, @@ -132811,12 +133357,12 @@ Array [ "code": "OBJECT_ADDITIONAL_PROPERTIES", "description": "The description of the Windows IoT Device Service.", "directives": Object {}, - "jsonPath": "$.quantity", + "jsonPath": "$['quantity']", "message": "Additional properties not allowed: quantity", "params": Array [ "quantity", ], - "path": "quantity", + "path": "$/quantity", "position": Object { "column": 22, "line": 434, @@ -132843,13 +133389,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Target health state of the criteria", "directives": Object {}, - "jsonPath": "$.properties.criteria[0].healthState", + "jsonPath": "$['properties']['criteria'][0]['healthState']", "message": "ReadOnly property \`\\"healthState\\": \\"Warning\\"\`, cannot be sent in the request.", "params": Array [ "healthState", "Warning", ], - "path": "properties/criteria/0/healthState", + "path": "$/properties/criteria/0/healthState", "position": Object { "column": 24, "line": 1130, @@ -132869,22 +133415,22 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Comparison enum on threshold of this criteria", "directives": Object {}, - "jsonPath": "$.properties.criteria[0].comparisonOperator", + "jsonPath": "$['properties']['criteria'][0]['comparisonOperator']", "message": "ReadOnly property \`\\"comparisonOperator\\": \\"LessThan\\"\`, cannot be sent in the request.", "params": Array [ "comparisonOperator", "LessThan", ], - "path": "properties/criteria/0/comparisonOperator", + "path": "$/properties/criteria/0/comparisonOperator", "position": Object { "column": 31, "line": 1152, }, "similarJsonPaths": Array [ - "$.properties.criteria[1].comparisonOperator", + "$['properties']['criteria'][1]['comparisonOperator']", ], "similarPaths": Array [ - "properties/criteria/1/comparisonOperator", + "$/properties/criteria/1/comparisonOperator", ], "title": "#/definitions/MonitorCriteria/properties/comparisonOperator", "url": "/home/vsts/work/1/s/regression/azure-rest-api-specs/specification/workloadmonitor/resource-manager/Microsoft.WorkloadMonitor/preview/2018-08-31-preview/Microsoft.WorkloadMonitor.json", @@ -132901,13 +133447,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Threshold value for this criteria", "directives": Object {}, - "jsonPath": "$.properties.criteria[0].threshold", + "jsonPath": "$['properties']['criteria'][0]['threshold']", "message": "ReadOnly property \`\\"threshold\\": 2100\`, cannot be sent in the request.", "params": Array [ "threshold", 2100, ], - "path": "properties/criteria/0/threshold", + "path": "$/properties/criteria/0/threshold", "position": Object { "column": 22, "line": 1146, @@ -132927,13 +133473,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Target health state of the criteria", "directives": Object {}, - "jsonPath": "$.properties.criteria[1].healthState", + "jsonPath": "$['properties']['criteria'][1]['healthState']", "message": "ReadOnly property \`\\"healthState\\": \\"Error\\"\`, cannot be sent in the request.", "params": Array [ "healthState", "Error", ], - "path": "properties/criteria/1/healthState", + "path": "$/properties/criteria/1/healthState", "position": Object { "column": 24, "line": 1130, @@ -132953,13 +133499,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Threshold value for this criteria", "directives": Object {}, - "jsonPath": "$.properties.criteria[1].threshold", + "jsonPath": "$['properties']['criteria'][1]['threshold']", "message": "ReadOnly property \`\\"threshold\\": 1100\`, cannot be sent in the request.", "params": Array [ "threshold", 1100, ], - "path": "properties/criteria/1/threshold", + "path": "$/properties/criteria/1/threshold", "position": Object { "column": 22, "line": 1146, @@ -132979,7 +133525,7 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Collection of MonitorCriteria. For PATCH calls, instead of partial list, complete list of expected criteria should be passed for proper updating.", "directives": Object {}, - "jsonPath": "$.properties.criteria", + "jsonPath": "$['properties']['criteria']", "message": "ReadOnly property \`\\"criteria\\": [object Object],[object Object]\`, cannot be sent in the request.", "params": Array [ "criteria", @@ -132988,17 +133534,17 @@ Array [ "comparisonOperator": "LessThan", "healthState": "Warning", "threshold": 2100, - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, Object { "comparisonOperator": "LessThan", "healthState": "Error", "threshold": 1100, - Symbol(@ts-common/source-map/object-info): [Function], + Symbol(./source-map/object-info): [Function], }, ], ], - "path": "properties/criteria", + "path": "$/properties/criteria", "position": Object { "column": 21, "line": 1076, @@ -133018,13 +133564,13 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "Generates alerts or not", "directives": Object {}, - "jsonPath": "$.properties.alertGeneration", + "jsonPath": "$['properties']['alertGeneration']", "message": "ReadOnly property \`\\"alertGeneration\\": \\"Disabled\\"\`, cannot be sent in the request.", "params": Array [ "alertGeneration", "Disabled", ], - "path": "properties/alertGeneration", + "path": "$/properties/alertGeneration", "position": Object { "column": 28, "line": 1084, @@ -133044,7 +133590,7 @@ Array [ "code": "READONLY_PROPERTY_NOT_ALLOWED_IN_REQUEST", "description": "List of action group resource ids to be notified", "directives": Object {}, - "jsonPath": "$.properties.actionGroupResourceIds", + "jsonPath": "$['properties']['actionGroupResourceIds']", "message": "ReadOnly property \`\\"actionGroupResourceIds\\": /subscriptions/12c5bb75-2c2c-44b1-8d7d-cbf4d12ff5c1/resourceGroups/vgajulaRG/providers/microsoft.insights/actiongroups/wli-we\`, cannot be sent in the request.", "params": Array [ "actionGroupResourceIds", @@ -133052,7 +133598,7 @@ Array [ "/subscriptions/12c5bb75-2c2c-44b1-8d7d-cbf4d12ff5c1/resourceGroups/vgajulaRG/providers/microsoft.insights/actiongroups/wli-we", ], ], - "path": "properties/actionGroupResourceIds", + "path": "$/properties/actionGroupResourceIds", "position": Object { "column": 35, "line": 1632, diff --git a/test/__snapshots__/liveValidatorTests.ts.snap b/test/__snapshots__/liveValidatorTests.ts.snap index 5d7b8671..c2d934ac 100644 --- a/test/__snapshots__/liveValidatorTests.ts.snap +++ b/test/__snapshots__/liveValidatorTests.ts.snap @@ -46,6 +46,86 @@ Object { } `; +exports[`Live Validator Initialize cache and validate should report error in response when response code isn't correct in case of long running operation 1`] = ` +Object { + "requestValidationResult": Object { + "errors": Array [], + "isSuccessful": true, + "operationInfo": Object { + "apiVersion": "2021-01-01-privatepreview", + "operationId": "Linker_Update", + }, + "runtimeException": undefined, + }, + "responseValidationResult": Object { + "errors": Array [ + Object { + "code": "LRO_RESPONSE_CODE", + "documentationUrl": "", + "jsonPathsInPayload": Array [], + "message": "Patch/Post long running operation must return 201 or 202, Delete long running operation must return 202 or 204, Put long running operation must return 202 or 201 or 200, but 200 returned", + "pathsInPayload": Array [], + "schemaPath": "", + "severity": 0, + "source": Object { + "position": Object { + "column": 22, + "line": 300, + }, + "url": "specification/servicelinker/resource-manager/Microsoft.ServiceLinker/preview/2021-01-01-privatepreview/servicelinker.json", + }, + }, + ], + "isSuccessful": false, + "operationInfo": Object { + "apiVersion": "2021-01-01-privatepreview", + "operationId": "Linker_Update", + }, + "runtimeException": undefined, + }, +} +`; + +exports[`Live Validator Initialize cache and validate should report error when LRO header is not returned in response in case of long running operation 1`] = ` +Object { + "requestValidationResult": Object { + "errors": Array [], + "isSuccessful": true, + "operationInfo": Object { + "apiVersion": "2021-01-01-privatepreview", + "operationId": "Linker_CreateOrUpdate", + }, + "runtimeException": undefined, + }, + "responseValidationResult": Object { + "errors": Array [ + Object { + "code": "LRO_RESPONSE_HEADER", + "documentationUrl": "", + "jsonPathsInPayload": Array [], + "message": "Long running operation should return location or azure-AsyncOperation in header but not provided", + "pathsInPayload": Array [], + "schemaPath": "", + "severity": 0, + "source": Object { + "position": Object { + "column": 22, + "line": 177, + }, + "url": "specification/servicelinker/resource-manager/Microsoft.ServiceLinker/preview/2021-01-01-privatepreview/servicelinker.json", + }, + }, + ], + "isSuccessful": false, + "operationInfo": Object { + "apiVersion": "2021-01-01-privatepreview", + "operationId": "Linker_CreateOrUpdate", + }, + "runtimeException": undefined, + }, +} +`; + exports[`Live Validator Initialize cache and validate should return no errors for valid input with optional parameter body empty 1`] = ` Object { "requestValidationResult": Object { diff --git a/test/liveValidation/payloads/lro_responsecode_error_input.json b/test/liveValidation/payloads/lro_responsecode_error_input.json new file mode 100644 index 00000000..8ad64600 --- /dev/null +++ b/test/liveValidation/payloads/lro_responsecode_error_input.json @@ -0,0 +1,53 @@ +{ + "liveRequest": { + "headers": { + "strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-request-id": "97856fec-304a-4317-87f0-f04c328402d3", + "x-ms-correlation-request-id": "97856fec-304a-4317-87f0-f04c328402d3", + "date": "Tue, 11 Sep 2018 19:00:21 GMT", + "eTag": "\"AAAAAAAAQqUAAAAAAABCpw==\"", + "server": "Microsoft-HTTPAPI/2.0", + "Content-Type": "application/json" + }, + "method": "PATCH", + "url": "/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/canaryrg/providers/Microsoft.Web/sites/canarywebapp/providers/Microsoft.ServiceLinker/linkers/SpiderMan?api-version=2021-01-01-privatepreview", + "body": { + "properties": { + "targetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.DocumentDb/databaseAccounts/test-acc/mongodbDatabases/test-db", + "authInfo": { + "authType": "servicePrincipal", + "name": "name", + "id": "id" + } + } + }, + "query": { + "api-version": "2021-01-01-privatepreview" + } + }, + "liveResponse": { + "statusCode": "200", + "headers": { + "strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-request-id": "97856fec-304a-4317-87f0-f04c328402d3", + "x-ms-correlation-request-id": "97856fec-304a-4317-87f0-f04c328402d3", + "date": "Tue, 11 Sep 2018 19:00:21 GMT", + "eTag": "\"AAAAAAAAQqUAAAAAAABCpw==\"", + "server": "Microsoft-HTTPAPI/2.0", + "Content-Type": "application/json" + }, + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Web/sites/test-app/providers/Microsoft.ServiceLinker/links/linkName", + "type": "Microsoft.ServiceLinker/links", + "name": "linkName", + "properties": { + "authInfo": { + "authType": "servicePrincipal", + "name": "name", + "id": "id" + }, + "targetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.DocumentDb/databaseAccounts/test-acc/mongodbDatabases/test-db" + } + } + } +} \ No newline at end of file diff --git a/test/liveValidation/payloads/lro_responseheader_error_input.json b/test/liveValidation/payloads/lro_responseheader_error_input.json new file mode 100644 index 00000000..98b23bb2 --- /dev/null +++ b/test/liveValidation/payloads/lro_responseheader_error_input.json @@ -0,0 +1,51 @@ +{ + "liveRequest": { + "headers": { + "strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-request-id": "97856fec-304a-4317-87f0-f04c328402d3", + "x-ms-correlation-request-id": "97856fec-304a-4317-87f0-f04c328402d3", + "date": "Tue, 11 Sep 2018 19:00:21 GMT", + "eTag": "\"AAAAAAAAQqUAAAAAAABCpw==\"", + "server": "Microsoft-HTTPAPI/2.0", + "Content-Type": "application/json" + }, + "method": "PUT", + "url": "/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/canaryrg/providers/Microsoft.Web/sites/canarywebapp/providers/Microsoft.ServiceLinker/linkers/SpiderMan?api-version=2021-01-01-privatepreview", + "body": { + "properties": { + "targetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.DocumentDb/databaseAccounts/test-acc/mongodbDatabases/test-db", + "authInfo": { + "authType": "secret", + "name": "name", + "secret": "secret" + } + } + }, + "query": { + "api-version": "2021-01-01-privatepreview" + } + }, + "liveResponse": { + "statusCode": "201", + "headers": { + "strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-request-id": "97856fec-304a-4317-87f0-f04c328402d3", + "x-ms-correlation-request-id": "97856fec-304a-4317-87f0-f04c328402d3", + "date": "Tue, 11 Sep 2018 19:00:21 GMT", + "eTag": "\"AAAAAAAAQqUAAAAAAABCpw==\"", + "server": "Microsoft-HTTPAPI/2.0", + "Content-Type": "application/json" + }, + "body": { + "type": "Microsoft.ServiceLinker/links", + "name": "linkName", + "properties": { + "authInfo": { + "authType": "secret", + "name": "name" + }, + "targetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.DocumentDb/databaseAccounts/test-acc/mongodbDatabases/test-db" + } + } + } +} \ No newline at end of file diff --git a/test/liveValidatorTests.ts b/test/liveValidatorTests.ts index 2c9d0413..54e05735 100644 --- a/test/liveValidatorTests.ts +++ b/test/liveValidatorTests.ts @@ -738,6 +738,49 @@ describe("Live Validator", () => { expect(validationResult).toMatchSnapshot(); }); + it(`should report error in response when response code isn't correct in case of long running operation`, async () => { + const options = { + directory: `${__dirname}/liveValidation/swaggers/`, + isPathCaseSensitive: false, + useRelativeSourceLocationUrl: true, + swaggerPathsPattern: [ + "specification\\servicelinker\\resource-manager\\Microsoft.ServiceLinker\\**\\*.json", + ], + git: { + shouldClone: false, + }, + isArmCall: true, + }; + const liveValidator = new LiveValidator(options); + await liveValidator.initialize(); + const payload = require(`${__dirname}/liveValidation/payloads/lro_responsecode_error_input.json`); + const validationResult = await liveValidator.validateLiveRequestResponse(payload, { + isArmCall: true, + }); + expect(validationResult).toMatchSnapshot(); + }); + + it(`should report error when LRO header is not returned in response in case of long running operation`, async () => { + const options = { + directory: `${__dirname}/liveValidation/swaggers/`, + isPathCaseSensitive: false, + useRelativeSourceLocationUrl: true, + swaggerPathsPattern: [ + "specification\\servicelinker\\resource-manager\\Microsoft.ServiceLinker\\**\\*.json", + ], + git: { + shouldClone: false, + }, + }; + const liveValidator = new LiveValidator(options); + await liveValidator.initialize(); + const payload = require(`${__dirname}/liveValidation/payloads/lro_responseheader_error_input.json`); + const validationResult = await liveValidator.validateLiveRequestResponse(payload, { + isArmCall: true, + }); + expect(validationResult).toMatchSnapshot(); + }); + it(`should return no errors for valid input with optional parameter body null`, async () => { const options = { directory: `${__dirname}/liveValidation/swaggers/`,