What is wrong with this XML Schema Prolog?
<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns-"http://www.w3.org/2001/XMLSchema">
Related posts:
<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns-"http://www.w3.org/2001/XMLSchema">
Related posts:
I typically give my namespace a name e.g. xsd
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
this allows me to have particular elements in that namespace
i.e. <xsd:element name="first_name">texttexttext</xsd:element>