Здравствуйте, я создаю документацию по swagger для API, и я хотел бы добавить пример xml, но я не могу этого сделать.
Это документация по swagger, которую я написал
swagger: "2.0"
info:
title: Documentatie API
description: Descriere documentatie API metode POST
version: 1.0.0
host: xxx.ro
basePath: /v1
schemes:
- https
paths:
/stareMesaj:
post:
summary: Stare mesaj
description: Descriere stare mesaj
consumes:
- application/xml
produces:
- application/xml
responses:
200:
description: OK
schema:
type: object
properties:
id:
type: integer
example: 4
name:
type: string
example: Arthur Dent
Я думал, что свойства в схеме преобразуются в примере, но он говорит:
<?xml version="1.0" encoding="UTF-8"?>
<!-- XML example cannot be generated; root element name is undefined -->
Можете ли вы привести пример?
Заранее спасибо