Skip to content

XMLSchema

do- edited this page Dec 28, 2021 · 7 revisions

XMLSchema is a class representing a set of XML Schema objects belonging to a single target namespace.

Unlike XMLSchemata, it's an internal class not intended for direct use in application code.

Basically, it'a Map of names to plain objects representing simple/complex types and so on.

{
  name: 'BaseRequestType',
  sequence: { element: [ [Object], [Object] ] },
  attribute: { name: 'Id', type: 'xs:ID' },
  _type: 'complexType'
}

Clone this wiki locally