我尝试使用lxml.etree
来重现CDA QuickStart Guide found here中找到的CDA示例。
特别是,我遇到了尝试重新创建此元素的命名空间问题。
<ClinicalDocument xmlns="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:hl7-org:v3 CDA.xsd">
我使用的代码如下
root = etree.Element('ClinicalDocument',
nsmap={None: 'urn:hl7-org:v3',
'mif': 'urn:hl7-org:v3/mif',
'xsi': 'http://www.w3.org/2001/XMLSchema-instance',
'{http://www.w3.org/2001/XMLSchema-instance}schemaLocation': 'urn:hl7-org:v3 CDA.xsd'})
问题在于schemaLocation
中的nsmap
条目。 lxml
似乎正在尝试验证该值并提供错误
ValueError: Invalid namespace URI u'urn:hl7-org:v3 CDA.xsd'
我是否错误地指定了schemaLocation
值?有没有办法强制lxml
接受任何字符串值?或者示例中的值是否只是一个占位符,我应该用其他东西替换它?
答案 0 :(得分:7)
nsmap
是前缀到名称空间URI的映射。 urn:hl7-org:v3 CDA.xsd
是xsi:schemaLocation
属性的有效值,但它不是有效的命名空间URI。
类似问题的解决方案How to include the namespaces into a xml file using lxmf?也适用于此。使用QName
创建xsi:schemaLocation
属性。
from lxml import etree
attr_qname = etree.QName("http://www.w3.org/2001/XMLSchema-instance", "schemaLocation")
root = etree.Element('ClinicalDocument',
{attr_qname: 'urn:hl7-org:v3 CDA.xsd'},
nsmap={None: 'urn:hl7-org:v3',
'mif': 'urn:hl7-org:v3/mif',
'xsi': 'http://www.w3.org/2001/XMLSchema-instance',
})