We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There are three cases, when an array type of RAML union is displayed incorrectly:
Array of:
StringArray
#%RAML 1.0 title: Test API types: StringArray: type: string[] UnionArray: type: StringArray | string
items
#%RAML 1.0 title: Test API types: StringArray: type: array items: string UnionArray: type: StringArray | string
ArrayType
#%RAML 1.0 title: Test API types: ArrayType: type: array items: type: object properties: test: string UnionArray: type: ArrayType | string
Apparently, this.hasParentType check is missing for them for some reason. I might look into it.
this.hasParentType
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There are three cases, when an array type of RAML union is displayed incorrectly:
Array of:
containing just a string type (see howStringArray
is displayed), but just string type is displayed.items
like it's an object property.Array of:
listing object properties (see howArrayType
is displayed), but displays just object properties like it's an object.Apparently,
this.hasParentType
check is missing for them for some reason. I might look into it.The text was updated successfully, but these errors were encountered: