You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

com.github.tomakehurst:wiremock

Package Overview
Dependencies
Maintainers
1
Versions
116
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

com.github.tomakehurst:wiremock - maven Package Compare versions

Comparing version
3.0.0-beta-10
to
3.0.0
wiremock-3.0.0.pom

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

-204
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>WireMock Recorder</title>
<script src='/__admin/recorder/lib/jquery-3.6.0.min.js' type='text/javascript'></script>
<style type="text/css">
body {
font-family: sans-serif;
}
h1 {
margin-bottom: 3rem;
color: #6C7692;
}
#logo {
height: 40px;
width: auto;
display: inline;
vertical-align: text-bottom;
padding-bottom: 0.2rem;
}
.content {
margin: auto;
width: 600px;
/*height: 300px;*/
padding-top: 100px;
vertical-align: middle;
}
.ca-cert-box {
border: 1px solid black;
padding: 1em;
vertical-align: middle;
margin-top: 80px;
color: #898989;
font-size: 90%;
}
.ca-cert-box a {
color: #42407d;
}
.ca-cert-box a:visited {
color: #42407d;
}
button {
background-color: #1D2539;
padding: 10px;
color: white;
font-size: 1.5rem;
border-radius: 5px;
border: none;
margin-right: 1rem;
}
button:disabled {
background-color: #AAA;
}
input {
border-radius: 5px;
}
#targetBaseUrlLabel {
color: #777;
font-size: 1.2rem;
}
#targetBaseUrl {
height: 1.5rem;
width: 32rem;
display: block;
margin-top: 0.3rem;
margin-bottom: 1rem;
border: 2px solid grey;
padding: 5px;
}
#validationMessage {
margin-bottom: 3rem;
border: none;
color: transparent;
width: 32rem;
padding: 6px;
}
.showError {
border: 1px solid red !important;
color: red !important;
}
.showMessage {
border: 1px solid darkgreen !important;
color: darkgreen !important;
}
</style>
</head>
<body>
<div class="content">
<h1>
<img src="/__admin/recorder/images/wiremock-concept-icon-01.png" id="logo"/>
WireMock Recorder
</h1>
<label id="targetBaseUrlLabel" for="targetBaseUrl">Target URL</label>
<input type="text" id="targetBaseUrl" name="targetBaseUrl" max="128"/>
<div id="validationMessage"></div>
<button id="startRecording" disabled="disabled">Record</button>
<button id="stopRecording" disabled="disabled">Stop</button>
<div class="ca-cert-box">
<p>To record stubs from an HTTPS endpoint using browser (forward) proxying, you may need to trust WireMock's CA cert, which
can be downloaded here: <a href="../certs/wiremock-ca.crt">wiremock-ca.crt</a>
<p>See the <a href="http://wiremock.org/docs/proxying/#browser-proxying-of-https" target="_blank">documentation on HTTPS proxying</a> for more details.
</div>
</div>
<script type="text/javascript">
function showMessage(message) {
$('#validationMessage')
.removeClass('showError')
.addClass('showMessage')
.text(message);
}
function showError(message) {
$('#validationMessage')
.removeClass('showMessage')
.addClass('showError')
.text(message);
}
function hideMessage() {
$('#validationMessage').removeClass('showError');
}
$(function() {
var base = window.location.href.startsWith('file') ?
'http://localhost:8080' :
'';
$.getJSON(base + '/__admin/recordings/status', function(data) {
if (data.status === 'Recording') {
$('#stopRecording').attr('disabled', false);
showMessage('Recording...');
} else {
$('#startRecording').attr('disabled', false);
}
});
$('#startRecording').click(function(event) {
var baseUrl = $('#targetBaseUrl').val();
if (baseUrl == null || baseUrl.length === 0) {
showError('You need to enter a valid target URL.');
return;
} else {
hideMessage();
}
event.target.disabled = true;
$.ajax({
method: "POST",
url: base + '/__admin/recordings/start',
crossDomain: true,
mimeType: 'application/json',
data: JSON.stringify({
targetBaseUrl: baseUrl
}),
dataType: 'json'
}).done(function() {
$('#stopRecording').attr('disabled', false);
showMessage('Recording...');
});
});
$('#stopRecording').click(function(event) {
event.target.disabled = true;
$.ajax({
method: 'POST',
crossDomain: true,
url: base + '/__admin/recordings/stop'
}).done(function(data) {
var count = data.mappings.length;
showMessage('Captured ' + count + ' stub mappings.');
$('#startRecording').attr('disabled', false);
});
});
});
</script>
</body>
</html>

Sorry, the diff of this file is too big to display

