I don't know if you can specifically exclude a value. I'm not sure if this helps, but you can create two separate enumerations and then create the union of the enumerations.
<xsd:simpleType name="IncludedEnumType">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="pending" />
<xsd:enumeration value="in_process" />
<xsd:enumeration value="failed" />
<xsd:enumeration value="unknown" />
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="ExcludedEnumType">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="data_migration" />
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="CombinedEnumType">
<xsd:union memberTypes="IncludedEnumType ExcludedEnumType" />
</xsd:simpleType>
You would use either IncludedEnumType
or CombinedEnumType
as necessary. Using the IncludedEnumType
would obviously excluded the values in ExcludedEnumType
.
This approach uses Solution 2 from this article by IBM.