openapi-core/tests/integration/contrib/django/data/openapi.yaml
2021-05-02 19:34:49 +01:00

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