Schema Registry - CI/CD Glossary Definition
A schema registry centrally stores versioned API and message schemas so producers and consumers stay compatible.
A schema registry is a central store of API or message schemas and their versions, letting producers and consumers agree on shapes. CI checks new schemas against the registry for compatibility before publishing.
Registries are common with event systems like Kafka but also apply to GraphQL and REST. A pipeline step registers a candidate schema and rejects it if it breaks compatibility rules.
Related guides
Schema Validation - CI/CD Glossary DefinitionSchema Validation: Schema validation checks that a payload conforms to a defined schema: correct types, requi…
Backward Compatibility - CI/CD Glossary DefinitionBackward Compatibility: Backward compatibility means a newer version of an API still works with clients built…
GraphQL Schema - CI/CD Glossary DefinitionGraphQL Schema: A GraphQL schema defines the types, queries, mutations, and subscriptions a GraphQL API expos…