<!-- HTML for static distribution bundle build -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>WireMock Admin API | Swagger UI</title>
<link rel="stylesheet" type="text/css" href="swagger-ui-dist/swagger-ui.css" />
<link rel="icon" type="image/png" href="swagger-ui-dist/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="swagger-ui-dist/favicon-16x16.png" sizes="16x16" />
<style>
html
{
box-sizing: border-box;
overflow: -moz-scrollbars-vertical;
overflow-y: scroll;
}
*,
*:before,
*:after
{
box-sizing: inherit;
}
body
{
margin:0;
background: #fafafa;
}
</style>
</head>
<body>
<div id="swagger-ui"></div>
<script src="swagger-ui-dist/swagger-ui-bundle.js" charset="UTF-8"> </script>
<script src="swagger-ui-dist/swagger-ui-standalone-preset.js" charset="UTF-8"> </script>
<script>
window.onload = function() {
// Begin Swagger UI call region
const ui = SwaggerUIBundle({
url: "/__admin/docs/swagger",
dom_id: '#swagger-ui',
deepLinking: true,
presets: [
SwaggerUIBundle.presets.apis,
SwaggerUIStandalonePreset
],
plugins: [
SwaggerUIBundle.plugins.DownloadUrl
],
layout: "StandaloneLayout"
});
// End Swagger UI call region
window.ui = ui;
};
</script>
</body>
</html>
/*
* getAbsoluteFSPath
* @return {string} When run in NodeJS env, returns the absolute path to the current directory
* When run outside of NodeJS, will return an error message
*/
const getAbsoluteFSPath = function () {
// detect whether we are running in a browser or nodejs
if (typeof module !== "undefined" && module.exports) {
return require("path").resolve(__dirname)
}
throw new Error('getAbsoluteFSPath can only be called within a Nodejs environment');
}
module.exports = getAbsoluteFSPath

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

<!-- HTML for static distribution bundle build -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Swagger UI</title>
<link rel="stylesheet" type="text/css" href="./swagger-ui.css" />
<link rel="icon" type="image/png" href="./favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="./favicon-16x16.png" sizes="16x16" />
<style>
html
{
box-sizing: border-box;
overflow: -moz-scrollbars-vertical;
overflow-y: scroll;
}
*,
*:before,
*:after
{
box-sizing: inherit;
}
body
{
margin:0;
background: #fafafa;
}
</style>
</head>
<body>
<div id="swagger-ui"></div>
<script src="./swagger-ui-bundle.js" charset="UTF-8"> </script>
<script src="./swagger-ui-standalone-preset.js" charset="UTF-8"> </script>
<script>
window.onload = function() {
// Begin Swagger UI call region
const ui = SwaggerUIBundle({
url: "https://petstore.swagger.io/v2/swagger.json",
dom_id: '#swagger-ui',
deepLinking: true,
presets: [
SwaggerUIBundle.presets.apis,
SwaggerUIStandalonePreset
],
plugins: [
SwaggerUIBundle.plugins.DownloadUrl
],
layout: "StandaloneLayout"
});
// End Swagger UI call region
window.ui = ui;
};
</script>
</body>
</html>
try {
module.exports.SwaggerUIBundle = require("./swagger-ui-bundle.js")
module.exports.SwaggerUIStandalonePreset = require("./swagger-ui-standalone-preset.js")
} catch(e) {
// swallow the error if there's a problem loading the assets.
// allows this module to support providing the assets for browserish contexts,
// without exploding in a Node context.
//
// see https://github.com/swagger-api/swagger-ui/issues/3291#issuecomment-311195388
// for more information.
}
// `absolutePath` and `getAbsoluteFSPath` are both here because at one point,
// we documented having one and actually implemented the other.
// They were both retained so we don't break anyone's code.
module.exports.absolutePath = require("./absolute-path.js")
module.exports.getAbsoluteFSPath = require("./absolute-path.js")
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
<!doctype html>
<html lang="en-US">
<head>
<title>Swagger UI: OAuth2 Redirect</title>
</head>
<body>
<script>
'use strict';
function run () {
var oauth2 = window.opener.swaggerUIRedirectOauth2;
var sentState = oauth2.state;
var redirectUrl = oauth2.redirectUrl;
var isValid, qp, arr;
if (/code|token|error/.test(window.location.hash)) {
qp = window.location.hash.substring(1);
} else {
qp = location.search.substring(1);
}
arr = qp.split("&");
arr.forEach(function (v,i,_arr) { _arr[i] = '"' + v.replace('=', '":"') + '"';});
qp = qp ? JSON.parse('{' + arr.join() + '}',
function (key, value) {
return key === "" ? value : decodeURIComponent(value);
}
) : {};
isValid = qp.state === sentState;
if ((
oauth2.auth.schema.get("flow") === "accessCode" ||
oauth2.auth.schema.get("flow") === "authorizationCode" ||
oauth2.auth.schema.get("flow") === "authorization_code"
) && !oauth2.auth.code) {
if (!isValid) {
oauth2.errCb({
authId: oauth2.auth.name,
source: "auth",
level: "warning",
message: "Authorization may be unsafe, passed state was changed in server Passed state wasn't returned from auth server"
});
}
if (qp.code) {
delete oauth2.state;
oauth2.auth.code = qp.code;
oauth2.callback({auth: oauth2.auth, redirectUrl: redirectUrl});
} else {
let oauthErrorMsg;
if (qp.error) {
oauthErrorMsg = "["+qp.error+"]: " +
(qp.error_description ? qp.error_description+ ". " : "no accessCode received from the server. ") +
(qp.error_uri ? "More info: "+qp.error_uri : "");
}
oauth2.errCb({
authId: oauth2.auth.name,
source: "auth",
level: "error",
message: oauthErrorMsg || "[Authorization failed]: no accessCode received from the server"
});
}
} else {
oauth2.callback({auth: oauth2.auth, token: qp, isValid: isValid, redirectUrl: redirectUrl});
}
window.close();
}
window.addEventListener('DOMContentLoaded', function () {
run();
});
</script>
</body>
</html>

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>WireMock Documentation Index</title>
</head>
<body>
<a href="/__admin/docs/swagger" title="OpenAPI 3.0 spec">OpenAPI 3.0 spec</a><br />
<a href="/__admin/swagger-ui" title="Swagger UI">Swagger UI</a><br />
</body>
</html>

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

