action apicurio_get_artifact_rule_config { label: "Get artifact rule configuration" description: "Returns information about a single rule configured for an artifact. This is useful\nwhen you want to know what the current configuration settings are for a specific rule.\n\nThis operation can fail for the following reasons:\n\n* No artifact with this `artifactId` exists (HTTP error `404`)\n* No rule with this name/type is configured for this artifact (HTTP error `404`)\n* Invalid rule type (HTTP error `400`)\n* A server error occurred (HTTP error `500`)" provider: apicurio method: GET path: "/groups/{groupId}/artifacts/{artifactId}/rules/{rule}" encoding: json output: { type: "object" required: ["config"] properties: { config: { type: "string" } type: { type: "string" enum: ["VALIDITY", "COMPATIBILITY"] } } } }