Namespace in RAML file
问题 I'm facing some problems trying to create a RAML unsing Library to define the types for a XML. Looks like is propagating the prefix to all the atributes. the library is like this: #%RAML 1.0 Library types: book: type: object properties: id: type: integer title: type: string author: type: string xml: prefix: 'smp' namespace: 'http://example.com/schema' name: 'book' The RAML is this: #%RAML 1.0 title: book test uses: myLib: /libraries/types.raml /book: description: book post: body: application