matchesJsonPath:
expression: '$.outer'
equalToJson: '{ "inner": 42 }'
url: "/actual"
absoluteUrl: http://localhost:8080/actual
method: GET
clientIp: '0:0:0:0:0:0:0:1'
headers:
User-Agent: curl/7.30.0
Accept: "*/*"
Host: localhost:8080
cookies: {}
browserProxyRequest: false
loggedDate: 1467402464520
bodyAsBase64: ''
body: ''
loggedDateString: '2016-07-01T19:47:44Z'
nearMisses:
- request:
url: "/nomatch"
absoluteUrl: http://localhost:8080/nomatch
method: GET
clientIp: '0:0:0:0:0:0:0:1'
headers:
User-Agent: curl/7.30.0
Accept: "*/*"
Host: localhost:8080
cookies: {}
browserProxyRequest: false
loggedDate: 1467402464520
bodyAsBase64: ''
body: ''
loggedDateString: '2016-07-01T19:47:44Z'
requestPattern:
url: "/almostmatch"
method: GET
matchResult:
distance: 0.06944444444444445
targetBaseUrl: http://example.mocklab.io
filters:
urlPathPattern: "/api/.*"
method: GET
captureHeaders:
Accept: {}
Content-Type:
caseInsensitive: true
requestBodyPattern:
matcher: equalToJson
ignoreArrayOrder: false
ignoreExtraElements: true
extractBodyCriteria:
textSizeThreshold: '2048'
binarySizeThreshold: '10240'
persist: false
repeatsAsScenarios: false
transformers:
- modify-response-header
transformerParameters:
headerValue: '123'
mappings:
- id: 093f1027-e5e0-4921-9e6d-e619dfd5d2c7
name: recordables_123
request:
url: "/recordables/123"
method: GET
response:
status: 200
body: |-
{
"message": "Congratulations on your first recording!"
}
headers:
Content-Type: application/json
uuid: 093f1027-e5e0-4921-9e6d-e619dfd5d2c7
persistent: true
method: POST
url: "/resource"
headers:
Content-Type:
matches: ".*/xml"
id: 12fb14bb-600e-4bfa-bd8d-be7f12562c99
request:
url: "/received-request/2"
absoluteUrl: http://localhost:56738/received-request/2
method: GET
clientIp: 127.0.0.1
headers:
Connection: keep-alive
Host: localhost:56738
User-Agent: Apache-HttpClient/4.5.1 (Java/1.7.0_51)
cookies: {}
browserProxyRequest: false
loggedDate: 1471442557047
bodyAsBase64: ''
body: ''
loggedDateString: '2016-08-17T14:02:37Z'
responseDefinition:
status: 404
transformers: []
fromConfiguredStub: false
transformerParameters: {}
requests:
- url: "/my/url"
absoluteUrl: http://mydomain.com/my/url
method: GET
headers:
Accept-Language: en-us,en;q=0.5
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:9.0) Gecko/20100101
Firefox/9.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
body: ''
browserProxyRequest: true
loggedDate: 1339083581823
loggedDateString: '2012-06-07 16:39:41'
- url: "/my/other/url"
absoluteUrl: http://my.other.domain.com/my/other/url
method: POST
headers:
Accept: text/plain
Content-Type: text/plain
body: My text
browserProxyRequest: false
loggedDate: 1339083581823
loggedDateString: '2012-06-07 16:39:41'
requests:
- id: 45760a03-eebb-4387-ad0d-bb89b5d3d662
request:
url: "/received-request/9"
absoluteUrl: http://localhost:56715/received-request/9
method: GET
clientIp: 127.0.0.1
headers:
Connection: keep-alive
Host: localhost:56715
User-Agent: Apache-HttpClient/4.5.1 (Java/1.7.0_51)
cookies: {}
browserProxyRequest: false
loggedDate: 1471442494809
bodyAsBase64: ''
body: ''
loggedDateString: '2016-08-17T14:01:34Z'
responseDefinition:
status: 404
transformers: []
fromConfiguredStub: false
transformerParameters: {}
- id: 6ae78311-0178-46c9-987a-fbfc528d54d8
request:
url: "/received-request/8"
absoluteUrl: http://localhost:56715/received-request/8
method: GET
clientIp: 127.0.0.1
headers:
Connection: keep-alive
Host: localhost:56715
User-Agent: Apache-HttpClient/4.5.1 (Java/1.7.0_51)
cookies: {}
browserProxyRequest: false
loggedDate: 1471442494802
bodyAsBase64: ''
body: ''
loggedDateString: '2016-08-17T14:01:34Z'
responseDefinition:
status: 404
transformers: []
fromConfiguredStub: false
transformerParameters: {}
- id: aba8e4ad-1b5b-4518-8f05-b2170a24de35
request:
url: "/received-request/7"
absoluteUrl: http://localhost:56715/received-request/7
method: GET
clientIp: 127.0.0.1
headers:
Connection: keep-alive
Host: localhost:56715
User-Agent: Apache-HttpClient/4.5.1 (Java/1.7.0_51)
cookies: {}
browserProxyRequest: false
loggedDate: 1471442494795
bodyAsBase64: ''
body: ''
loggedDateString: '2016-08-17T14:01:34Z'
responseDefinition:
status: 404
transformers: []
fromConfiguredStub: false
transformerParameters: {}
meta:
total: 9
requestJournalDisabled: false
filters:
urlPathPattern: "/api/.*"
method: GET
ids:
- 40a93c4a-d378-4e07-8321-6158d5dbcb29
captureHeaders:
Accept: {}
Content-Type:
caseInsensitive: true
requestBodyPattern:
matcher: equalToJson
ignoreArrayOrder: false
ignoreExtraElements: true
extractBodyCriteria:
textSizeThreshold: 2 kb
binarySizeThreshold: 1 Mb
outputFormat: FULL
persist: false
repeatsAsScenarios: false
transformers:
- modify-response-header
transformerParameters:
headerValue: '123'
request:
method: GET
url: /some/thing
response:
body: Hello world!
headers:
Content-Type: text/plain
status: 200
id: 76ada7b0-49ae-4229-91c4-396a36f18e09
priority: 3
request:
headers:
Accept:
equalTo: text/plain
method: GET
url: /some/thing
response:
body: Hello world!
headers:
Content-Type: text/plain
status: 200
meta:
total: 2
mappings:
- id: "76ada7b0-49ae-4229-91c4-396a36f18e09"
uuid: "76ada7b0-49ae-4229-91c4-396a36f18e09"
request:
method: GET
url: /search?q=things
headers:
Accept:
equalTo: application/json
response:
status: 200
jsonBody:
- thing1
- thing2
headers:
Content-Type: application/json
- request:
method: POST
urlPath: /some/things
bodyPatterns:
- { equalToXml: <stuff /> }
response:
status: 201
oneOf:
- title: String equals
type: object
properties:
equalTo:
type: boolean
caseInsensitive:
type: boolean
required:
- equalTo
- title: String contains
type: object
properties:
contains:
type: string
required:
- contains
- title: Regular expression match
type: object
properties:
matches:
type: string
required:
- matches
- title: Negative regular expression match
type: object
properties:
doesNotMatch:
type: string
required:
- doesNotMatch
- title: JSON equals
type: object
properties:
equalToJson:
type: string
required:
- equalToJson
- title: JSONPath match
type: object
properties:
matchesJsonPath:
type: string
ignoreArrayOrder:
type: boolean
ignoreExtraElements:
type: boolean
required:
- matchesJsonPath
- title: XML equality
type: object
properties:
equalToXml:
type: string
required:
- equalToXml
- title: XPath match
type: object
properties:
matchesXpath:
type: string
namespaces:
type: object
valuePattern:
type: object
required:
- matchesXpath
oneOf:
- title: Log normal
description: Log normal randomly distributed response delay.
type: object
properties:
median:
type: integer
sigma:
type: number
type:
enum:
- lognormal
type: string
- title: Uniform
description: Uniformly distributed random response delay.
type: object
properties:
lower:
type: integer
type:
enum:
- uniform
type: string
upper:
type: integer
type: object
properties:
method:
description: The HTTP request method
type: string
example: "GET"
url:
description: The path and query to match exactly against
type: string
example: "/received-request/2"
absoluteUrl:
description: The full URL to match against
type: string
example: "http://localhost:56738/received-request/2"
headers:
description: 'Header patterns to match against in the <key>: { "<predicate>": "<value>" } form'
type: object
example:
Connection: keep-alive
Host: localhost:56738
User-Agent: Apache-HttpClient/4.5.1 (Java/1.7.0_51)
cookies:
description: 'Cookie patterns to match against in the <key>: { "<predicate>": "<value>" } form'
type: object
example: {}
body:
description: Body string to match against
type: string
example: "Hello world"
type: object
properties:
captureHeaders:
type: object
additionalProperties:
type: object
additionalProperties: false
properties:
caseInsensitive:
type: boolean
description: Headers from the request to include in the generated stub mappings, mapped to parameter objects. The only parameter available is "caseInsensitive", which defaults to false
example:
Accept: {}
Content-Type:
caseInsensitive: true
extractBodyCriteria:
type: object
description: Criteria for extracting response bodies to a separate file instead of including it in the stub mapping
example:
- binarySizeThreshold: 1 Mb
textSizeThreshold: 2 kb
properties:
binarySizeThreshold:
type: string
default: '0'
description: Size threshold for extracting binary response bodies. Supports humanized size strings, e.g. "56 Mb". Default unit is bytes.
example: 18.2 GB
textSizeThreshold:
default: '0'
description: Size threshold for extracting binary response bodies. Supports humanized size strings, e.g. "56 Mb". Default unit is bytes.
example: 18.2 GB
type: string
persist:
type: boolean
default: true
description: Whether to save stub mappings to the file system or just return them
repeatsAsScenarios:
type: boolean
default: true
description: When true, duplicate requests will be added to a Scenario. When false, duplicates are discarded
requestBodyPattern:
type: object
description: Control the request body matcher used in generated stub mappings
oneOf:
- type: object
description: Automatically determine matcher based on content type (the default)
properties:
caseInsensitive:
type: boolean
default: false
description: If equalTo is used, match body use case-insensitive string comparison
ignoreArrayOrder:
type: boolean
default: true
description: If equalToJson is used, ignore order of array elements
ignoreExtraElements:
type: boolean
default: true
description: If equalToJson is used, matcher ignores extra elements in objects
matcher:
type: string
enum:
- auto
- type: object
description: Always match request bodies using equalTo
properties:
caseInsensitive:
default: false
description: Match body using case-insensitive string comparison
type: boolean
matcher:
enum:
- equalTo
type: string
- type: object
description: Always match request bodies using equalToJson
properties:
ignoreArrayOrder:
default: true
description: Ignore order of array elements
type: boolean
ignoreExtraElements:
default: true
description: Ignore extra elements in objects
type: boolean
matcher:
enum:
- equalToJson
type: string
- type: object
description: Always match request bodies using equalToXml
properties:
matcher:
type: string
enum:
- equalToXml
transformerParameters:
type: object
description: List of names of stub mappings transformers to apply to generated stubs
transformers:
type: array
description: Parameters to pass to stub mapping transformers
items:
type: string
type: object
example:
bodyPatterns:
- equalToJson: '{ "numbers": [1, 2, 3] }'
headers:
Content-Type:
equalTo: application/json
method: POST
url: /some/thing
properties:
method:
type: string
description: The HTTP request method e.g. GET
url:
type: string
description: The path and query to match exactly against. Only one of url, urlPattern, urlPath or urlPathPattern may be specified.
urlPath:
type: string
description: The path to match exactly against. Only one of url, urlPattern, urlPath or urlPathPattern may be specified.
urlPathPattern:
type: string
description: The path regex to match against. Only one of url, urlPattern, urlPath or urlPathPattern may be specified.
urlPattern:
type: string
description: The path and query regex to match against. Only one of url, urlPattern, urlPath or urlPathPattern may be specified.
queryParameters:
type: object
description: 'Query parameter patterns to match against in the <key>: { "<predicate>": "<value>" } form'
headers:
type: object
description: 'Header patterns to match against in the <key>: { "<predicate>": "<value>" } form'
basicAuthCredentials:
type: object
description: Pre-emptive basic auth credentials to match against
properties:
password:
type: string
username:
type: string
required:
- username
- password
cookies:
type: object
description: 'Cookie patterns to match against in the <key>: { "<predicate>": "<value>" } form'
bodyPatterns:
type: array
description: 'Request body patterns to match against in the <key>: { "<predicate>": "<value>" } form'
items:
type: object
allOf:
- type: object
properties:
status:
type: integer
description: The HTTP status code to be returned
statusMessage:
type: string
description: The HTTP status message to be returned
headers:
type: object
description: Map of response headers to send
additionalProxyRequestHeaders:
type: object
description: Extra request headers to send when proxying to another host.
body:
type: string
description: The response body as a string. Only one of body, base64Body, jsonBody or bodyFileName may be specified.
base64Body:
type: string
description: The response body as a base64 encoded string (useful for binary content). Only one of body, base64Body, jsonBody or bodyFileName may be specified.
jsonBody:
type: object
description: The response body as a JSON object. Only one of body, base64Body, jsonBody or bodyFileName may be specified.
bodyFileName:
type: string
description: The path to the file containing the response body, relative to the configured file root. Only one of body, base64Body, jsonBody or bodyFileName may be specified.
fault:
type: string
description: The fault to apply (instead of a full, valid response).
enum:
- CONNECTION_RESET_BY_PEER
- EMPTY_RESPONSE
- MALFORMED_RESPONSE_CHUNK
- RANDOM_DATA_THEN_CLOSE
fixedDelayMilliseconds:
type: integer
description: Number of milliseconds to delay be before sending the response.
delayDistribution:
description: The delay distribution. Valid property configuration is either median/sigma/type or lower/type/upper.
$ref: "delay-distribution.yaml"
fromConfiguredStub:
type: boolean
description: Read-only flag indicating false if this was the default, unmatched response. Not present otherwise.
proxyBaseUrl:
type: string
description: The base URL of the target to proxy matching requests to.
transformerParameters:
type: object
description: Parameters to apply to response transformers.
transformers:
type: array
description: List of names of transformers to apply to this response.
items:
type: string
type: object
properties:
id:
type: string
description: The scenario ID
example: c8d249ec-d86d-48b1-88a8-a660e6848042
name:
type: string
description: The scenario name
example: my_scenario
possibleStates:
type: array
items:
default: Started
description: All the states this scenario can be in
type: string
example: [ Started, state_1, state_2 ]
state:
type: string
default: Started
description: The current state of this scenario
example: state_2
type: object
properties:
id:
type: string
description: This stub mapping's unique identifier
uuid:
type: string
description: Alias for the id
name:
type: string
description: The stub mapping's name
request:
$ref: 'request-pattern.yaml'
response:
$ref: "response-definition.yaml"
persistent:
type: boolean
description: Indicates that the stub mapping should be persisted immediately on create/update/delete and survive resets to default.
priority:
type: integer
description: This stub mapping's priority relative to others. 1 is highest.
minimum: 1
scenarioName:
type: string
description: The name of the scenario that this stub mapping is part of
requiredScenarioState:
type: string
description: The required state of the scenario in order for this stub to be matched.
newScenarioState:
type: string
description: The new state for the scenario to be updated to after this stub is served.
postServeActions:
type: object
description: A map of the names of post serve action extensions to trigger and their parameters.
metadata:
type: object
description: Arbitrary metadata to be used for e.g. tagging, documentation. Can also be used to find and remove stubs.
additionalProperties: false
type: object
properties:
mappings:
type: array
items:
$ref: "stub-mapping.yaml"
meta:
type: object
properties:
total:
type: integer
example: 4
required:
- total
additionalProperties: false

