action apicurio_list_artifact_rules { label: "List artifact rules" description: "Returns a list of all rules configured for the artifact. The set of rules determines\nhow the content of an artifact can evolve over time. If no rules are configured for\nan artifact, the set of globally configured rules are used. If no global rules \nare defined, there are no restrictions on content evolution.\n\nThis operation can fail for the following reasons:\n\n* No artifact with this `artifactId` exists (HTTP error `404`)\n* A server error occurred (HTTP error `500`)" provider: apicurio method: GET path: "/groups/{groupId}/artifacts/{artifactId}/rules" encoding: json output: { type: "array" items: { type: "string" enum: ["VALIDITY", "COMPATIBILITY"] } } }