Couldn’t find my question answered, so asking here.
say I have the following in my raml:
types:
StoryboardType: !include types/storyboard.raml
ChapterType: !include types/chapter.raml
with types/storyboard.raml being
#%RAML 1.0 ObjectTypeDeclaration
type: object
properties:
...
chapters:
type: ChapterType[]
required: false
...
How would I correctly reference “ChapterType” in the storyboard.raml to avoid Api-Workbench highlighting it as an unresolved resource inside storyboard.raml?
Thanks in advance.