1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-30 22:08:02 +00:00
_/ts-openapi/spec.yml
2020-10-08 10:39:34 +09:00

21 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$