mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-24 19:19:56 +00:00
48 lines
1.1 KiB
YAML
48 lines
1.1 KiB
YAML
openapi: "3.0.0"
|
|
info:
|
|
title: Minimal valid OpenAPI specification
|
|
version: "0.1"
|
|
paths:
|
|
/linked/noParam:
|
|
get:
|
|
operationId: noParOp
|
|
responses:
|
|
default:
|
|
description: the linked result
|
|
/linked/withParam:
|
|
get:
|
|
operationId: paramOp
|
|
parameters:
|
|
- name: opParam
|
|
in: query
|
|
description: test
|
|
schema:
|
|
type: string
|
|
responses:
|
|
default:
|
|
description: the linked result
|
|
/status:
|
|
get:
|
|
responses:
|
|
default:
|
|
description: Return something
|
|
links:
|
|
noParamLink:
|
|
operationId: noParOp
|
|
/status/{resourceId}:
|
|
get:
|
|
parameters:
|
|
- name: resourceId
|
|
in: path
|
|
required: true
|
|
schema:
|
|
type: string
|
|
responses:
|
|
default:
|
|
description: Return something else
|
|
links:
|
|
paramLink:
|
|
operationId: paramOp
|
|
parameters:
|
|
opParam: $request.path.resourceId
|
|
requestBody: test
|