mirror of
https://github.com/correl/openapi-core.git
synced 2025-01-01 11:03:19 +00:00
26 lines
543 B
YAML
26 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
|