action apicurio_create_global_rule { label: "Create global rule" description: "Adds a rule to the list of globally configured rules.\n\nThis operation can fail for the following reasons:\n\n* The rule type is unknown (HTTP error `400`)\n* The rule already exists (HTTP error `409`)\n* A server error occurred (HTTP error `500`)\n" provider: apicurio method: POST path: "/admin/rules" encoding: json input: { type: "object" required: ["config"] properties: { config: { type: "string" } type: { type: "string" enum: ["VALIDITY", "COMPATIBILITY"] } } } output: { type: "object" additionalProperties: true } }