Skip to content
XML

Namespaces

Declare and use XML namespaces.

#namespace#xmlns

Code

xml
<?xml version="1.0" encoding="UTF-8"?>
<root xmlns="http://example.com/default"
      xmlns:xs="http://www.w3.org/2001/XMLSchema"
      xmlns:office="urn:office:1.0">
  <office:item>Stapler</office:item>
  <xs:schema ref="schema.xsd"/>
  <element>Default namespace applies here</element>
</root>