WTOccasional Visitor3 years agoSwagger xml attribute representationSwagger lacks representing xml with attributes properly. I think the problem is OpenApi only considered key/value pair each element just like JSON. Is there any plan to fix it. Example of xml <...Show More
ponelatStaff3 years agoHi WT XML is supported by OpenAPI, take a look at https://swagger.io/docs/specification/data-models/representing-xml/. Here is your example written down... openapi: 3.0.3 info: title: XML Example description: XML Example version: "0.1" paths: /foo: post: requestBody: content: application/xml: schema: $ref: '#/components/schemas/Message' responses: '201': description: Created content: application/xml: schema: $ref: '#/components/schemas/Message' components: schemas: Message: type: object xml: name: MESSAGE properties: att1: type: string example: Name xml: attribute: true att2: type: string example: DOB xml: attribute: true
Related ContentDefining conditional attributes in OpenAPInesting in XML representationRepresentation of REST Mocks in WebUIMissing XML representation of response.error: Attribute paths is repeated
Recent DiscussionsBootstrapped servlet returns empty JSON as of 2.2.24Python 3.6 client supportI want to add variable in swagger like postmanEndpoint ExpansionMixed-Type Arrays with java swagger-annotations 2.0.3.