If I use @XmlElementon a Filed, it will only work if Field name is same as provided in XmlElement e.g ``` sh @XmlRootElement(name = "Pet") public class Pet { @XmlElement(name = "name") public String name; } ``` But if field name is different from the one provided in XmlElement field will not appear in api docs ``` sh @XmlRootElement(name = "Pet") public class Pet { @XmlElement(name = "pet_name") public String name; } ```