mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-24 11:09:54 +00:00
a0305fb97d
The specification: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.1.md#oasObject requires that if the 'servers' array is not provided or empty, its default value is an array of a single Server Object with 'url' of '/'.
10 lines
192 B
YAML
10 lines
192 B
YAML
openapi: "3.0.0"
|
|
info:
|
|
title: Minimal valid OpenAPI specification
|
|
version: "0.1"
|
|
paths:
|
|
/status:
|
|
get:
|
|
responses:
|
|
default:
|
|
description: Return the API status.
|