Last active
September 1, 2023 10:32
-
-
Save ponelat/af8591f3a6489d3371bef06675b6e744 to your computer and use it in GitHub Desktop.
PathItems
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openapi: 3.1.0 | |
info: | |
title: Example specification | |
version: "1.0" | |
servers: | |
- url: http://localhost:8080/ | |
paths: | |
/foo: | |
$ref: "#/components/pathItems/StandardStatus" | |
/bar: | |
$ref: "#/components/pathItems/StandardStatus" | |
components: | |
pathItems: | |
StandardStatus: | |
get: | |
parameters: | |
- name: extended | |
in: query | |
schema: | |
type: boolean | |
responses: | |
200: | |
description: OK |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openapi: 3.1.0 | |
info: | |
title: Example specification | |
version: "1.0" | |
servers: | |
- url: http://localhost:8080/ | |
paths: | |
/foo: | |
$ref: "#/components/pathItems/StandardStatus" | |
/bar: | |
$ref: "#/components/pathItems/StandardStatus" | |
components: | |
pathItems: | |
StandardStatus: | |
get: | |
parameters: | |
- name: extended | |
in: query | |
schema: | |
type: boolean | |
responses: | |
200: | |
description: OK |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment