The OpenAPI Specification (OAS) defines a standard, language-agnostic interface to RESTful APIs which allows both humans and computers to discover and understand the capabilities of the service without access to source code, documentation, or through network traffic inspection.
When properly defined, a consumer can understand and interact with the remote service with a minimal amount of implementation logic.
openapi: # Specification version
info: # General API metadata
servers: # Server information. BaseURLs, environments, ...
paths: # Available paths & operations
components: # Datamodel abstraction
security: # Security mechanisms can be used across the API
tags: # Grouping of paths & components
external docs: # Additional external documentation
webhooks: # Webhook operations, similar to paths, only API is now a consumer.
openapi: # Specification version
info: # General API metadata
servers: # Server information. BaseURLs, environments, ...
paths: # Available paths & operations
components: # Datamodel abstraction
security: # Security mechanisms can be used across the API
tags: # Grouping of paths & components
external docs: # Additional external documentation
webhooks: # Webhook operations, similar to paths, only API is now a consumer.
paths:
/pets:
get:
summary: List all pets
#...
post:
summary: Create a pet
#...
/pets/{petId}:
get:
summary: Info for a specific pet
#...
paths:
/pets:
get:
summary: List all pets
operationId: listPets
tags:
- pets
parameters:
- name: limit
in: query
description: How many items to return at one time
required: false
schema:
type: integer
format: int32
# description
# requestBody
# security
# ...
responses:
#...
paths:
/pets:
get:
#...
responses:
'200':
description: Expected response to a valid request
content:
application/json:
schema:
$ref: "#/components/schemas/Pets"
default:
description: unexpected error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
components:
schemas:
Pet:
Pets:
responses:
ErrorResponse:
requestBodies:
NewPet:
headers:
Limit:
Offset:
Pagination:
components:
schemas:
Pet:
type: object
properties:
id:
type: integer
format: int64
name:
type: string
image:
type: string
tag:
type: string
required:
- id
- name
Pets:
type: array
items:
$ref: "#/components/schemas/Pet"
OpenAPI document = single source of truth
Entire team can be involved in developing the communication layer.
Tools:
openapi.tools | List of OpenAPI code generators |
openapi-generator.tech | Java-based generator for dozens of programming languages (Docker image available) |
openapi-typescript-codegen | TypeScript-based generator |
Prism (by Stoplight) turns OpenAPI files into a API server.
# https://petstore.com/openapi.yaml
paths:
/pets:
get:
operationId: listPets
responses:
"200":
content:
application/json:
schema:
type: array
items:
type: object
properties:
id:
type: integer
format: int64
name:
type: string
tag:
type: string
# https://petstore.com/openapi.yaml
paths:
/pets:
get:
operationId: listPets
responses:
"200":
content:
application/json:
schema:
type: array
items:
type: object
properties:
id:
type: integer
format: int64
name:
type: string
tag:
type: string
# Start Prism
prism mock -d https://petstore.com/openapi.yaml
# OR run Prism in Docker
# docker run --init -p 4010:4010 stoplight/prism:4 mock -d -h 0.0.0.0 https://petstore.com/openapi.yaml
[0:00:00 PM] › [CLI] … awaiting Starting Prism…
[0:00:00 PM] › [CLI] ℹ info GET http://127.0.0.1:4010/pets
[0:00:00 PM] › [CLI] ℹ info POST http://127.0.0.1:4010/pets
[0:00:00 PM] › [CLI] ℹ info GET http://127.0.0.1:4010/pets/lorem
[0:00:00 PM] › [CLI] ▶ start Prism is listening on http://127.0.0.1:4010
# Perform request
curl https://localhost:4010/pets | json_pp
[
{
"id": 7094252654184530000,
"name": "proident consequat anim est elit",
"tag": "eiu"
},
{
"id": 2067454767236280300,
"name": "nostrud cupidatat nisi f",
"tag": "sed eiusmod"
},
{
"id": 5983151522463482000,
"name": "dolore id minim magna",
"tag": "aute consectetur do"
}
]