action apicurio_get_artifact_meta_data { label: "Get artifact metadata" description: "Gets the metadata for an artifact in the registry. The returned metadata includes\nboth generated (read-only) and editable metadata (such as name and description).\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}/meta" encoding: json output: { type: "object" required: ["contentId", "createdBy", "createdOn", "globalId", "group", "id", "modifiedBy", "modifiedOn", "state", "type", "version"] properties: { contentId: { type: "integer" format: "int64" } createdBy: { type: "string" } createdOn: { type: "string" format: "date-time" } description: { type: "string" } globalId: { type: "integer" format: "int64" } groupId: { type: "string" description: "An ID of a single artifact group." } id: { type: "string" } labels: { type: "array" items: { type: "string" } } modifiedBy: { type: "string" } modifiedOn: { type: "string" format: "date-time" } name: { type: "string" } properties: { type: "object" } references: { type: "array" items: { type: "object" description: "A reference to a different artifact. Typically used with artifact types that can have dependencies like Protobuf." required: ["artifactId", "groupId", "name"] properties: { artifactId: { type: "string" } groupId: { type: "string" } name: { type: "string" } version: { type: "string" } } } } state: { type: "string" enum: ["ENABLED", "DISABLED", "DEPRECATED"] } type: { type: "string" } version: { type: "string" } } } }