22 lines
471 B
YAML
22 lines
471 B
YAML
openapi: 3.0.3
|
|
info:
|
|
version: "1.0.0"
|
|
title: 'Parameters for example'
|
|
description: 'Defines all the parameters used in example API'
|
|
|
|
paths:
|
|
/fake_path_required_for_generation:
|
|
get:
|
|
responses:
|
|
'200':
|
|
description: OK
|
|
|
|
components:
|
|
parameters:
|
|
exampleId:
|
|
name: exampleId
|
|
description: the id of an example
|
|
in: path
|
|
required: true
|
|
schema:
|
|
$ref: "example-schemas.yaml#/components/schemas/Example" |