action wiremock_get_admin_requests_unmatched_near_misses { label: "get_admin_requests_unmatched_near_misses" description: "Retrieve near-misses for all unmatched requests" provider: wiremock method: GET path: "/__admin/requests/unmatched/near-misses" encoding: json 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" } } } } } } }