action botify_test_url_rewriting_rules { label: "Match and replace parts of a URL based on rules passed in POST data" description: "Match and replace parts of a URL based on rules passed in POST data." provider: botify method: POST path: "/projects/{username}/{project_slug}/features/url_rewriting/rules_validator" encoding: json output: { type: "object" required: ["rules", "urls"] properties: { rules: { type: "array" items: { type: "object" required: ["regex", "replace", "ignore_case"] properties: { ignore_case: { type: "boolean" } regex: { type: "string" } replace: { type: "string" } } } } urls: { type: "array" items: { type: "string" } } } } }