我需要更多的澄清的問題/答案貼在這裏, Custom attributes in an xsd-schemaXml架構與 「的xmlns」
有以下XSD,
<xsd:element name="Book">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Author" type="xsd:string" >
<xsd:annotation>
<xsd:appinfo>
<foo:listable value="true"/>
</xsd:appinfo>
</xsd:annotation>
</xsd:element>
<xsd:element name="Pages" type="xsd:int" />
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>
在此
,speciying以下url
xmlns:foo =「http://www.example.org/bar」
這個URL的內容是什麼以及如何創建它?