mirror of
https://github.com/LukeHagar/redocly-cli.git
synced 2025-12-06 04:21:09 +00:00
29 lines
744 B
YAML
29 lines
744 B
YAML
openapi: 3.1.0
|
|
security: []
|
|
info:
|
|
version: 1.0.0
|
|
title: Example.com
|
|
termsOfService: https://example.com/terms/
|
|
contact:
|
|
email: contact@example.com
|
|
url: http://example.com/contact
|
|
license:
|
|
name: Apache 2.0
|
|
url: http://www.apache.org/licenses/LICENSE-2.0.html
|
|
description: OpenAPI description with external example
|
|
components: {}
|
|
|
|
paths:
|
|
/:
|
|
post:
|
|
summary: Test request externalValue with relative reference in examples
|
|
requestBody:
|
|
content:
|
|
application/xml:
|
|
schema:
|
|
type: object
|
|
examples:
|
|
test-wrong-ref:
|
|
summary: Example shouldn't resolved to value
|
|
externalValue: './external-value-bad-path.json'
|