action apicurio_list_artifact_types { label: "List artifact types" description: "Gets a list of all the configured artifact types.\n\nThis operation can fail for the following reasons:\n\n* A server error occurred (HTTP error `500`)\n" provider: apicurio method: GET path: "/admin/artifactTypes" encoding: json output: { type: "array" items: { type: "object" properties: { name: { type: "string" } } } } }