1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 06:18:07 +00:00
_/ts-openapi/spec.yml

22 lines
380 B
YAML
Raw Permalink Normal View History

2020-10-08 10:39:34 +09:00
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$