action apicurio_update_artifact_meta_data { label: "Update artifact metadata" description: "Updates the editable parts of the artifact's metadata. Not all metadata fields can\nbe updated. For example, `createdOn` and `createdBy` are both read-only properties.\n\nThis operation can fail for the following reasons:\n\n* No artifact with the `artifactId` exists (HTTP error `404`)\n* A server error occurred (HTTP error `500`)" provider: apicurio method: PUT path: "/groups/{groupId}/artifacts/{artifactId}/meta" encoding: json input: { type: "object" properties: { description: { type: "string" } labels: { type: "array" items: { type: "string" } } name: { type: "string" } properties: { type: "object" } } } output: { type: "object" additionalProperties: true } }