-
Notifications
You must be signed in to change notification settings - Fork 278
Closed
Labels
Milestone
Description
Hello,
I have my OpenAPI specification in separate files. I use references to load data. When I try to do so, I get an exception.
{"Unable to cast object of type 'SharpYaml.Serialization.YamlScalarNode' to type 'SharpYaml.Serialization.YamlMappingNode'."}
My openapi looks
`openapi: 3.0.3
info:
title: 'Test'
version: '1.0.0'
components:
schemas:
$ref: './AllSchemas.yml'
paths:
/api/orders:
$ref: './orders.yml'`
Can you please help me? Thank you
thgla