mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-24 11:09:54 +00:00
17 lines
386 B
YAML
17 lines
386 B
YAML
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.
|