mirror of
https://github.com/LukeHagar/redocly-cli.git
synced 2025-12-06 12:47:48 +00:00
24 lines
470 B
YAML
24 lines
470 B
YAML
openapi: 3.1.0
|
|
info:
|
|
title: Example OpenAPI 3 definition. Valid.
|
|
version: 1.0
|
|
servers:
|
|
- url: https://redocly-example.com/user/{id}/place/{placeId}
|
|
variables:
|
|
id:
|
|
enum: []
|
|
placeId:
|
|
enum: [b]
|
|
default: a
|
|
- url: https://redocly-example.com/{var}
|
|
variables: {}
|
|
|
|
paths:
|
|
'/ping':
|
|
get:
|
|
summary: example summary
|
|
operationId: getPing
|
|
responses:
|
|
'200':
|
|
description: example description
|