When using !include statements for better RAML modularisation, e.g.
#main.raml
types:
Response: !include types/myResponse.raml
#types/myResponse.raml
#%RAML 1.0 DataType
properties:
// ...
Then the generated specification will contain an extra property includePath in the types that does not belong to OpenAPI 3.0 specification:
{ // ...
"Response": {
"includePath": "types/myResponse.raml", // ...
}
}
When using !include statements for better RAML modularisation, e.g.
Then the generated specification will contain an extra property
includePathin the types that does not belong to OpenAPI 3.0 specification:{ // ... "Response": { "includePath": "types/myResponse.raml", // ... } }