API Schema - CI/CD Glossary Definition
An API schema is a machine-readable description of an API's shapes and operations, used to validate traffic in tests.
An API schema is a formal, machine-readable description of an API's data structures and operations, such as an OpenAPI or GraphQL document. CI pipelines validate requests and responses against it to catch drift.
A schema is the source of truth a pipeline checks against. Linting it, diffing it, and validating live responses against it are all steps you can automate in CI.
Related guides
API Contract - CI/CD Glossary DefinitionAPI Contract: An API contract is the agreed specification of how a client and server communicate: the endpoin…
Schema Validation - CI/CD Glossary DefinitionSchema Validation: Schema validation checks that a payload conforms to a defined schema: correct types, requi…
OpenAPI - CI/CD Glossary DefinitionOpenAPI: OpenAPI is a standard, language-agnostic specification format for describing HTTP APIs, formerly cal…