mirror of
https://github.com/correl/openapi-core.git
synced 2025-01-04 03:00:15 +00:00
27 lines
543 B
YAML
27 lines
543 B
YAML
|
openapi: '3.0.0'
|
||
|
info:
|
||
|
version: '0.0.1'
|
||
|
title: Test Service
|
||
|
paths:
|
||
|
'/test/{pk}':
|
||
|
get:
|
||
|
responses:
|
||
|
'200':
|
||
|
description: Default
|
||
|
content:
|
||
|
application/json:
|
||
|
schema:
|
||
|
type: object
|
||
|
properties:
|
||
|
test:
|
||
|
type: string
|
||
|
required:
|
||
|
- test
|
||
|
parameters:
|
||
|
- required: true
|
||
|
in: path
|
||
|
name: pk
|
||
|
schema:
|
||
|
type: integer
|
||
|
minimum: 1
|