Schema

data class Schema(val elementFormDefault: String? = null, val targetNamespace: String, val attributeFormDefault: String? = null, val imports: List<Import> = emptyList(), val annotation: Annotation? = null, val elements: List<Element>, val complexTypes: List<ComplexType>, val simpleType: List<SimpleType>, val include: Include? = null)(source)

Constructors

Link copied to clipboard
constructor(elementFormDefault: String? = null, targetNamespace: String, attributeFormDefault: String? = null, imports: List<Import> = emptyList(), annotation: Annotation? = null, elements: List<Element>, complexTypes: List<ComplexType>, simpleType: List<SimpleType>, include: Include? = null)

Properties

Link copied to clipboard
@XmlElement
@XmlSerialName(value = "annotation", namespace = "http://www.w3.org/2001/XMLSchema")
val annotation: Annotation?
Link copied to clipboard
Link copied to clipboard
@XmlElement
@XmlSerialName(value = "complexType", namespace = "http://www.w3.org/2001/XMLSchema")
val complexTypes: List<ComplexType>
Link copied to clipboard
Link copied to clipboard
@XmlElement
@XmlSerialName(value = "element", namespace = "http://www.w3.org/2001/XMLSchema")
val elements: List<Element>
Link copied to clipboard
@XmlElement
@XmlSerialName(value = "import", namespace = "http://www.w3.org/2001/XMLSchema")
val imports: List<Import>
Link copied to clipboard
@XmlElement
@XmlSerialName(value = "include", namespace = "http://www.w3.org/2001/XMLSchema")
val include: Include?
Link copied to clipboard
@XmlElement
@XmlSerialName(value = "simpleType", namespace = "http://www.w3.org/2001/XMLSchema")
val simpleType: List<SimpleType>
Link copied to clipboard