v51

latestOpenAPI 3.0.3Apache 2.0raw.githubusercontent.com2026-08-01131107332.8 KB
Metadata

Get artifact metadata

Gets the metadata for an artifact in the registry, based on the latest version. If the latest version of the artifact is marked as DISABLED, the next available non-disabled version will be used. The returned metadata includes both generated (read-only) and editable metadata (such as name and description).

This operation can fail for the following reasons:

  • No artifact with this artifactId exists or all versions are DISABLED (HTTP error 404)
  • A server error occurred (HTTP error 500)
get/groups/{groupId}/artifacts/{artifactId}

Response

The artifact's metadata.

namestring
descriptionstring
ownerstring required
createdOnstring date-time required
modifiedBystring required
modifiedOnstring date-time required
artifactTypestring required
labelsLabels

User-defined name-value pairs. Name and value must be strings.

groupIdstring required

An ID of a single artifact group.

artifactIdstring required

The ID of a single artifact.

Example response

{
  "groupId": "My-Group",
  "artifactId": "Procurement-Invoice",
  "name": "Artifact Name",
  "description": "Description of the artifact",
  "artifactType": "AVRO",
  "owner": "user1",
  "createdOn": "2019-03-22T12:51:19Z",
  "modifiedBy": "user2",
  "modifiedOn": "2019-07-19T15:09:00Z",
  "labels": {
    "custom-1": "foo",
    "custom-2": "bar"
  }
}