Skip to content

addNamespaceDeclarations

addNamespaceDeclarations(xml, namespaces) → xml · XML

Add namespace declarations to an XML element.

  • xml (required): XML UDM value

  • namespaces (required): object mapping prefix to URI — {"cbc": "urn:...", "cac": "urn:..."}

utlx
// See Chapter 22 for XML namespace handling.
{
  result: addNamespaceDeclarations($input, {
    "cbc": "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2",
    "cac": "urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2"
  })
}

Released under AGPL-3.0.