xsd:为元素定义两个可能的属性语法?

问题描述 投票:0回答:1

我需要接受一个元素的2个属性语法:

<fsinfo  line="70" comment="# a comment" />
<fsinfo  line="80" real_dev="/dev/sda2" mount_dev="LABEL=root" mp="/"  fs="ext4" options="defaults" dump="1" pass="1" />

我创建了一个能够验证80行的xsd:

<xsd:element name="fsinfo">
    <xsd:complexType>
        <xsd:attribute name="line"/>
        <xsd:attribute name="real_dev" use="required"/>
        <xsd:attribute name="mount_dev"/>
        <xsd:attribute name="mp" use="required"/>
        <xsd:attribute name="fs" use="required"/>
        <xsd:attribute name="mkfs_opts"/>
        <xsd:attribute name="options" default="defaults"/>
        <xsd:attribute name="dump" use="required"/>
        <xsd:attribute name="pass" use="required"/>
        <xsd:attribute name="format"/>
        <xsd:attribute name="comment"/>
    </xsd:complexType>
</xsd:element>

要验证第70行,我可以这样做:

<xsd:element name="fsinfo">
    <xsd:complexType>
        <xsd:attribute name="line"/>
        <xsd:attribute name="comment"/>
    </xsd:complexType>
</xsd:element>

1 /如何合并两种语法,以便我可以验证第70和80行?

2 /如何避免空fsinfo标记?

3 /“fsinfo”属性可以是任何顺序

重要的是,如果存在多于“line”和“comment”属性(例如“mount_dev”,则必须存在所有相关的必需参数。(第80行验证方案)

注意:我无法更改我的xml文件,因为我必须保持与旧软件的兼容性(我正在添加验证以使其更加强大)。

注2:用于验证的工具:xmlstarlet --err --xsd myxsdfile.xsd myxmlfile.xml

xsd xsd-validation complextype
1个回答
1
投票

不幸的是,如果你可以使用xsd 1.1,我没有任何信息。使用断言有很大的可能性,可以帮助你管理它。

我无法观察您的完整xml示例以及xsd,但我可以创建一个示例xsd如何使用断言。

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:vc="http://www.w3.org/2007/XMLSchema-versioning" elementFormDefault="qualified" vc:minVersion="1.1">
    <xs:element name="root" type="root"/>
    <xs:complexType name="root">
        <xs:sequence>
            <xs:element name="fsinfo">
                <xs:complexType>
                    <xs:attribute name="line"/>
                    <xs:attribute name="real_dev"/>
                    <xs:attribute name="mount_dev"/>
                    <xs:attribute name="mp"/>
                    <xs:attribute name="fs"/>
                    <xs:attribute name="mkfs_opts"/>
                    <xs:attribute name="options"/>
                    <xs:attribute name="dump"/>
                    <xs:attribute name="pass"/>
                    <xs:attribute name="format"/>
                    <xs:attribute name="comment"/>
                    <xs:assert test="(@line and @comment and not(@real_dev) and not(@mount_dev) and not(@mp) and not(@fs) and not(@mkfs_opts) and not(@dump) and not(@pass) and not(@options) and not(@format)) or ((@line and @real_dev and @mp and @fs and @dump and @pass) and ( @mount_dev or @mkfs_opts or @options or @format or @comment))"/>
                </xs:complexType>
            </xs:element>
        </xs:sequence>
    </xs:complexType>
</xs:schema>
© www.soinside.com 2019 - 2024. All rights reserved.