action apicurio_update_artifact_owner { label: "Update artifact owner" description: "Changes the ownership of an artifact.\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: PUT path: "/groups/{groupId}/artifacts/{artifactId}/owner" encoding: json input: { type: "object" description: "Describes the ownership of an artifact." properties: { owner: { type: "string" } } } output: { type: "object" additionalProperties: true } }