OpenAPI overview

API Gateway supports APIs that are described using supported versions of the OpenAPI specification.

Your API can be implemented using any publicly available REST framework such as Django or Jersey.

You describe your API in a YAML file referred to as an OpenAPI document. This page describes some of the benefits to using OpenAPI, shows a basic OpenAPI document, and provides additional information to help you get started with OpenAPI.

Supported OpenAPI Versions

API Gateway supports the following OpenAPI versions:

  1. OpenAPI 2.0 (formerly Swagger)
  2. OpenAPI 3.0.x

Official specifications for each version are available from the OpenAPI Initiative.

Patch Version Support

The OpenAPI Specification indicates that patch versions (e.g., 3.0.1, 3.0.2) only introduce fixes or clarifications and don't add new features. As a result, API Gateway supports all patch versions of 3.0.

Terminology

Throughout the API Gateway documentation, OpenAPI 3.x refers to all OpenAPI 3 supported versions, as described in Supported OpenAPI versions.

Benefits

One of the primary benefits to using OpenAPI is for documentation; once you have an OpenAPI document that describes your API, you can generate reference documentation for your API.

There are other benefits to using OpenAPI. For example, you can:

  • Generate client libraries in dozens of languages
  • Generate server stubs
  • Use projects to verify your conformance and to generate samples

Basic structure of an OpenAPI document

An OpenAPI document describes the surface of your REST API, and defines information such as:

  • The name and description of the API
  • The individual endpoints (paths) in the API
  • How the callers are authenticated

The structure of your OpenAPI document depends upon the OpenAPI version you use. The following examples describe the structure of OpenAPI 2.0 and OpenAPI 3.x.

OpenAPI 2.0

If you are new to OpenAPI, take a look at the Swagger basic structure, which provides a sample OpenAPI document (also referred to as a Swagger specification) and briefly explains each section of the file. The following example illustrates this basic structure:

swagger: "2.0"
info:
  title: API_ID optional-string
  description: "Get the name of an airport from its three-letter IATA code."
  version: "1.0.0"
host: DNS_NAME_OF_DEPLOYED_API
schemes:
  - "https"
paths:
  "/airportName":
    get:
      description: "Get the airport name for a given IATA code."
      operationId: "airportName"
      parameters:
        -
          name: iataCode
          in: query
          required: true
          type: string
      responses:
        200:
          description: "Success."
          schema:
            type: string
        400:
          description: "The IATA code is invalid or missing."

OpenAPI 3.x

If you are new to OpenAPI, take a look at the Swagger basic structure which provides a sample OpenAPI document and explains each section of the file. The following example illustrates this basic structure:

openapi: 3.0.4
info:
  title: API_ID optional-string
  description: Get the name of an airport from its three-letter IATA code
  version: 1.0.0
x-google-api-management:
  backend:
    BACKEND_NAME
      address: https://BACKEND_URL/airportNameGET
      pathTranslation: APPEND_PATH_TO_ADDRESS
      protocol: "http/1.1"
x-google-backend: BACKEND_NAME
paths:
  /airportName:
    get:
      summary: Get the airport name for a given IATA code
      operationId: airportName
      responses:
        '200':
          description: A successful response
          content:
            application/json:
              schema:
                type: string
      parameters:
        - name: iataCode
          in: query
          required: true
          schema:
            type: string

In addition to the basic structure, use the openapi.yaml file to configure:

Generate an OpenAPI document

Depending on what language you are using, you might be able to generate an OpenAPI document. In Java, there are open source projects for both Jersey and Spring that can generate an OpenAPI document from annotations. There is also a Maven plugin. For Python and Node developers, OpenAPI.Tools might be an interesting project.

The OpenAPI community is continually developing tools to help in the composition (and, for some languages, automatic generation) of OpenAPI documents. See the The OpenAPI Specification for more.

What's next