Back to Course

OpenAPI Specification

You can find this data in Wikipedia

The OpenAPI Specification, previously known as the Swagger Specification, is a specification for a machine-readable interface definition language for describing, producing, consuming and visualizing web services. Originally developed to support the Swagger framework, it became a separate project in 2015, overseen by the OpenAPI Initiative, an open-source collaboration project of the Linux Foundation.

An OpenAPI Description (OAD) represents a formal description of an API that tools can use to generate code, documentation, test cases, and more.

History

Swagger development began in early 2010 by Tony Tam, who was working at online dictionary company Wordnik.

In March 2015, SmartBear Software acquired the open-source Swagger API specification from Reverb Technologies, Wordnik's parent company.

In November 2015, SmartBear announced that it was donating the Swagger specification to a new organization called the OpenAPI Initiative, under the sponsorship of the Linux Foundation. Other founding member companies included 3scale, Apigee, Capital One, Google, IBM, Intuit, Microsoft, PayPal, and Restlet.

On 1 January 2016, the Swagger specification was renamed the OpenAPI Specification (OAS) and was moved to a new GitHub repository.

In July 2017, the OpenAPI Initiative released version 3.0.0 of its specification.

In February 2021, the OpenAPI Initiative released version 3.1.0. Major changes in OpenAPI Specification 3.1.0 include JSON schema vocabularies alignment, new top-level elements for describing webhooks that are registered and managed out of band, support for identifying API licenses using the standard SPDX identifier, allowance of descriptions alongside the use of schema references and a change to make the PathItems object optional to simplify creation of reusable libraries of components.

Consolidation of Formats

Two somewhat similar technologies, MuleSoft's RESTful API Modeling Language (RAML) and Apiary's API Blueprint, had been developed around the same time as what was then still called the Swagger Specification.

The producers of both formats later joined the OpenAPI Initiative: Apiary in 2016 and MuleSoft in 2017. Both have added support for the OAS.

Release dates

Usage

The OAS describes the format for OpenAPI Descriptions (OADs), which can be used by a variety of applications, libraries, and tools.

Applications can use OADs to automatically generate documentation of methods, parameters and data models. This helps keep the documentation, client libraries and source code in sync.

When an OAD is used to generate source code stubs for servers, the process is called scaffolding.

Relationships to software engineering practices

The paradigm of agreeing on an API contract first and then programming business logic afterwards, in contrast to coding the program first and then writing a retrospective description of its behavior as the contract, is called contract-first development. Since the interface is determined before any code is written, downstream developers can mock the server behavior and start testing right away. In this sense, contract-first development is also a practice of shift-left testing.

Features

The OpenAPI Specification is language-agnostic. With OpenAPI's declarative resource specification, clients can understand and consume services without knowledge of server implementation or access to the server code.

Tools that work with OpenAPI

The OpenAPI Initiative maintains a list of implementations for version 3.0 of the specification.

Annual conference

The OpenAPI Initiative sponsors an annual API Specifications Conference (ASC). The event has its origins in the API Strategy and Practice Conference (APIStrat) that ran for many years and became part of the OpenAPI Initiative in 2016.

See also

  • Representational state transfer
  • gRPC
  • Data modelling

References

Bibliography

External links

  • OpenAPI Initiative (OAI) website
  • API Specifications Conference (ASC) website
  • OpenAPI Specification on GitHub
  • Directory of OpenAPI Descriptions
  • Example OpenAPI Descriptions on the OAI's official Learn OpenAPIs site

API Programming: From Fundamentals to Real-World Implementations

A comprehensive course that explores how APIs work, covering essential protocols, data formats, security measures, and modern implementation strategies.

overview of API Programming: From Fundamentals to Real-World Implementations
API Fundamentals
Communication Protocols
  • REST Representational State Transfer
  • SOAP Simple Object Access Protocol
  • HTTP Hypertext Transfer Protocol
  • RPC Remote Procedure Call
Data Formats
  • JSON JavaScript Object Notation
  • XML eXtensible Markup Language
Advanced API Architectures & Specifications
API Security
Real-World API Implementations