이 콘텐츠는 선택한 언어로 제공되지 않습니다.

Chapter 11. Apicurio Registry artifact reference


This chapter provides reference information on the supported artifact types, states, and metadata that are stored in Apicurio Registry.

11.1. Apicurio Registry artifact types

You can store and manage a wide range of schema and API artifact types in Apicurio Registry.

Expand
Table 11.1. Apicurio Registry artifact types
TypeDescriptionSupported versions

ASYNCAPI

AsyncAPI specification

2.0.0 2.0.6, 3.0.0

AVRO

Apache Avro schema

1.0 1.12,

GRAPHQL

GraphQL schema

*

JSON

JSON Schema

draft-04, draft-07, 2019-09, 2020-12

KCONNECT

Apache Kafka Connect schema

2.0.0

OPENAPI

OpenAPI specification

2.0.0, 3.0.0 3.0.3, 3.1.0

PROTOBUF

Google protocol buffers schema

proto2, proto3

WSDL

Web Services Definition Language

http://schemas.xmlsoap.org/wsdl/

XML

Extensible Markup Language

 

XSD

XML Schema Definition

http://www.w3.org/2001/XMLSchema

11.2. Apicurio Registry artifact version states

The valid artifact version states in Apicurio Registry are ENABLED, DISABLED, and DEPRECATED.

Expand
Table 11.2. Apicurio Registry artifact version states
StateDescription

ENABLED

Basic state, all the operations are available.

DISABLED

The artifact version metadata is viewable and searchable using the Apicurio Registry web console, but its content cannot be fetched by any client.

DEPRECATED

The artifact version is fully usable but a header is added to the REST API response whenever the artifact version content is fetched.

11.3. Apicurio Registry group metadata

When a group is created in Apicurio Registry, a set of metadata properties is created and stored. This metadata consists of system-generated or user-generated properties that are read-only, and editable properties that you can update after the group is created.

Expand
Table 11.3. Apicurio Registry system-generated metadata
PropertyTypeDescription

owner

string

The name of the user who created the group.

createdOn

date

The date and time when the group was created, for example, 2023-10-11T14:15:28Z.

modifiedBy

string

The name of the user who modified the group.

modifiedOn

date

The date and time at which the group was modified, for example, 2023-10-11T14:15:28Z.

Expand
Table 11.4. Apicurio Registry user-provided or system-generated metadata
PropertyTypeDescription

groupId

string

Unique identifier of the artifact group in Apicurio Registry, for example, development or production.

Expand
Table 11.5. Apicurio Registry editable metadata
PropertyTypeDescription

description

string

Optional meaningful description of the group, for example, This is a simple group for testing.

labels

map

Optional list of user-defined name-value pairs associated with the group. The name and value must be strings, for example, my-key and my-value.

Updating group metadata

  • You can use the Apicurio Registry REST API or web console to update the set of editable metadata properties.
  • You can update the state property only by using the Apicurio Registry REST API.

11.4. Apicurio Registry artifact metadata

When an artifact is added to Apicurio Registry, a set of metadata properties is created and stored. This metadata consists of system-generated or user-generated properties that are read-only, and editable properties that you can update after the artifact is created.

Expand
Table 11.6. Apicurio Registry system-generated metadata
PropertyTypeDescription

createdOn

date

The date and time when the artifact was created, for example, 2023-10-11T14:15:28Z.

globalId

integer

Globally unique identifier of an artifact version in Apicurio Registry. For example, a global ID of 1 is assigned to the first artifact version created in Apicurio Registry.

modifiedBy

string

The name of the user who modified the artifact.

modifiedOn

date

The date and time at which the artifact was modified, for example, 2023-10-11T14:15:28Z.

Expand
Table 11.7. Apicurio Registry user-provided or system-generated metadata
PropertyTypeDescription

groupId

string

Unique identifier of an artifact group in Apicurio Registry, for example, development or production. When creating an artifact by using the Apicurio Registry web console, if you do not provide a group ID, this is set to default. You must provide a group ID when using the Apicurio Registry REST API, Java client, or Maven plug-in.

artifactId

string

