openapi-core/tests/integration/data/v3.0/path_param.yaml

18 lines
386 B
YAML
Raw Permalink Normal View History

2019-03-08 09:19:09 +00:00
openapi: "3.0.0"
info:
title: Minimal OpenAPI specification with path parameters
version: "0.1"
paths:
/resource/{resId}:
parameters:
- name: resId
in: path
required: true
description: the ID of the resource to retrieve
schema:
type: string
get:
responses:
default:
description: Return the resource.