OpenAPI Extensions
Extensions (also referred to as specification extensions or vendor extensions) are custom properties that start with x-
, such as x-logo
. They can be used to describe extra functionality that is not covered by the standard OpenAPI Specification. Many API-related products that support OpenAPI make use of extensions to document their own attributes, such as Amazon API Gateway, ReDoc, APIMatic and others. Extensions are supported on the root level of the API spec and in the following places:
info
sectionpaths
section, individual paths and operations- operation parameters
responses
tags
- security schemes
The extension value can be a primitive, an array, an object or null
. If the value is an object or array of objects, the object’s property names do not need to start with x-
.
Example
An API that uses Amazon API Gateway custom authorizer might include extensions similar to this:
Did not find what you were looking for? Ask the community
Found a mistake? Let us know