action apicurio_get_global_rule_config { label: "Get global rule configuration" description: "Returns information about the named globally configured rule.\n\nThis operation can fail for the following reasons:\n\n* Invalid rule name/type (HTTP error `400`)\n* No rule with name/type `rule` exists (HTTP error `404`)\n* A server error occurred (HTTP error `500`)\n" provider: apicurio method: GET path: "/admin/rules/{rule}" encoding: json output: { type: "object" required: ["config"] properties: { config: { type: "string" } type: { type: "string" enum: ["VALIDITY", "COMPATIBILITY"] } } } }