action wiremock_post_admin_near_misses_request { label: "Find near misses matching specific request" description: "Find at most 3 near misses for closest stub mappings to the specified request" provider: wiremock method: POST path: "/__admin/near-misses/request" encoding: json input: { type: "object" properties: { absoluteUrl: { type: "string" description: "The full URL to match against" } body: { type: "string" description: "Body string to match against" } cookies: { type: "object" description: "Cookie patterns to match against in the : { \"\": \"\" } form" } headers: { type: "object" description: "Header patterns to match against in the : { \"\": \"\" } form" } method: { type: "string" description: "The HTTP request method" } url: { type: "string" description: "The path and query to match exactly against" } } } output: { type: "object" properties: { nearMisses: { type: "array" items: { type: "object" properties: { absoluteUrl: { type: "string" description: "The full URL to match against" } body: { type: "string" description: "Body string to match against" } cookies: { type: "object" description: "Cookie patterns to match against in the : { \"\": \"\" } form" } headers: { type: "object" description: "Header patterns to match against in the : { \"\": \"\" } form" } method: { type: "string" description: "The HTTP request method" } url: { type: "string" description: "The path and query to match exactly against" } } } } } } }