-
Notifications
You must be signed in to change notification settings - Fork 24
Open
Labels
featureFeature requestFeature request
Description
I think a schema which redefines an existing schema using xs:redefine is currently not supported.
A simple sample schema might look something like this:
<xs:schema
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="foo"
targetNamespace="foo"
elementFormDefault="qualified"
attributeFormDefault="unqualified"
>
<xs:redefine schemaLocation="initial_schema.xsd">
<xs:simpleType name="bar">
<xs:restriction base="bar">
<xs:enumeration value="80">
<xs:annotation>
<xs:documentation>…</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
…
</xs:redefine>
</xs:schema>Would there be interest in supporting this (and if so are outside PRs welcome for features like this)?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
featureFeature requestFeature request
Projects
Status
In Progress