Unique identifier of an artifact in Apicurio Registry. You can provide an artifact ID or use the UUID generated by Apicurio Registry, for example, 8d168cad-1865-4e6c-bb7e-04e8be005bea. Different versions of an artifact use the same artifact ID, but have different global IDs.

artifactType

ArtifactType

The supported artifact type, for example, AVRO, OPENAPI, or PROTOBUF.

Expand
Table 11.8. Apicurio Registry editable metadata
PropertyTypeDescription

name

string

Optional human-readable name of the artifact, for example, My first Avro schema.

description

string

Optional meaningful description of the artifact, for example, This is a simple OpenAPI for testing.

labels

map

Optional list of user-defined name-value pairs associated with the artifact. The name and value must be strings, for example, my-key and my-value.

owner

string

The name of the user who owns the artifact.

Updating artifact metadata

  • You can use the Apicurio Registry REST API or web console to update the set of editable metadata properties.

11.5. Apicurio Registry artifact version metadata

When an artifact version is added to a Apicurio Registry artifact, a set of metadata properties is created and stored along with the artifact version content. This metadata consists of system-generated or user-generated properties that are read-only, and editable properties that you can update after the artifact version is created.

Expand
Table 11.9. Apicurio Registry system-generated metadata
PropertyTypeDescription

owner

string

The name of the user who created the artifact version.

createdOn

date

The date and time when the artifact version was created, for example, 2023-10-11T14:15:28Z.

modifiedBy

string

The user who modified the artifact version.

modifiedOn

date

The date and time at which the artifact version was modified, for example, 2023-10-11T14:15:28Z.

contentId

integer

Unique identifier of artifact version content in Apicurio Registry. The same content ID can be shared by multiple artifact versions when artifact versions have identical content. For example, a content ID of 4 can be used by multiple artifact versions with the same content, even across multiple artifacts.

globalId

integer

Globally unique identifier of an artifact version in Apicurio Registry. For example, a global ID of 1 is assigned to the first artifact version created in Apicurio Registry.

Expand
Table 11.10. Apicurio Registry user-provided or system-generated metadata
PropertyTypeDescription

groupId

string

Unique identifier of an artifact group in Apicurio Registry, for example, development or production.

artifactId

string

Unique identifier of an artifact in Apicurio Registry.

version

integer

The version string of the artifact version. If not provided, the system will generate a new sequential version. You can provide a version when using the Apicurio Registry REST API, SDKs, or Maven plug-in, for example, 2.1.6.

Expand
Table 11.11. Apicurio Registry editable metadata
PropertyTypeDescription

name

string

Optional human-readable name of the artifact version, for example, Version One.

description

string

Optional meaningful description of the artifact version, for example, This is the first version for testing.

labels

map

Optional list of user-defined name-value pairs associated with the artifact version. The name and value must be strings, for example, my-key and my-value.

state

ArtifactState

The state of the artifact version: ENABLED, DISABLED, or DEPRECATED. Defaults to ENABLED.

Updating artifact version metadata

  • You can use the Apicurio Registry REST API or web console to update the set of editable metadata properties.
  • You can update the state property only by using the Apicurio Registry REST API.
Red Hat logoGithubredditYoutubeTwitter

자세한 정보

평가판, 구매 및 판매

커뮤니티

Red Hat 문서 정보

Red Hat을 사용하는 고객은 신뢰할 수 있는 콘텐츠가 포함된 제품과 서비스를 통해 혁신하고 목표를 달성할 수 있습니다. 최신 업데이트를 확인하세요.

보다 포괄적 수용을 위한 오픈 소스 용어 교체

Red Hat은 코드, 문서, 웹 속성에서 문제가 있는 언어를 교체하기 위해 최선을 다하고 있습니다. 자세한 내용은 다음을 참조하세요.Red Hat 블로그.

Red Hat 소개

Red Hat은 기업이 핵심 데이터 센터에서 네트워크 에지에 이르기까지 플랫폼과 환경 전반에서 더 쉽게 작업할 수 있도록 강화된 솔루션을 제공합니다.

Theme

© 2026 Red Hat
맨 위로 이동