mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 06:18:07 +00:00
22 lines
380 B
YAML
22 lines
380 B
YAML
|
openapi: 3.0.3
|
||
|
info:
|
||
|
title: ts-openapi
|
||
|
version: 1.0.0
|
||
|
servers:
|
||
|
- url: http://localhost:3000/api
|
||
|
paths:
|
||
|
/hello:
|
||
|
get:
|
||
|
responses:
|
||
|
"200":
|
||
|
description: "OK"
|
||
|
content:
|
||
|
text/plain:
|
||
|
schema:
|
||
|
$ref: "#/components/schemas/hello"
|
||
|
components:
|
||
|
schemas:
|
||
|
hello:
|
||
|
type: string
|
||
|
pattern: ^hello$
|