{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Dev Proxy MockResponsePlugin config schema", "type": "object", "properties": { "$schema": { "type": "string", "description": "The JSON schema reference for validation." }, "mocksFile": { "type": "string", "description": "Path to the file containing the mock responses." }, "blockUnmockedRequests": { "type": "boolean", "description": "Set to true to return 502 Bad Gateway response for requests that aren't mocked. Default is false." } }, "required": [ "mocksFile" ], "additionalProperties": false }