mirror of
https://github.com/LukeHagar/libopenapi.git
synced 2025-12-06 04:20:11 +00:00
21 lines
527 B
YAML
21 lines
527 B
YAML
openapi: 3.1.0
|
|
info:
|
|
title: Dir2 Test Components
|
|
version: 1.0.0
|
|
components:
|
|
schemas:
|
|
GlobalComponent:
|
|
type: object
|
|
description: Dir2 Global Component
|
|
properties:
|
|
message:
|
|
type: string
|
|
description: I am pointless, but I am global dir2.
|
|
AnotherComponent:
|
|
type: object
|
|
description: Dir2 Another Component
|
|
properties:
|
|
message:
|
|
$ref: "subdir2/shared.yaml#/components/schemas/SharedComponent"
|
|
SomeUtil:
|
|
$ref: "utils/utils.yaml" |