Sorry, the diff of this file is too big to display

openapi: 3.0.0
info:
title: WireMock
version: 3.0.0-beta-10
externalDocs:
description: WireMock user documentation
url: http://wiremock.org/docs/
servers:
- url: /
tags:
- name: Stub Mappings
description: Operations on stub mappings
externalDocs:
description: User documentation
url: http://wiremock.org/docs/stubbing/
- name: Requests
description: Logged requests and responses received by the mock service
externalDocs:
description: User documentation
url: http://wiremock.org/docs/verifying/
- name: Near Misses
description: Near misses allow querying of received requests or request patterns according to similarity
externalDocs:
description: User documentation
url: http://wiremock.org/docs/verifying/#near-misses
- name: Recordings
description: Stub mapping record and snapshot functions
externalDocs:
description: User documentation
url: http://wiremock.org/docs/record-playback/
- name: Scenarios
description: Scenarios support modelling of stateful behaviour
externalDocs:
description: User documentation
url: http://wiremock.org/docs/stateful-behaviour/
- name: System
description: Global operations
paths:
/__admin/mappings:
get:
summary: Get all stub mappings
tags:
- Stub Mappings
parameters:
- description: The maximum number of results to return
in: query
name: limit
required: false
example: 10
schema:
type: integer
- description: The start index of the results to return
in: query
name: offset
required: false
example: 0
schema:
type: integer
responses:
'200':
content:
application/json:
schema:
$ref: 'schemas/stub-mappings.yaml'
example:
$ref: 'examples/stub-mappings.yaml'
description: All stub mappings
post:
summary: Create a new stub mapping
tags:
- Stub Mappings
requestBody:
$ref: "#/components/requestBodies/stubMapping"
responses:
'201':
$ref: "#/components/responses/stubMapping"
delete:
summary: Delete all stub mappings
tags:
- Stub Mappings
responses:
'200':
description: Successfully deleted
/__admin/mappings/reset:
post:
summary: Reset stub mappings
description: Restores stub mappings to the defaults defined back in the backing store
tags:
- Stub Mappings
responses:
'200':
description: Successfully reset
/__admin/mappings/save:
post:
summary: Persist stub mappings
description: Save all persistent stub mappings to the backing store
tags:
- Stub Mappings
responses:
'200':
description: Successfully saved
/__admin/mappings/import:
post:
summary: Import stub mappings
description: Import given stub mappings to the backing store
tags:
- Stub Mappings
responses:
'200':
description: Successfully imported
/__admin/mappings/{stubMappingId}:
parameters:
- description: The UUID of stub mapping
in: path
name: stubMappingId
required: true
example: 730d3e32-d098-4169-a20c-554c3bedce58
schema:
type: string
get:
summary: Get stub mapping by ID
tags:
- Stub Mappings
responses:
'404':
description: Stub mapping not found
'200':
$ref: "#/components/responses/stubMapping"
put:
summary: Update a stub mapping
tags:
- Stub Mappings
requestBody:
$ref: "#/components/requestBodies/stubMapping"
responses:
'404':
description: Stub mapping not found
'200':
$ref: "#/components/responses/stubMapping"
delete:
summary: Delete a stub mapping
tags:
- Stub Mappings
responses:
'404':
description: Stub mapping not found
'200':
description: OK
/__admin/mappings/find-by-metadata:
post:
description: Find stubs by matching on their metadata
tags:
- Stub Mappings
requestBody:
content:
application/json:
schema:
$ref: 'schemas/content-pattern.yaml'
example:
$ref: 'examples/by-metadata-request.yaml'
required: true
responses:
'200':
content:
application/json:
schema:
$ref: 'schemas/stub-mappings.yaml'
example:
$ref: 'examples/stub-mappings.yaml'
description: Matched stub mappings
/__admin/mappings/remove-by-metadata:
post:
summary: Delete stub mappings matching metadata
tags:
- Stub Mappings
requestBody:
content:
application/json:
schema:
$ref: 'schemas/content-pattern.yaml'
example:
$ref: 'examples/by-metadata-request.yaml'
responses:
'200':
description: 'The stub mappings were successfully removed'
/__admin/requests:
get:
summary: Get all requests in journal
tags:
- Requests
parameters:
- description: The maximum number of results to return
in: query
name: limit
example: 10
schema:
type: string
- description: Only return logged requests after this date
in: query
name: since
example: 2016-10-05T12:33:01Z
schema:
type: string
responses:
'200':
content:
application/json:
example:
$ref: 'examples/serve-events.yaml'
description: List of received requests
delete:
summary: Delete all requests in journal
tags:
- Requests
responses:
'200':
description: Successfully deleted
/__admin/requests/{requestId}:
get:
summary: Get request by ID
tags:
- Requests
parameters:
- description: The UUID of the logged request
in: path
name: requestId
required: true
example: 12fb14bb-600e-4bfa-bd8d-be7f12562c99
schema:
type: string
responses:
'404':
description: Request not found
'200':
description: OK
content:
application/json:
example:
$ref: "examples/request.yaml"
delete:
summary: Delete request by ID
tags:
- Requests
parameters:
- description: The UUID of the logged request
in: path
name: requestId
required: true
example: 12fb14bb-600e-4bfa-bd8d-be7f12562c99
schema:
type: string
responses:
'200':
description: Successfully deleted
/__admin/requests/reset:
post:
deprecated: true
summary: Empty the request journal
tags:
- Requests
responses:
'200':
description: Successfully reset
/__admin/requests/count:
post:
summary: Count requests by criteria
description: Count requests logged in the journal matching the specified criteria
tags:
- Requests
requestBody:
$ref: "#/components/requestBodies/requestPattern"
responses:
'200':
description: Number of matching requests
content:
application/json:
schema:
type: object
properties:
count:
type: integer
example: 4
/__admin/requests/remove:
post:
summary: Remove requests by criteria
description: Removed requests logged in the journal matching the specified criteria
tags:
- Requests
requestBody:
$ref: "#/components/requestBodies/requestPattern"
responses:
'200':
description: Removed request details
content:
application/json:
example:
$ref: "examples/requests.yaml"
/__admin/requests/remove-by-metadata:
post:
summary: Delete requests mappings matching metadata
tags:
- Requests
requestBody:
content:
application/json:
schema:
$ref: 'schemas/content-pattern.yaml'
example:
$ref: 'examples/by-metadata-request.yaml'
responses:
'200':
description: Removed request details
content:
application/json:
example:
$ref: "examples/requests.yaml"
/__admin/requests/find:
post:
summary: Find requests by criteria
description: Retrieve details of requests logged in the journal matching the specified criteria
tags:
- Requests
requestBody:
$ref: "#/components/requestBodies/requestPattern"
responses:
'200':
description: Matching request details
content:
application/json:
example:
$ref: "examples/requests.yaml"
/__admin/requests/unmatched:
get:
summary: Find unmatched requests
description: Get details of logged requests that weren't matched by any stub mapping
tags:
- Requests
responses:
'200':
description: Unmatched request details
content:
application/json:
example:
$ref: "examples/requests.yaml"
/__admin/requests/unmatched/near-misses:
get:
description: Retrieve near-misses for all unmatched requests
tags:
- Near Misses
responses:
'200':
$ref: "#/components/responses/nearMisses"
/__admin/near-misses/request:
post:
summary: Find near misses matching specific request
description: Find at most 3 near misses for closest stub mappings to the specified request
tags:
- Near Misses
requestBody:
content:
application/json:
schema:
$ref: 'schemas/logged-request.yaml'
example:
$ref: 'examples/logged-request.yaml'
required: true
responses:
'200':
$ref: "#/components/responses/nearMisses"
/__admin/near-misses/request-pattern:
post:
summary: Find near misses matching request pattern
description: Find at most 3 near misses for closest logged requests to the specified request pattern
tags:
- Near Misses
requestBody:
$ref: "#/components/requestBodies/requestPattern"
responses:
'200':
$ref: "#/components/responses/nearMisses"
/__admin/recordings/start:
post:
summary: Start recording
description: Begin recording stub mappings
tags:
- Recordings
requestBody:
$ref: "#/components/requestBodies/startRecording"
responses:
'200':
description: Successfully started recording
/__admin/recordings/stop:
post:
summary: Stop recording
description: End recording of stub mappings
tags:
- Recordings
responses:
'200':
content:
application/json:
schema:
$ref: 'schemas/stub-mappings.yaml'
example:
$ref: 'examples/recorded-stub-mappings.yaml'
description: Successfully stopped recording
/__admin/recordings/status:
get:
summary: Get recording status
tags:
- Recordings
responses:
'200':
description: Successfully got the record status
content:
application/json:
schema:
type: object
properties:
status:
type: string
example: "Stopped"
enum:
- NeverStarted
- Recording
- Stopped
/__admin/recordings/snapshot:
post:
summary: Take a snapshot recording
tags:
- Recordings
requestBody:
$ref: "#/components/requestBodies/snapshotRecording"
responses:
'200':
content:
application/json:
schema:
$ref: 'schemas/stub-mappings.yaml'
example:
$ref: 'examples/recorded-stub-mappings.yaml'
description: Successfully took a snapshot recording
/__admin/scenarios:
get:
summary: Get all scenarios
tags:
- Scenarios
responses:
'200':
content:
application/json:
schema:
type: object
properties:
scenarios:
type: array
items:
$ref: "schemas/scenario.yaml"
description: All scenarios
/__admin/scenarios/reset:
post:
summary: Reset the state of all scenarios
tags:
- Scenarios
responses:
'200':
description: Successfully reset
/__admin/settings:
post:
summary: Update global settings
tags:
- System
requestBody:
content:
application/json:
schema:
allOf:
- $ref: "schemas/delay-distribution.yaml"
- type: object
properties:
fixedDelay:
type: number
example:
fixedDelay: 500
required: true
responses:
'200':
description: Settings successfully updated
/__admin/reset:
post:
summary: Reset mappings and request journal
description: Reset mappings to the default state and reset the request journal
tags:
- System
responses:
'200':
description: Successfully reset
/__admin/shutdown:
post:
description: Shutdown the WireMock server
tags:
- System
responses:
'200':
description: Server will be shut down
components:
requestBodies:
requestPattern:
required: true
content:
application/json:
schema:
$ref: 'schemas/request-pattern.yaml'
example:
$ref: "examples/request-pattern.yaml"
stubMapping:
content:
application/json:
schema:
$ref: 'schemas/stub-mapping.yaml'
example:
$ref: "examples/stub-mapping-no-id.yaml"
startRecording:
required: true
content:
application/json:
schema:
allOf:
- $ref: 'schemas/record-spec.yaml'
- properties:
filters:
allOf:
- $ref: 'schemas/request-pattern.yaml'
- description: Filter requests for which to create stub mapping
targetBaseUrl:
type: string
description: Target URL when using the record and playback API
example: http://example.mocklab.io
example:
$ref: "examples/record-spec.yaml"
snapshotRecording:
required: true
content:
application/json:
schema:
type: object
allOf:
- $ref: "schemas/record-spec.yaml"
- properties:
filters:
type: object
allOf:
- properties:
ids:
type: array
items:
type: string
type: object
description: Filter requests for which to create stub mapping
- $ref: 'schemas/request-pattern.yaml'
example:
$ref: "examples/snapshot-spec.yaml"
responses:
stubMapping:
description: The stub mapping
content:
application/json:
schema:
$ref: 'schemas/stub-mapping.yaml'
example:
$ref: "examples/stub-mapping-with-id.yaml"
nearMisses:
description: Near misses matching criteria
content:
application/json:
schema:
type: object
properties:
nearMisses:
type: array
items:
$ref: "schemas/logged-request.yaml"
example:
$ref: 'examples/near-misses.yaml'

Sorry, the diff of this file is not supported yet