Embedding xsd schemas #543
andrew-hardin
started this conversation in
Ideas
Replies: 1 comment 3 replies
-
Yes, the schema-path machinery is a bit complicated; I like the idea of embedding a schema! But this probably needs to get run through "the process" (although I'm not sure exactly what that might be) as an enhancement. This probably isn't possible in a standard way unless/until |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
There's a fair amount of brittle book keeping required to track the location of schemas and resolve them at run-time. An alternative approach involves embedding the schemas into the source (e.g.
xxd -i schema.xsd
), then at run-time passing those buffers to the xml validator.Is that a feature that may be valuable to the broader community?
If so, is it a feature that replaces the existing schema path machinery, or, does that path based machinery enable a valuable use case that I'm ignorant to?If so, it probably makes sense to maintain the existing schema paths for backwards compatibility.Beta Was this translation helpful? Give feedback.
All reactions