action apicurio_get_artifact_owner { label: "Get artifact owner" description: "Gets the owner of an artifact in the registry.\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}/owner" encoding: json output: { type: "object" description: "Describes the ownership of an artifact." properties: { owner: { type: "string" } } } }